├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── Makefile ├── README.md ├── UNLICENSE ├── develop └── index.js ├── index.js ├── jest.config.js ├── package.json ├── src ├── index.js └── visitor.js ├── test ├── control.test.js ├── fixture │ ├── assets.yml │ ├── atrule │ │ ├── expected.css │ │ └── input.css │ ├── block │ │ ├── expected.css │ │ └── input.css │ ├── breakpoints.yml │ ├── config.yml │ ├── control │ │ ├── expected.css │ │ └── input.css │ ├── dummy.yml │ ├── fail.yml │ ├── fonts.yml │ ├── object-custom │ │ ├── expected.css │ │ └── input.css │ ├── object-short │ │ ├── expected.css │ │ └── input.css │ ├── object │ │ ├── expected.css │ │ └── input.css │ ├── recursive.yml │ ├── recursive │ │ ├── expected.css │ │ └── input.css │ ├── shortcut │ │ ├── expected.css │ │ └── input.css │ └── value │ │ ├── expected.css │ │ └── input.css └── map.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "env", 5 | { 6 | "targets": { 7 | "node": 6 8 | } 9 | } 10 | ] 11 | ], 12 | "plugins": ["transform-object-rest-spread"] 13 | } 14 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # editorconfig.org 4 | 5 | root = true 6 | 7 | [*] 8 | indent_style = space 9 | indent_size = 2 10 | end_of_line = lf 11 | charset = utf-8 12 | trim_trailing_whitespace = true 13 | insert_final_newline = true 14 | 15 | [*.md] 16 | trim_trailing_whitespace = false 17 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | --- 2 | parser: "babel-eslint" 3 | extends: "standard" 4 | root: true 5 | env: 6 | jest: true 7 | 8 | rules: 9 | semi: [2, "always"] 10 | comma-dangle: [2, "always-multiline"] 11 | space-before-function-paren: [2, { 12 | "anonymous": "always", 13 | "named": "never" }] 14 | # https://github.com/eslint/eslint/issues/7101 15 | arrow-parens: off 16 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | coverage 4 | .jest-cache 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | --- 2 | printWidth: 80 3 | singleQuote: true 4 | tabWidth: 2 5 | useTabs: false 6 | semi: true 7 | trailingComma: "es5" 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - '6' 5 | - '8' 6 | - 'stable' 7 | 8 | sudo: false 9 | 10 | git: 11 | depth: 10 12 | 13 | script: make test 14 | after_success: make coveralls 15 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # postcss-map change log 2 | 3 | All notable changes to this project will be documented in this file. 4 | 5 | The format is based on [Keep a Changelog](http://keepachangelog.com/) 6 | and this project adheres to [Semantic Versioning](http://semver.org/). 7 | 8 | 9 | ## [Unreleased] 10 | 11 | ## [0.11.0] - 2018-12-01 12 | ### Added 13 | * Added ability to recursively resolve map values. 14 | ([#113](https://github.com/pascalduez/postcss-map/pull/133)) 15 | 16 | ## [0.10.0] - 2018-08-12 17 | ### Changed 18 | * Upgrade PostCSS to version 7. 19 | **Breaking** Removes support for Node.js versions lower than 6. 20 | 21 | ## [0.9.0] - 2017-05-07 22 | ### Changed 23 | * PostCSS 6 upgrade. 24 | 25 | ## [0.8.0] - 2015-12-26 26 | ### Added 27 | * Add a `defaultMap` option as well as a default `config` map. 28 | ([#10](https://github.com/pascalduez/postcss-map/issues/10)) 29 | 30 | ## [0.7.2] - 2015-10-29 31 | ### Fixed 32 | * Add filename to yaml parser for more informative error message. 33 | * Fix exceptions in promise. 34 | 35 | ## [0.7.1] - 2015-10-25 36 | ### Fixed 37 | * Update Readme examples to use PostCSS async API. 38 | 39 | ## [0.7.0] - 2015-10-24 40 | ### Changed 41 | * postcss-map is now fully async. 42 | ([#17](https://github.com/pascalduez/postcss-map/pull/17)) 43 | * Reduced the number of AST loops. 44 | 45 | ## [0.6.0] - 2015-08-28 46 | ### Changed 47 | * Prevent duplicate Parser initialization. 48 | 49 | ### Added 50 | * Allow literal objects as map. 51 | ([#15](https://github.com/pascalduez/postcss-map/issues/15)) 52 | 53 | ## [0.5.0] - 2015-08-27 54 | ### Changed 55 | * Upgrade to PostCSS 5. 56 | * Several development process updates. 57 | 58 | ## [0.4.1] - 2015-05-02 59 | ### Changed 60 | * Use standard package keyword. 61 | ([#319](https://github.com/postcss/postcss/issues/319)) 62 | 63 | ## [0.4.0] - 2015-04-26 64 | ### Added 65 | * Add a new "short" syntax. 66 | ([#9](https://github.com/pascalduez/postcss-map/issues/9)) 67 | 68 | ## [0.3.0] - 2015-04-09 69 | ## Changed 70 | * Allow multiple map fn calls from atRules. 71 | ([#8](https://github.com/pascalduez/postcss-map/issues/8)) 72 | 73 | ## [0.2.0] - 2015-04-08 74 | ### Changed 75 | * Use latest PostCSS 4.1.* plugin API. 76 | * Upgrade to Babel 5.0. 77 | 78 | ## [0.1.0] - 2015-03-06 79 | * Initial release. 80 | 81 | 82 | [Unreleased]: https://github.com/pascalduez/postcss-map/compare/0.10.0...HEAD 83 | [0.10.0]: https://github.com/pascalduez/postcss-map/compare/0.9.0...0.10.0 84 | [0.9.0]: https://github.com/pascalduez/postcss-map/compare/0.8.0...0.9.0 85 | [0.8.0]: https://github.com/pascalduez/postcss-map/compare/0.7.2...0.8.0 86 | [0.7.2]: https://github.com/pascalduez/postcss-map/compare/0.7.1...0.7.2 87 | [0.7.1]: https://github.com/pascalduez/postcss-map/compare/0.7.0...0.7.1 88 | [0.7.0]: https://github.com/pascalduez/postcss-map/compare/0.6.0...0.7.0 89 | [0.6.0]: https://github.com/pascalduez/postcss-map/compare/0.5.0...0.6.0 90 | [0.5.0]: https://github.com/pascalduez/postcss-map/compare/0.4.1...0.5.0 91 | [0.4.1]: https://github.com/pascalduez/postcss-map/compare/0.4.0...0.4.1 92 | [0.4.0]: https://github.com/pascalduez/postcss-map/compare/0.3.0...0.4.0 93 | [0.3.0]: https://github.com/pascalduez/postcss-map/compare/0.2.0...0.3.0 94 | [0.2.0]: https://github.com/pascalduez/postcss-map/compare/0.1.0...0.2.0 95 | [0.1.0]: https://github.com/pascalduez/postcss-map/tags/0.1.0 96 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | PATH := $(PWD)/node_modules/.bin:$(PATH) 2 | 3 | all: lint dist test 4 | 5 | 6 | # ESnext compilation 7 | # ====================== 8 | 9 | dist: 10 | rm -rf $@ 11 | babel ./src -d $@ 12 | 13 | develop: dist 14 | babel-node $@ 15 | 16 | 17 | # Code quality 18 | # ============ 19 | 20 | lint: 21 | eslint ./src ./test 22 | 23 | test: lint 24 | jest 25 | 26 | cover: 27 | jest --coverage 28 | 29 | cover-browse: cover 30 | opn ./coverage/lcov-report/index.html 31 | 32 | coveralls: cover 33 | (cat ./coverage/lcov.info | coveralls) || exit 0 34 | 35 | 36 | # Publish package to npm 37 | # @see npm/npm#3059 38 | # ======================= 39 | 40 | publish: all 41 | npm publish 42 | 43 | # Release, publish 44 | # ================ 45 | 46 | # "patch", "minor", "major", "prepatch", 47 | # "preminor", "premajor", "prerelease" 48 | VERS ?= "patch" 49 | TAG ?= "latest" 50 | 51 | release: all 52 | npm version $(VERS) -m "Release %s" 53 | npm publish --tag $(TAG) 54 | git push --follow-tags 55 | 56 | 57 | # Tools 58 | # ===== 59 | 60 | rebuild: 61 | rm -rf node_modules 62 | npm install 63 | 64 | 65 | .PHONY: dist develop test 66 | .SILENT: dist develop cover 67 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # postcss-map 2 | 3 | [![npm version][npm-image]][npm-url] 4 | [![Build Status][travis-image]][travis-url] 5 | [![Coverage Status][coveralls-image]][coveralls-url] 6 | 7 | > [PostCSS] plugin enabling configuration maps. 8 | 9 | ## Installation 10 | 11 | ``` 12 | npm install postcss-map --save-dev 13 | ``` 14 | 15 | or 16 | 17 | ``` 18 | yarn add postcss-map --save-dev 19 | ``` 20 | 21 | ## Usage 22 | 23 | ```js 24 | const fs = require('fs'); 25 | const postcss = require('postcss'); 26 | const map = require('postcss-map'); 27 | 28 | let input = fs.readFileSync('input.css', 'utf8'); 29 | 30 | let opts = { 31 | basePath: 'css', 32 | maps: ['example.yml', 'breakpoints.yml', 'fonts.yml'], 33 | }; 34 | 35 | postcss() 36 | .use(map(opts)) 37 | .process(input) 38 | .then(result => { 39 | fs.writeFileSync('output.css', result.css); 40 | }); 41 | ``` 42 | 43 | ### Example usage from declaration values 44 | 45 | map: 46 | 47 | ```yaml 48 | # example.yml 49 | foo: 50 | bar: 51 | baz: 'yeah!' 52 | ``` 53 | 54 | input: 55 | 56 | ```css 57 | .baz { 58 | content: map(example, foo, bar, baz); 59 | } 60 | ``` 61 | 62 | output: 63 | 64 | ```css 65 | .baz { 66 | content: 'yeah!'; 67 | } 68 | ``` 69 | 70 | ### Example usage from at-rules parameters 71 | 72 | map: 73 | 74 | ```yaml 75 | # breakpoints.yml 76 | small: 320px 77 | medium: 321px 78 | large: 800px 79 | ``` 80 | 81 | input: 82 | 83 | ```css 84 | @media (min-width: map(breakpoints, medium)) { 85 | .test { 86 | width: 100%; 87 | } 88 | } 89 | ``` 90 | 91 | output: 92 | 93 | ```css 94 | @media (min-width: 321px) { 95 | .test { 96 | width: 100%; 97 | } 98 | } 99 | ``` 100 | 101 | ### Example from declaration blocks 102 | 103 | map: 104 | 105 | ```yaml 106 | # fonts.yml 107 | regular: 108 | font-family: "'Spinnaker Regular', sans-serif" 109 | font-weight: 'normal' 110 | font-feature-settings: "'onum', 'kern', 'liga', 'dlig', 'clig'" 111 | font-kerning: 'normal' 112 | bold: 113 | font-family: "'Spinnaker Bold', sans-serif" 114 | font-weight: 'normal' 115 | font-feature-settings: "'onum', 'kern', 'liga', 'dlig', 'clig'" 116 | font-kerning: 'normal' 117 | ``` 118 | 119 | input: 120 | 121 | ```css 122 | .whatever { 123 | @map fonts regular; 124 | } 125 | ``` 126 | 127 | output: 128 | 129 | ```css 130 | .whatever { 131 | font-family: 'Spinnaker Regular', sans-serif; 132 | font-weight: normal; 133 | font-feature-settings: 'onum', 'kern', 'liga', 'dlig', 'clig'; 134 | font-kerning: normal; 135 | } 136 | ``` 137 | 138 | ### Example usage with literal objects 139 | 140 | ```js 141 | const fs = require('fs'); 142 | const postcss = require('postcss'); 143 | const map = require('postcss-map'); 144 | 145 | let input = fs.readFileSync('input.css', 'utf8'); 146 | 147 | let opts = { 148 | basePath: 'css', 149 | maps: [ 150 | { 151 | dummy: { 152 | one: 1, 153 | two: 2, 154 | }, 155 | }, 156 | 'example.yml', 157 | 'breakpoints.yml', 158 | 'fonts.yml' 159 | }] 160 | }; 161 | 162 | postcss() 163 | .use(map(opts)) 164 | .process(input) 165 | .then(result => { 166 | fs.writeFileSync('output.css', result.css); 167 | }); 168 | ``` 169 | 170 | input: 171 | 172 | ```css 173 | .whatever { 174 | content: map(dummy, one); 175 | } 176 | 177 | .baz { 178 | content: map(example, foo, bar, baz); 179 | } 180 | ``` 181 | 182 | output: 183 | 184 | ```css 185 | .whatever { 186 | content: 1; 187 | } 188 | 189 | .baz { 190 | content: 'yeah!'; 191 | } 192 | ``` 193 | 194 | ### Example usage with literal objects and short syntax 195 | 196 | ```js 197 | const fs = require('fs'); 198 | const postcss = require('postcss'); 199 | const map = require('postcss-map'); 200 | 201 | let input = fs.readFileSync('input.css', 'utf8'); 202 | 203 | let opts = { 204 | maps: [ 205 | { 206 | one: 1, 207 | two: 2, 208 | }, 209 | ], 210 | }; 211 | 212 | postcss() 213 | .use(map(opts)) 214 | .process(input) 215 | .then(result => { 216 | fs.writeFileSync('output.css', result.css); 217 | }); 218 | ``` 219 | 220 | input: 221 | 222 | ```css 223 | .whatever { 224 | content: map(one); 225 | } 226 | ``` 227 | 228 | output: 229 | 230 | ```css 231 | .whatever { 232 | content: 1; 233 | } 234 | ``` 235 | 236 | ## Options 237 | 238 | ### basePath 239 | 240 | type: `String` 241 | default: `process.cwd` 242 | Base path to retrieve maps from. 243 | 244 | ### maps 245 | 246 | type: `Array` 247 | default: `[]` 248 | An array representing maps files to load and parse. 249 | Map files can either be in YAML or JSON format. 250 | You can also pass literal objects directly into the Array. 251 | 252 | ### defaultMap (short syntax) 253 | 254 | type: `string` 255 | default: `config` 256 | 257 | A shorter syntax is also available, so you don't have to type the map name on each call. To enable it you need to either have a map called `config` or only one map in your settings. 258 | 259 | ```js 260 | let opts = { 261 | basePath: 'css', 262 | maps: ['foo.yml'] 263 | // OR 264 | maps: ['config.yml', 'breakpoints.yml'] 265 | }; 266 | ``` 267 | 268 | map: 269 | 270 | ```yaml 271 | # config.yml 272 | foo: 'foo value' 273 | ``` 274 | 275 | input: 276 | 277 | ```css 278 | .short { 279 | content: map(foo); 280 | } 281 | ``` 282 | 283 | output: 284 | 285 | ```css 286 | .short { 287 | content: 'foo value'; 288 | } 289 | ``` 290 | 291 | ## Context 292 | 293 | Used in conjunction with [postcss-plugin-context] you can benefit from contextualized 294 | maps and leverage the short syntax. 295 | 296 | ```css 297 | @context brandColors { 298 | h1 { 299 | color: map(primary); 300 | } 301 | } 302 | ``` 303 | 304 | ## Credits 305 | 306 | - [Pascal Duez](https://github.com/pascalduez) 307 | - [Bogdan Chadkin](https://github.com/TrySound) 308 | 309 | ## Licence 310 | 311 | postcss-map is [unlicensed](http://unlicense.org/). 312 | 313 | [postcss]: https://github.com/postcss/postcss 314 | [postcss-plugin-context]: https://github.com/postcss/postcss-plugin-context 315 | [npm-url]: https://www.npmjs.org/package/postcss-map 316 | [npm-image]: http://img.shields.io/npm/v/postcss-map.svg?style=flat-square 317 | [travis-url]: https://travis-ci.org/pascalduez/postcss-map?branch=master 318 | [travis-image]: http://img.shields.io/travis/pascalduez/postcss-map.svg?style=flat-square 319 | [coveralls-url]: https://coveralls.io/r/pascalduez/postcss-map 320 | [coveralls-image]: https://img.shields.io/coveralls/pascalduez/postcss-map.svg?style=flat-square 321 | [depstat-url]: https://david-dm.org/pascalduez/postcss-map 322 | [depstat-image]: https://david-dm.org/pascalduez/postcss-map.svg?style=flat-square 323 | [license-image]: http://img.shields.io/npm/l/postcss-map.svg?style=flat-square 324 | [license-url]: UNLICENSE 325 | -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /develop/index.js: -------------------------------------------------------------------------------- 1 | import fs from 'fs'; 2 | import path from 'path'; 3 | import postcss from 'postcss'; 4 | import reporter from 'postcss-reporter'; 5 | import plugin from '../'; 6 | 7 | const read = name => 8 | fs.readFileSync(path.join(__dirname, '..', 'test', 'fixture', name), 'utf8'); 9 | 10 | var opts = { 11 | basePath: 'test/fixture', 12 | maps: [ 13 | { 14 | config: { 15 | foo: 'foo value', 16 | bar: 'bar value', 17 | }, 18 | }, 19 | 'dummy.yml', 20 | 'fonts.yml', 21 | 'breakpoints.yml', 22 | 'assets.yml', 23 | ], 24 | }; 25 | 26 | ['object', 'value', 'block', 'atrule'].forEach(test => { 27 | const input = read(`${test}/input.css`); 28 | 29 | postcss() 30 | .use(plugin(opts)) 31 | .use(reporter) 32 | .process(input) 33 | .then(result => { 34 | console.log(result.css); 35 | }) 36 | .catch(console.error); 37 | }); 38 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./dist').default; 4 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | cacheDirectory: '.jest-cache', 3 | testEnvironment: 'node', 4 | collectCoverageFrom: ['src/*.js'], 5 | }; 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "postcss-map", 3 | "version": "0.11.0", 4 | "description": "PostCSS plugin enabling configuration maps", 5 | "keywords": [ 6 | "css", 7 | "map", 8 | "postcss", 9 | "postcss-plugin" 10 | ], 11 | "author": { 12 | "name": "Pascal Duez", 13 | "url": "https://github.com/pascalduez" 14 | }, 15 | "homepage": "https://github.com/pascalduez/postcss-map", 16 | "bugs": "https://github.com/pascalduez/postcss-map/issues", 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/pascalduez/postcss-map.git" 20 | }, 21 | "license": "Unlicense", 22 | "files": [ 23 | "dist", 24 | "CHANGELOG.md", 25 | "index.js", 26 | "README.md", 27 | "UNLICENSE" 28 | ], 29 | "engines": { 30 | "node": ">=6.0.0" 31 | }, 32 | "scripts": { 33 | "lint": "eslint src/", 34 | "test": "jest" 35 | }, 36 | "dependencies": { 37 | "js-yaml": "^3.12.0", 38 | "postcss": "^7.0.2", 39 | "reduce-function-call": "^1.0.1" 40 | }, 41 | "devDependencies": { 42 | "babel-cli": "^6.26.0", 43 | "babel-eslint": "^8.2.6", 44 | "babel-plugin-transform-object-rest-spread": "^6.26.0", 45 | "babel-preset-env": "^1.7.0", 46 | "coveralls": "^3.0.2", 47 | "eslint": "^5.3.0", 48 | "eslint-config-standard": "^11.0.0", 49 | "eslint-plugin-import": "^2.13.0", 50 | "eslint-plugin-node": "^7.0.1", 51 | "eslint-plugin-promise": "^3.8.0", 52 | "eslint-plugin-standard": "^3.1.0", 53 | "jest": "^23.5.0", 54 | "opn-cli": "^3.0.0", 55 | "postcss-reporter": "^5.0.0" 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import path from 'path'; 2 | import { readFile } from 'fs'; 3 | import postcss from 'postcss'; 4 | import yaml from 'js-yaml'; 5 | import Visitor from './visitor'; 6 | 7 | export default postcss.plugin('postcss-map', opts => { 8 | opts = Object.assign({ 9 | maps: [], 10 | basePath: process.cwd(), 11 | defaultMap: 'config', 12 | }, opts); 13 | 14 | let filtered = []; 15 | let maps = Object.create(null); 16 | let paths = opts.maps.filter(map => { 17 | if (typeof map === 'string' && filtered.indexOf(map) === -1) { 18 | filtered.push(map); 19 | return true; 20 | } 21 | if (typeof map === 'object') { 22 | Object.assign(maps, map); 23 | } 24 | }).map(map => { 25 | return path.resolve(opts.basePath, map); 26 | }); 27 | 28 | let promises = paths.map(map => { 29 | return new Promise((resolve, reject) => { 30 | readFile(map, 'utf-8', (err, data) => { 31 | if (err) { 32 | return reject(err); 33 | } 34 | resolve(data); 35 | }); 36 | }) 37 | .then(function (data) { 38 | let name = path.basename(map, path.extname(map)); 39 | maps[name] = yaml.safeLoad(data, { 40 | filename: map, 41 | }); 42 | }); 43 | }); 44 | 45 | return css => { 46 | return Promise.all(promises).then(() => { 47 | const visitor = new Visitor(opts, maps); 48 | 49 | css.walk(node => { 50 | if (node.type === 'decl') { 51 | return visitor.processDecl(node); 52 | } 53 | if (node.type === 'atrule') { 54 | return visitor.processAtRule(node); 55 | } 56 | }); 57 | }); 58 | }; 59 | }); 60 | -------------------------------------------------------------------------------- /src/visitor.js: -------------------------------------------------------------------------------- 1 | import { list } from 'postcss'; 2 | import rfc from 'reduce-function-call'; 3 | 4 | const reMap = /((?:map)\()(.*)(\))/; 5 | 6 | export default class Visitor { 7 | constructor(opts = {}, maps = {}) { 8 | this.opts = opts; 9 | this.maps = maps; 10 | } 11 | 12 | /** 13 | * Parse and replace maps in declarations values. 14 | * @param {Object} decl 15 | */ 16 | processDecl(decl) { 17 | if (!reMap.test(decl.value)) { 18 | return; 19 | } 20 | 21 | decl.value = rfc(decl.value, 'map', body => { 22 | return this.getValue(list.comma(body)); 23 | }); 24 | } 25 | 26 | /** 27 | * Parse and proccess at-rules. 28 | * @param {Object} rule 29 | */ 30 | processAtRule(rule) { 31 | if (rule.name === 'map') { 32 | return this.replaceAtRuleBlock(rule); 33 | } 34 | if (reMap.test(rule.params)) { 35 | return this.replaceAtRuleParam(rule); 36 | } 37 | } 38 | 39 | /** 40 | * Get and print at-rules map declarations. 41 | * @param {Object} rule 42 | */ 43 | replaceAtRuleBlock(rule) { 44 | let map = this.getValue(list.space(rule.params)); 45 | 46 | Object.keys(map).forEach(prop => { 47 | rule.parent.insertBefore(rule, { prop, value: map[prop] }); 48 | }); 49 | 50 | rule.remove(); 51 | } 52 | 53 | /** 54 | * Parse and replace maps in at-rules parameters. 55 | * @param {Object} rule 56 | */ 57 | replaceAtRuleParam(rule) { 58 | rule.params = rfc(rule.params, 'map', body => { 59 | return this.getValue(list.comma(body)); 60 | }); 61 | } 62 | 63 | /** 64 | * Get value from a deep nested object properties. 65 | * @param {Array} args 66 | * @return {*} 67 | */ 68 | getValue(args) { 69 | let [name, ...props] = args; 70 | let shortcutMap = this.useShortcutMap(name); 71 | 72 | if (shortcutMap) { 73 | name = shortcutMap; 74 | props = args; 75 | } 76 | 77 | let value = props.reduce((acc, prop) => (acc[prop]), this.maps[name]); 78 | 79 | if (!reMap.test(value)) { 80 | return value; 81 | } 82 | 83 | return rfc(value, 'map', body => { 84 | return this.getValue(list.comma(body)); 85 | }); 86 | } 87 | 88 | /** 89 | * Get map name usable with the short syntax. 90 | * @param {String} name 91 | * @return {Boolean|String} 92 | */ 93 | useShortcutMap(name) { 94 | if (name in this.maps) { 95 | return false; 96 | } 97 | if (this.opts.defaultMap in this.maps) { 98 | return this.opts.defaultMap; 99 | } 100 | let names = Object.keys(this.maps); 101 | if (names.length === 1) { 102 | return names[0]; 103 | } 104 | } 105 | } 106 | -------------------------------------------------------------------------------- /test/control.test.js: -------------------------------------------------------------------------------- 1 | import fs from 'fs'; 2 | import path from 'path'; 3 | import postcss from 'postcss'; 4 | import plugin from '../src'; 5 | 6 | const pluginName = require('../package.json').name; 7 | let from; 8 | 9 | const read = name => 10 | fs.readFileSync(path.join(__dirname, 'fixture', name), 'utf8'); 11 | 12 | const expected = read('control/expected.css'); 13 | const input = read('control/input.css'); 14 | 15 | test('control: no options', () => 16 | postcss([plugin]) 17 | .process(input, { from }) 18 | .then(result => { 19 | expect(result.css).toBe(expected); 20 | })); 21 | 22 | test('control: with options', () => 23 | postcss([plugin({})]) 24 | .process(input, { from }) 25 | .then(result => { 26 | expect(result.css).toBe(expected); 27 | })); 28 | 29 | test('control: PostCSS API', async () => { 30 | const processor = postcss(); 31 | processor.use(plugin); 32 | 33 | const result = await processor.process(input, { from }); 34 | 35 | expect(result.css).toBe(expected); 36 | 37 | expect(processor.plugins[0].postcssPlugin).toBe(pluginName); 38 | expect(processor.plugins[0].postcssVersion).toBeDefined(); 39 | }); 40 | -------------------------------------------------------------------------------- /test/fixture/assets.yml: -------------------------------------------------------------------------------- 1 | upper: '../assets/img/upper.png' 2 | between: '../assets/img/between.png' 3 | under: '../assets/img/under.png' 4 | -------------------------------------------------------------------------------- /test/fixture/atrule/expected.css: -------------------------------------------------------------------------------- 1 | @media screen and (min-width: 321px) { 2 | .test { 3 | width: 100%; 4 | } 5 | } 6 | 7 | @media (min-width: 321px) and (max-width: 800px) { 8 | .test { 9 | width: 100%; 10 | } 11 | } 12 | 13 | @custom-media --foo (width >= 321px) and (width <= 800px); 14 | -------------------------------------------------------------------------------- /test/fixture/atrule/input.css: -------------------------------------------------------------------------------- 1 | @media screen and (min-width: map(breakpoints, medium)) { 2 | .test { 3 | width: 100%; 4 | } 5 | } 6 | 7 | @media (min-width: map(breakpoints, medium)) and (max-width: map(breakpoints, large)) { 8 | .test { 9 | width: 100%; 10 | } 11 | } 12 | 13 | @custom-media --foo (width >= map(breakpoints, medium)) and (width <= map(breakpoints, large)); 14 | -------------------------------------------------------------------------------- /test/fixture/block/expected.css: -------------------------------------------------------------------------------- 1 | .fonts { 2 | font-family: 'CamingoCode Regular', nonospace; 3 | font-weight: normal; 4 | font-feature-settings: zero; 5 | } 6 | -------------------------------------------------------------------------------- /test/fixture/block/input.css: -------------------------------------------------------------------------------- 1 | .fonts { 2 | @map fonts code Regular; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixture/breakpoints.yml: -------------------------------------------------------------------------------- 1 | small: 320px 2 | medium: 321px 3 | large: 800px 4 | -------------------------------------------------------------------------------- /test/fixture/config.yml: -------------------------------------------------------------------------------- 1 | foo: 'foo value' 2 | bar: 'bar value' 3 | baz: 4 | - 'one' 5 | - 'two' 6 | - 'three' 7 | one: 8 | two: 9 | three: 'yeah!' 10 | -------------------------------------------------------------------------------- /test/fixture/control/expected.css: -------------------------------------------------------------------------------- 1 | .test { 2 | content: 'test'; 3 | background: blue url(../svg/test.svg) no-repeat 0 0; 4 | } 5 | 6 | ul > li { 7 | @media screen (min-width: 500px) { 8 | content: 'test'; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /test/fixture/control/input.css: -------------------------------------------------------------------------------- 1 | .test { 2 | content: 'test'; 3 | background: blue url(../svg/test.svg) no-repeat 0 0; 4 | } 5 | 6 | ul > li { 7 | @media screen (min-width: 500px) { 8 | content: 'test'; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /test/fixture/dummy.yml: -------------------------------------------------------------------------------- 1 | foo: 'foo value' 2 | bar: 'bar value' 3 | baz: 4 | - 'one' 5 | - 'two' 6 | - 'three' 7 | one: 8 | two: 9 | three: 'yeah!' 10 | -------------------------------------------------------------------------------- /test/fixture/fail.yml: -------------------------------------------------------------------------------- 1 | list 2 | - item 3 | # - item 4 | item 5 | -------------------------------------------------------------------------------- /test/fixture/fonts.yml: -------------------------------------------------------------------------------- 1 | code: 2 | Regular: 3 | font-family: "'CamingoCode Regular', nonospace" 4 | font-weight: "normal" 5 | font-feature-settings: "zero" 6 | Bold: 7 | font-family: "'CamingoCode Bold', nonospace" 8 | font-weight: "normal" 9 | font-feature-settings: "zero" 10 | Italic: 11 | font-family: "'CamingoCode Italic', nonospace" 12 | font-weight: "normal" 13 | font-feature-settings: "zero" 14 | BoldItalic: 15 | font-family: "'CamingoCode BoldItalic', nonospace" 16 | font-weight: "normal" 17 | font-feature-settings: "zero" 18 | 19 | sans-serif: 20 | Regular: 21 | font-family: "'Spinnaker Regular', sans-serif" 22 | font-weight: "normal" 23 | font-feature-settings: "'onum', 'kern', 'liga', 'dlig', 'clig'" 24 | font-kerning: "normal" 25 | -------------------------------------------------------------------------------- /test/fixture/object-custom/expected.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | content: custom foo value; 3 | } 4 | .foo--short { 5 | content: custom foo value; 6 | } 7 | -------------------------------------------------------------------------------- /test/fixture/object-custom/input.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | content: map(custom, foo); 3 | } 4 | .foo--short { 5 | content: map(foo); 6 | } 7 | -------------------------------------------------------------------------------- /test/fixture/object-short/expected.css: -------------------------------------------------------------------------------- 1 | .foo--short { 2 | content: foo value; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixture/object-short/input.css: -------------------------------------------------------------------------------- 1 | .foo--short { 2 | content: map(foo); 3 | } 4 | -------------------------------------------------------------------------------- /test/fixture/object/expected.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | content: foo value; 3 | } 4 | .foo--short { 5 | content: foo value; 6 | } 7 | -------------------------------------------------------------------------------- /test/fixture/object/input.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | content: map(config, foo); 3 | } 4 | .foo--short { 5 | content: map(foo); 6 | } 7 | -------------------------------------------------------------------------------- /test/fixture/recursive.yml: -------------------------------------------------------------------------------- 1 | foo: map(dummy, foo) 2 | bar: map(recursive, foo) 3 | -------------------------------------------------------------------------------- /test/fixture/recursive/expected.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | content: foo value; 3 | } 4 | 5 | .bar { 6 | content: foo value; 7 | } 8 | -------------------------------------------------------------------------------- /test/fixture/recursive/input.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | content: map(recursive, foo); 3 | } 4 | 5 | .bar { 6 | content: map(recursive, bar); 7 | } 8 | -------------------------------------------------------------------------------- /test/fixture/shortcut/expected.css: -------------------------------------------------------------------------------- 1 | .short { 2 | content: foo value; 3 | } 4 | 5 | .short { 6 | content: yeah!; 7 | } 8 | -------------------------------------------------------------------------------- /test/fixture/shortcut/input.css: -------------------------------------------------------------------------------- 1 | .short { 2 | content: map(foo); 3 | } 4 | 5 | .short { 6 | content: map(one, two, three); 7 | } 8 | -------------------------------------------------------------------------------- /test/fixture/value/expected.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | content: foo value; 3 | } 4 | 5 | .bar { 6 | background-image: url(../assets/img/upper.png), 7 | url(../assets/img/between.png), 8 | url(../assets/img/under.png); 9 | } 10 | -------------------------------------------------------------------------------- /test/fixture/value/input.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | content: map(dummy, foo); 3 | } 4 | 5 | .bar { 6 | background-image: url(map(assets, upper)), 7 | url(map(assets, between)), 8 | url(map(assets, under)); 9 | } 10 | -------------------------------------------------------------------------------- /test/map.test.js: -------------------------------------------------------------------------------- 1 | import fs from 'fs'; 2 | import path from 'path'; 3 | import postcss from 'postcss'; 4 | import plugin from '../src'; 5 | 6 | const read = name => 7 | fs.readFileSync(path.join(__dirname, 'fixture', name), 'utf8'); 8 | 9 | let from; 10 | let opts = { 11 | basePath: 'test/fixture', 12 | maps: [ 13 | 'dummy.yml', 14 | 'fonts.yml', 15 | 'breakpoints.yml', 16 | 'assets.yml', 17 | 'config.yml', 18 | 'recursive.yml', 19 | ], 20 | }; 21 | 22 | test('value', async () => { 23 | const input = read('value/input.css'); 24 | const expected = read('value/expected.css'); 25 | 26 | const result = await postcss() 27 | .use(plugin(opts)) 28 | .process(input, { from }); 29 | 30 | expect(result.css).toBe(expected); 31 | }); 32 | 33 | test('recursive', async () => { 34 | const input = read('recursive/input.css'); 35 | const expected = read('recursive/expected.css'); 36 | 37 | const result = await postcss() 38 | .use(plugin(opts)) 39 | .process(input, { from }); 40 | 41 | expect(result.css).toBe(expected); 42 | }); 43 | 44 | test('block', async () => { 45 | const input = read('block/input.css'); 46 | const expected = read('block/expected.css'); 47 | 48 | const result = await postcss() 49 | .use(plugin(opts)) 50 | .process(input, { from }); 51 | 52 | expect(result.css).toBe(expected); 53 | }); 54 | 55 | test('atrule', async () => { 56 | const input = read('atrule/input.css'); 57 | const expected = read('atrule/expected.css'); 58 | 59 | const result = await postcss() 60 | .use(plugin(opts)) 61 | .process(input, { from }); 62 | 63 | expect(result.css).toBe(expected); 64 | }); 65 | 66 | test('object', async () => { 67 | const input = read('object/input.css'); 68 | const expected = read('object/expected.css'); 69 | const localOpts = { 70 | maps: [ 71 | { 72 | config: { 73 | foo: 'foo value', 74 | bar: 'bar value', 75 | }, 76 | }, 77 | ], 78 | }; 79 | 80 | const result = await postcss() 81 | .use(plugin(localOpts)) 82 | .process(input, { from }); 83 | 84 | expect(result.css).toBe(expected); 85 | }); 86 | 87 | test('object:custom', async () => { 88 | const input = read('object-custom/input.css'); 89 | const expected = read('object-custom/expected.css'); 90 | const localOpts = { 91 | defaultMap: 'custom', 92 | maps: [ 93 | { 94 | custom: { 95 | foo: 'custom foo value', 96 | bar: 'custom bar value', 97 | }, 98 | config: { 99 | foo: 'config foo value', 100 | bar: 'config bar value', 101 | }, 102 | }, 103 | ], 104 | }; 105 | 106 | const result = await postcss() 107 | .use(plugin(localOpts)) 108 | .process(input, { from }); 109 | 110 | expect(result.css).toBe(expected); 111 | }); 112 | 113 | test('object:short', async () => { 114 | const input = read('object-short/input.css'); 115 | const expected = read('object-short/expected.css'); 116 | const localOpts = { 117 | maps: [ 118 | { 119 | foo: 'foo value', 120 | bar: 'bar value', 121 | }, 122 | ], 123 | }; 124 | 125 | const result = await postcss() 126 | .use(plugin(localOpts)) 127 | .process(input, { from }); 128 | 129 | expect(result.css).toBe(expected); 130 | }); 131 | 132 | test('shortcut', async () => { 133 | const input = read('shortcut/input.css'); 134 | const expected = read('shortcut/expected.css'); 135 | const localOpts = { 136 | ...opts, 137 | maps: ['dummy.yml'], 138 | }; 139 | let result; 140 | 141 | // With `config` 142 | result = await postcss() 143 | .use(plugin(opts)) 144 | .process(input, { from }); 145 | 146 | expect(result.css).toBe(expected); 147 | 148 | // With only one map. 149 | result = await postcss() 150 | .use(plugin(localOpts)) 151 | .process(input, { from }); 152 | 153 | expect(result.css).toBe(expected); 154 | }); 155 | 156 | test('errors:path', async () => { 157 | const input = read('atrule/input.css'); 158 | const localOpts = { 159 | ...opts, 160 | maps: [...opts.maps, 'blow.yml'], 161 | }; 162 | 163 | try { 164 | await postcss() 165 | .use(plugin(localOpts)) 166 | .process(input, { from }); 167 | } catch (ex) { 168 | expect(ex.code).toBe('ENOENT'); 169 | expect(ex.toString()).toMatch(/blow.yml/); 170 | } 171 | }); 172 | 173 | test('errors:yaml', async () => { 174 | const input = read('atrule/input.css'); 175 | const localOpts = { 176 | ...opts, 177 | maps: [...opts.maps, 'fail.yml'], 178 | }; 179 | 180 | try { 181 | await postcss() 182 | .use(plugin(localOpts)) 183 | .process(input, { from }); 184 | } catch (ex) { 185 | expect(ex.name).toBe('YAMLException'); 186 | expect(ex.toString()).toMatch(/fail.yml/); 187 | } 188 | }); 189 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@7.0.0-beta.44": 6 | version "7.0.0-beta.44" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.44.tgz#2a02643368de80916162be70865c97774f3adbd9" 8 | dependencies: 9 | "@babel/highlight" "7.0.0-beta.44" 10 | 11 | "@babel/code-frame@^7.0.0-beta.35": 12 | version "7.0.0-rc.1" 13 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-rc.1.tgz#5c2154415d6c09959a71845ef519d11157e95d10" 14 | dependencies: 15 | "@babel/highlight" "7.0.0-rc.1" 16 | 17 | "@babel/generator@7.0.0-beta.44": 18 | version "7.0.0-beta.44" 19 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0-beta.44.tgz#c7e67b9b5284afcf69b309b50d7d37f3e5033d42" 20 | dependencies: 21 | "@babel/types" "7.0.0-beta.44" 22 | jsesc "^2.5.1" 23 | lodash "^4.2.0" 24 | source-map "^0.5.0" 25 | trim-right "^1.0.1" 26 | 27 | "@babel/helper-function-name@7.0.0-beta.44": 28 | version "7.0.0-beta.44" 29 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.44.tgz#e18552aaae2231100a6e485e03854bc3532d44dd" 30 | dependencies: 31 | "@babel/helper-get-function-arity" "7.0.0-beta.44" 32 | "@babel/template" "7.0.0-beta.44" 33 | "@babel/types" "7.0.0-beta.44" 34 | 35 | "@babel/helper-get-function-arity@7.0.0-beta.44": 36 | version "7.0.0-beta.44" 37 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.44.tgz#d03ca6dd2b9f7b0b1e6b32c56c72836140db3a15" 38 | dependencies: 39 | "@babel/types" "7.0.0-beta.44" 40 | 41 | "@babel/helper-split-export-declaration@7.0.0-beta.44": 42 | version "7.0.0-beta.44" 43 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0-beta.44.tgz#c0b351735e0fbcb3822c8ad8db4e583b05ebd9dc" 44 | dependencies: 45 | "@babel/types" "7.0.0-beta.44" 46 | 47 | "@babel/highlight@7.0.0-beta.44": 48 | version "7.0.0-beta.44" 49 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.44.tgz#18c94ce543916a80553edcdcf681890b200747d5" 50 | dependencies: 51 | chalk "^2.0.0" 52 | esutils "^2.0.2" 53 | js-tokens "^3.0.0" 54 | 55 | "@babel/highlight@7.0.0-rc.1": 56 | version "7.0.0-rc.1" 57 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-rc.1.tgz#e0ca4731fa4786f7b9500421d6ff5e5a7753e81e" 58 | dependencies: 59 | chalk "^2.0.0" 60 | esutils "^2.0.2" 61 | js-tokens "^3.0.0" 62 | 63 | "@babel/template@7.0.0-beta.44": 64 | version "7.0.0-beta.44" 65 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.44.tgz#f8832f4fdcee5d59bf515e595fc5106c529b394f" 66 | dependencies: 67 | "@babel/code-frame" "7.0.0-beta.44" 68 | "@babel/types" "7.0.0-beta.44" 69 | babylon "7.0.0-beta.44" 70 | lodash "^4.2.0" 71 | 72 | "@babel/traverse@7.0.0-beta.44": 73 | version "7.0.0-beta.44" 74 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.44.tgz#a970a2c45477ad18017e2e465a0606feee0d2966" 75 | dependencies: 76 | "@babel/code-frame" "7.0.0-beta.44" 77 | "@babel/generator" "7.0.0-beta.44" 78 | "@babel/helper-function-name" "7.0.0-beta.44" 79 | "@babel/helper-split-export-declaration" "7.0.0-beta.44" 80 | "@babel/types" "7.0.0-beta.44" 81 | babylon "7.0.0-beta.44" 82 | debug "^3.1.0" 83 | globals "^11.1.0" 84 | invariant "^2.2.0" 85 | lodash "^4.2.0" 86 | 87 | "@babel/types@7.0.0-beta.44": 88 | version "7.0.0-beta.44" 89 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.44.tgz#6b1b164591f77dec0a0342aca995f2d046b3a757" 90 | dependencies: 91 | esutils "^2.0.2" 92 | lodash "^4.2.0" 93 | to-fast-properties "^2.0.0" 94 | 95 | abab@^1.0.4: 96 | version "1.0.4" 97 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 98 | 99 | abab@^2.0.0: 100 | version "2.0.0" 101 | resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f" 102 | 103 | abbrev@1: 104 | version "1.1.0" 105 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 106 | 107 | acorn-globals@^4.1.0: 108 | version "4.1.0" 109 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538" 110 | dependencies: 111 | acorn "^5.0.0" 112 | 113 | acorn-jsx@^4.1.1: 114 | version "4.1.1" 115 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-4.1.1.tgz#e8e41e48ea2fe0c896740610ab6a4ffd8add225e" 116 | dependencies: 117 | acorn "^5.0.3" 118 | 119 | acorn@^5.0.0, acorn@^5.0.3, acorn@^5.5.3, acorn@^5.6.0: 120 | version "5.7.1" 121 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8" 122 | 123 | ajv-keywords@^3.0.0: 124 | version "3.2.0" 125 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.2.0.tgz#e86b819c602cf8821ad637413698f1dec021847a" 126 | 127 | ajv@^4.9.1: 128 | version "4.11.5" 129 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.5.tgz#b6ee74657b993a01dce44b7944d56f485828d5bd" 130 | dependencies: 131 | co "^4.6.0" 132 | json-stable-stringify "^1.0.1" 133 | 134 | ajv@^5.3.0: 135 | version "5.5.2" 136 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 137 | dependencies: 138 | co "^4.6.0" 139 | fast-deep-equal "^1.0.0" 140 | fast-json-stable-stringify "^2.0.0" 141 | json-schema-traverse "^0.3.0" 142 | 143 | ajv@^6.0.1, ajv@^6.5.0: 144 | version "6.5.2" 145 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.2.tgz#678495f9b82f7cca6be248dd92f59bff5e1f4360" 146 | dependencies: 147 | fast-deep-equal "^2.0.1" 148 | fast-json-stable-stringify "^2.0.0" 149 | json-schema-traverse "^0.4.1" 150 | uri-js "^4.2.1" 151 | 152 | align-text@^0.1.1, align-text@^0.1.3: 153 | version "0.1.4" 154 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 155 | dependencies: 156 | kind-of "^3.0.2" 157 | longest "^1.0.1" 158 | repeat-string "^1.5.2" 159 | 160 | amdefine@>=0.0.4: 161 | version "1.0.1" 162 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 163 | 164 | ansi-escapes@^3.0.0: 165 | version "3.1.0" 166 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 167 | 168 | ansi-regex@^2.0.0: 169 | version "2.1.1" 170 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 171 | 172 | ansi-regex@^3.0.0: 173 | version "3.0.0" 174 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 175 | 176 | ansi-styles@^2.2.1: 177 | version "2.2.1" 178 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 179 | 180 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 181 | version "3.2.1" 182 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 183 | dependencies: 184 | color-convert "^1.9.0" 185 | 186 | anymatch@^1.3.0: 187 | version "1.3.0" 188 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 189 | dependencies: 190 | arrify "^1.0.0" 191 | micromatch "^2.1.5" 192 | 193 | anymatch@^2.0.0: 194 | version "2.0.0" 195 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 196 | dependencies: 197 | micromatch "^3.1.4" 198 | normalize-path "^2.1.1" 199 | 200 | append-transform@^1.0.0: 201 | version "1.0.0" 202 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab" 203 | dependencies: 204 | default-require-extensions "^2.0.0" 205 | 206 | aproba@^1.0.3: 207 | version "1.1.1" 208 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 209 | 210 | are-we-there-yet@~1.1.2: 211 | version "1.1.2" 212 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 213 | dependencies: 214 | delegates "^1.0.0" 215 | readable-stream "^2.0.0 || ^1.1.13" 216 | 217 | argparse@^1.0.7: 218 | version "1.0.9" 219 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 220 | dependencies: 221 | sprintf-js "~1.0.2" 222 | 223 | arr-diff@^2.0.0: 224 | version "2.0.0" 225 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 226 | dependencies: 227 | arr-flatten "^1.0.1" 228 | 229 | arr-diff@^4.0.0: 230 | version "4.0.0" 231 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 232 | 233 | arr-flatten@^1.0.1: 234 | version "1.0.1" 235 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 236 | 237 | arr-flatten@^1.1.0: 238 | version "1.1.0" 239 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 240 | 241 | arr-union@^3.1.0: 242 | version "3.1.0" 243 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 244 | 245 | array-equal@^1.0.0: 246 | version "1.0.0" 247 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 248 | 249 | array-find-index@^1.0.1: 250 | version "1.0.2" 251 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 252 | 253 | array-union@^1.0.1: 254 | version "1.0.2" 255 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 256 | dependencies: 257 | array-uniq "^1.0.1" 258 | 259 | array-uniq@^1.0.1: 260 | version "1.0.3" 261 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 262 | 263 | array-unique@^0.2.1: 264 | version "0.2.1" 265 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 266 | 267 | array-unique@^0.3.2: 268 | version "0.3.2" 269 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 270 | 271 | arrify@^1.0.0, arrify@^1.0.1: 272 | version "1.0.1" 273 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 274 | 275 | asn1@~0.2.3: 276 | version "0.2.4" 277 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 278 | dependencies: 279 | safer-buffer "~2.1.0" 280 | 281 | assert-plus@1.0.0, assert-plus@^1.0.0: 282 | version "1.0.0" 283 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 284 | 285 | assert-plus@^0.2.0: 286 | version "0.2.0" 287 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 288 | 289 | assign-symbols@^1.0.0: 290 | version "1.0.0" 291 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 292 | 293 | astral-regex@^1.0.0: 294 | version "1.0.0" 295 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 296 | 297 | async-each@^1.0.0: 298 | version "1.0.1" 299 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 300 | 301 | async-limiter@~1.0.0: 302 | version "1.0.0" 303 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 304 | 305 | async@^1.4.0: 306 | version "1.5.2" 307 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 308 | 309 | async@^2.1.4: 310 | version "2.3.0" 311 | resolved "https://registry.yarnpkg.com/async/-/async-2.3.0.tgz#1013d1051047dd320fe24e494d5c66ecaf6147d9" 312 | dependencies: 313 | lodash "^4.14.0" 314 | 315 | asynckit@^0.4.0: 316 | version "0.4.0" 317 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 318 | 319 | atob@^2.1.1: 320 | version "2.1.1" 321 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a" 322 | 323 | aws-sign2@~0.6.0: 324 | version "0.6.0" 325 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 326 | 327 | aws-sign2@~0.7.0: 328 | version "0.7.0" 329 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 330 | 331 | aws4@^1.2.1: 332 | version "1.6.0" 333 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 334 | 335 | aws4@^1.8.0: 336 | version "1.8.0" 337 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" 338 | 339 | babel-cli@^6.26.0: 340 | version "6.26.0" 341 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 342 | dependencies: 343 | babel-core "^6.26.0" 344 | babel-polyfill "^6.26.0" 345 | babel-register "^6.26.0" 346 | babel-runtime "^6.26.0" 347 | commander "^2.11.0" 348 | convert-source-map "^1.5.0" 349 | fs-readdir-recursive "^1.0.0" 350 | glob "^7.1.2" 351 | lodash "^4.17.4" 352 | output-file-sync "^1.1.2" 353 | path-is-absolute "^1.0.1" 354 | slash "^1.0.0" 355 | source-map "^0.5.6" 356 | v8flags "^2.1.1" 357 | optionalDependencies: 358 | chokidar "^1.6.1" 359 | 360 | babel-code-frame@^6.22.0: 361 | version "6.22.0" 362 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 363 | dependencies: 364 | chalk "^1.1.0" 365 | esutils "^2.0.2" 366 | js-tokens "^3.0.0" 367 | 368 | babel-code-frame@^6.26.0: 369 | version "6.26.0" 370 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 371 | dependencies: 372 | chalk "^1.1.3" 373 | esutils "^2.0.2" 374 | js-tokens "^3.0.2" 375 | 376 | babel-core@^6.0.0, babel-core@^6.24.1: 377 | version "6.24.1" 378 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 379 | dependencies: 380 | babel-code-frame "^6.22.0" 381 | babel-generator "^6.24.1" 382 | babel-helpers "^6.24.1" 383 | babel-messages "^6.23.0" 384 | babel-register "^6.24.1" 385 | babel-runtime "^6.22.0" 386 | babel-template "^6.24.1" 387 | babel-traverse "^6.24.1" 388 | babel-types "^6.24.1" 389 | babylon "^6.11.0" 390 | convert-source-map "^1.1.0" 391 | debug "^2.1.1" 392 | json5 "^0.5.0" 393 | lodash "^4.2.0" 394 | minimatch "^3.0.2" 395 | path-is-absolute "^1.0.0" 396 | private "^0.1.6" 397 | slash "^1.0.0" 398 | source-map "^0.5.0" 399 | 400 | babel-core@^6.26.0: 401 | version "6.26.3" 402 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 403 | dependencies: 404 | babel-code-frame "^6.26.0" 405 | babel-generator "^6.26.0" 406 | babel-helpers "^6.24.1" 407 | babel-messages "^6.23.0" 408 | babel-register "^6.26.0" 409 | babel-runtime "^6.26.0" 410 | babel-template "^6.26.0" 411 | babel-traverse "^6.26.0" 412 | babel-types "^6.26.0" 413 | babylon "^6.18.0" 414 | convert-source-map "^1.5.1" 415 | debug "^2.6.9" 416 | json5 "^0.5.1" 417 | lodash "^4.17.4" 418 | minimatch "^3.0.4" 419 | path-is-absolute "^1.0.1" 420 | private "^0.1.8" 421 | slash "^1.0.0" 422 | source-map "^0.5.7" 423 | 424 | babel-eslint@^8.2.6: 425 | version "8.2.6" 426 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.2.6.tgz#6270d0c73205628067c0f7ae1693a9e797acefd9" 427 | dependencies: 428 | "@babel/code-frame" "7.0.0-beta.44" 429 | "@babel/traverse" "7.0.0-beta.44" 430 | "@babel/types" "7.0.0-beta.44" 431 | babylon "7.0.0-beta.44" 432 | eslint-scope "3.7.1" 433 | eslint-visitor-keys "^1.0.0" 434 | 435 | babel-generator@^6.18.0, babel-generator@^6.24.1: 436 | version "6.24.1" 437 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 438 | dependencies: 439 | babel-messages "^6.23.0" 440 | babel-runtime "^6.22.0" 441 | babel-types "^6.24.1" 442 | detect-indent "^4.0.0" 443 | jsesc "^1.3.0" 444 | lodash "^4.2.0" 445 | source-map "^0.5.0" 446 | trim-right "^1.0.1" 447 | 448 | babel-generator@^6.26.0: 449 | version "6.26.1" 450 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 451 | dependencies: 452 | babel-messages "^6.23.0" 453 | babel-runtime "^6.26.0" 454 | babel-types "^6.26.0" 455 | detect-indent "^4.0.0" 456 | jsesc "^1.3.0" 457 | lodash "^4.17.4" 458 | source-map "^0.5.7" 459 | trim-right "^1.0.1" 460 | 461 | babel-helper-builder-binary-assignment-operator-visitor@^6.22.0: 462 | version "6.22.0" 463 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.22.0.tgz#29df56be144d81bdeac08262bfa41d2c5e91cdcd" 464 | dependencies: 465 | babel-helper-explode-assignable-expression "^6.22.0" 466 | babel-runtime "^6.22.0" 467 | babel-types "^6.22.0" 468 | 469 | babel-helper-call-delegate@^6.22.0: 470 | version "6.22.0" 471 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 472 | dependencies: 473 | babel-helper-hoist-variables "^6.22.0" 474 | babel-runtime "^6.22.0" 475 | babel-traverse "^6.22.0" 476 | babel-types "^6.22.0" 477 | 478 | babel-helper-define-map@^6.23.0: 479 | version "6.23.0" 480 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz#1444f960c9691d69a2ced6a205315f8fd00804e7" 481 | dependencies: 482 | babel-helper-function-name "^6.23.0" 483 | babel-runtime "^6.22.0" 484 | babel-types "^6.23.0" 485 | lodash "^4.2.0" 486 | 487 | babel-helper-explode-assignable-expression@^6.22.0: 488 | version "6.22.0" 489 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.22.0.tgz#c97bf76eed3e0bae4048121f2b9dae1a4e7d0478" 490 | dependencies: 491 | babel-runtime "^6.22.0" 492 | babel-traverse "^6.22.0" 493 | babel-types "^6.22.0" 494 | 495 | babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.23.0: 496 | version "6.23.0" 497 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6" 498 | dependencies: 499 | babel-helper-get-function-arity "^6.22.0" 500 | babel-runtime "^6.22.0" 501 | babel-template "^6.23.0" 502 | babel-traverse "^6.23.0" 503 | babel-types "^6.23.0" 504 | 505 | babel-helper-get-function-arity@^6.22.0: 506 | version "6.22.0" 507 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 508 | dependencies: 509 | babel-runtime "^6.22.0" 510 | babel-types "^6.22.0" 511 | 512 | babel-helper-hoist-variables@^6.22.0: 513 | version "6.22.0" 514 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 515 | dependencies: 516 | babel-runtime "^6.22.0" 517 | babel-types "^6.22.0" 518 | 519 | babel-helper-optimise-call-expression@^6.23.0: 520 | version "6.23.0" 521 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz#f3ee7eed355b4282138b33d02b78369e470622f5" 522 | dependencies: 523 | babel-runtime "^6.22.0" 524 | babel-types "^6.23.0" 525 | 526 | babel-helper-regex@^6.22.0: 527 | version "6.22.0" 528 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 529 | dependencies: 530 | babel-runtime "^6.22.0" 531 | babel-types "^6.22.0" 532 | lodash "^4.2.0" 533 | 534 | babel-helper-remap-async-to-generator@^6.22.0: 535 | version "6.22.0" 536 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.22.0.tgz#2186ae73278ed03b8b15ced089609da981053383" 537 | dependencies: 538 | babel-helper-function-name "^6.22.0" 539 | babel-runtime "^6.22.0" 540 | babel-template "^6.22.0" 541 | babel-traverse "^6.22.0" 542 | babel-types "^6.22.0" 543 | 544 | babel-helper-replace-supers@^6.22.0, babel-helper-replace-supers@^6.23.0: 545 | version "6.23.0" 546 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz#eeaf8ad9b58ec4337ca94223bacdca1f8d9b4bfd" 547 | dependencies: 548 | babel-helper-optimise-call-expression "^6.23.0" 549 | babel-messages "^6.23.0" 550 | babel-runtime "^6.22.0" 551 | babel-template "^6.23.0" 552 | babel-traverse "^6.23.0" 553 | babel-types "^6.23.0" 554 | 555 | babel-helpers@^6.24.1: 556 | version "6.24.1" 557 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 558 | dependencies: 559 | babel-runtime "^6.22.0" 560 | babel-template "^6.24.1" 561 | 562 | babel-jest@^23.4.2: 563 | version "23.4.2" 564 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-23.4.2.tgz#f276de67798a5d68f2d6e87ff518c2f6e1609877" 565 | dependencies: 566 | babel-plugin-istanbul "^4.1.6" 567 | babel-preset-jest "^23.2.0" 568 | 569 | babel-messages@^6.23.0: 570 | version "6.23.0" 571 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 572 | dependencies: 573 | babel-runtime "^6.22.0" 574 | 575 | babel-plugin-check-es2015-constants@^6.22.0: 576 | version "6.22.0" 577 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 578 | dependencies: 579 | babel-runtime "^6.22.0" 580 | 581 | babel-plugin-istanbul@^4.1.6: 582 | version "4.1.6" 583 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" 584 | dependencies: 585 | babel-plugin-syntax-object-rest-spread "^6.13.0" 586 | find-up "^2.1.0" 587 | istanbul-lib-instrument "^1.10.1" 588 | test-exclude "^4.2.1" 589 | 590 | babel-plugin-jest-hoist@^23.2.0: 591 | version "23.2.0" 592 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.2.0.tgz#e61fae05a1ca8801aadee57a6d66b8cefaf44167" 593 | 594 | babel-plugin-syntax-async-functions@^6.8.0: 595 | version "6.13.0" 596 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 597 | 598 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 599 | version "6.13.0" 600 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 601 | 602 | babel-plugin-syntax-object-rest-spread@^6.13.0, babel-plugin-syntax-object-rest-spread@^6.8.0: 603 | version "6.13.0" 604 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 605 | 606 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 607 | version "6.22.0" 608 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 609 | 610 | babel-plugin-transform-async-to-generator@^6.22.0: 611 | version "6.22.0" 612 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.22.0.tgz#194b6938ec195ad36efc4c33a971acf00d8cd35e" 613 | dependencies: 614 | babel-helper-remap-async-to-generator "^6.22.0" 615 | babel-plugin-syntax-async-functions "^6.8.0" 616 | babel-runtime "^6.22.0" 617 | 618 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 619 | version "6.22.0" 620 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 621 | dependencies: 622 | babel-runtime "^6.22.0" 623 | 624 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 625 | version "6.22.0" 626 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 627 | dependencies: 628 | babel-runtime "^6.22.0" 629 | 630 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 631 | version "6.23.0" 632 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51" 633 | dependencies: 634 | babel-runtime "^6.22.0" 635 | babel-template "^6.23.0" 636 | babel-traverse "^6.23.0" 637 | babel-types "^6.23.0" 638 | lodash "^4.2.0" 639 | 640 | babel-plugin-transform-es2015-classes@^6.23.0: 641 | version "6.23.0" 642 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1" 643 | dependencies: 644 | babel-helper-define-map "^6.23.0" 645 | babel-helper-function-name "^6.23.0" 646 | babel-helper-optimise-call-expression "^6.23.0" 647 | babel-helper-replace-supers "^6.23.0" 648 | babel-messages "^6.23.0" 649 | babel-runtime "^6.22.0" 650 | babel-template "^6.23.0" 651 | babel-traverse "^6.23.0" 652 | babel-types "^6.23.0" 653 | 654 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 655 | version "6.22.0" 656 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" 657 | dependencies: 658 | babel-runtime "^6.22.0" 659 | babel-template "^6.22.0" 660 | 661 | babel-plugin-transform-es2015-destructuring@^6.23.0: 662 | version "6.23.0" 663 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 664 | dependencies: 665 | babel-runtime "^6.22.0" 666 | 667 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 668 | version "6.22.0" 669 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b" 670 | dependencies: 671 | babel-runtime "^6.22.0" 672 | babel-types "^6.22.0" 673 | 674 | babel-plugin-transform-es2015-for-of@^6.23.0: 675 | version "6.23.0" 676 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 677 | dependencies: 678 | babel-runtime "^6.22.0" 679 | 680 | babel-plugin-transform-es2015-function-name@^6.22.0: 681 | version "6.22.0" 682 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 683 | dependencies: 684 | babel-helper-function-name "^6.22.0" 685 | babel-runtime "^6.22.0" 686 | babel-types "^6.22.0" 687 | 688 | babel-plugin-transform-es2015-literals@^6.22.0: 689 | version "6.22.0" 690 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 691 | dependencies: 692 | babel-runtime "^6.22.0" 693 | 694 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.0: 695 | version "6.24.0" 696 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.0.tgz#a1911fb9b7ec7e05a43a63c5995007557bcf6a2e" 697 | dependencies: 698 | babel-plugin-transform-es2015-modules-commonjs "^6.24.0" 699 | babel-runtime "^6.22.0" 700 | babel-template "^6.22.0" 701 | 702 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.0: 703 | version "6.24.0" 704 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.0.tgz#e921aefb72c2cc26cb03d107626156413222134f" 705 | dependencies: 706 | babel-plugin-transform-strict-mode "^6.22.0" 707 | babel-runtime "^6.22.0" 708 | babel-template "^6.23.0" 709 | babel-types "^6.23.0" 710 | 711 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 712 | version "6.23.0" 713 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.23.0.tgz#ae3469227ffac39b0310d90fec73bfdc4f6317b0" 714 | dependencies: 715 | babel-helper-hoist-variables "^6.22.0" 716 | babel-runtime "^6.22.0" 717 | babel-template "^6.23.0" 718 | 719 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 720 | version "6.24.0" 721 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.0.tgz#fd5fa63521cae8d273927c3958afd7c067733450" 722 | dependencies: 723 | babel-plugin-transform-es2015-modules-amd "^6.24.0" 724 | babel-runtime "^6.22.0" 725 | babel-template "^6.23.0" 726 | 727 | babel-plugin-transform-es2015-object-super@^6.22.0: 728 | version "6.22.0" 729 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" 730 | dependencies: 731 | babel-helper-replace-supers "^6.22.0" 732 | babel-runtime "^6.22.0" 733 | 734 | babel-plugin-transform-es2015-parameters@^6.23.0: 735 | version "6.23.0" 736 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b" 737 | dependencies: 738 | babel-helper-call-delegate "^6.22.0" 739 | babel-helper-get-function-arity "^6.22.0" 740 | babel-runtime "^6.22.0" 741 | babel-template "^6.23.0" 742 | babel-traverse "^6.23.0" 743 | babel-types "^6.23.0" 744 | 745 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 746 | version "6.22.0" 747 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 748 | dependencies: 749 | babel-runtime "^6.22.0" 750 | babel-types "^6.22.0" 751 | 752 | babel-plugin-transform-es2015-spread@^6.22.0: 753 | version "6.22.0" 754 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 755 | dependencies: 756 | babel-runtime "^6.22.0" 757 | 758 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 759 | version "6.22.0" 760 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 761 | dependencies: 762 | babel-helper-regex "^6.22.0" 763 | babel-runtime "^6.22.0" 764 | babel-types "^6.22.0" 765 | 766 | babel-plugin-transform-es2015-template-literals@^6.22.0: 767 | version "6.22.0" 768 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 769 | dependencies: 770 | babel-runtime "^6.22.0" 771 | 772 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 773 | version "6.23.0" 774 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 775 | dependencies: 776 | babel-runtime "^6.22.0" 777 | 778 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 779 | version "6.22.0" 780 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 781 | dependencies: 782 | babel-helper-regex "^6.22.0" 783 | babel-runtime "^6.22.0" 784 | regexpu-core "^2.0.0" 785 | 786 | babel-plugin-transform-exponentiation-operator@^6.22.0: 787 | version "6.22.0" 788 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.22.0.tgz#d57c8335281918e54ef053118ce6eb108468084d" 789 | dependencies: 790 | babel-helper-builder-binary-assignment-operator-visitor "^6.22.0" 791 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 792 | babel-runtime "^6.22.0" 793 | 794 | babel-plugin-transform-object-rest-spread@^6.26.0: 795 | version "6.26.0" 796 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 797 | dependencies: 798 | babel-plugin-syntax-object-rest-spread "^6.8.0" 799 | babel-runtime "^6.26.0" 800 | 801 | babel-plugin-transform-regenerator@^6.22.0: 802 | version "6.22.0" 803 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" 804 | dependencies: 805 | regenerator-transform "0.9.8" 806 | 807 | babel-plugin-transform-strict-mode@^6.22.0: 808 | version "6.22.0" 809 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 810 | dependencies: 811 | babel-runtime "^6.22.0" 812 | babel-types "^6.22.0" 813 | 814 | babel-polyfill@^6.26.0: 815 | version "6.26.0" 816 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 817 | dependencies: 818 | babel-runtime "^6.26.0" 819 | core-js "^2.5.0" 820 | regenerator-runtime "^0.10.5" 821 | 822 | babel-preset-env@^1.7.0: 823 | version "1.7.0" 824 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a" 825 | dependencies: 826 | babel-plugin-check-es2015-constants "^6.22.0" 827 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 828 | babel-plugin-transform-async-to-generator "^6.22.0" 829 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 830 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 831 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 832 | babel-plugin-transform-es2015-classes "^6.23.0" 833 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 834 | babel-plugin-transform-es2015-destructuring "^6.23.0" 835 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 836 | babel-plugin-transform-es2015-for-of "^6.23.0" 837 | babel-plugin-transform-es2015-function-name "^6.22.0" 838 | babel-plugin-transform-es2015-literals "^6.22.0" 839 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 840 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 841 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 842 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 843 | babel-plugin-transform-es2015-object-super "^6.22.0" 844 | babel-plugin-transform-es2015-parameters "^6.23.0" 845 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 846 | babel-plugin-transform-es2015-spread "^6.22.0" 847 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 848 | babel-plugin-transform-es2015-template-literals "^6.22.0" 849 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 850 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 851 | babel-plugin-transform-exponentiation-operator "^6.22.0" 852 | babel-plugin-transform-regenerator "^6.22.0" 853 | browserslist "^3.2.6" 854 | invariant "^2.2.2" 855 | semver "^5.3.0" 856 | 857 | babel-preset-jest@^23.2.0: 858 | version "23.2.0" 859 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-23.2.0.tgz#8ec7a03a138f001a1a8fb1e8113652bf1a55da46" 860 | dependencies: 861 | babel-plugin-jest-hoist "^23.2.0" 862 | babel-plugin-syntax-object-rest-spread "^6.13.0" 863 | 864 | babel-register@^6.24.1: 865 | version "6.24.1" 866 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 867 | dependencies: 868 | babel-core "^6.24.1" 869 | babel-runtime "^6.22.0" 870 | core-js "^2.4.0" 871 | home-or-tmp "^2.0.0" 872 | lodash "^4.2.0" 873 | mkdirp "^0.5.1" 874 | source-map-support "^0.4.2" 875 | 876 | babel-register@^6.26.0: 877 | version "6.26.0" 878 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 879 | dependencies: 880 | babel-core "^6.26.0" 881 | babel-runtime "^6.26.0" 882 | core-js "^2.5.0" 883 | home-or-tmp "^2.0.0" 884 | lodash "^4.17.4" 885 | mkdirp "^0.5.1" 886 | source-map-support "^0.4.15" 887 | 888 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 889 | version "6.23.0" 890 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 891 | dependencies: 892 | core-js "^2.4.0" 893 | regenerator-runtime "^0.10.0" 894 | 895 | babel-runtime@^6.26.0: 896 | version "6.26.0" 897 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 898 | dependencies: 899 | core-js "^2.4.0" 900 | regenerator-runtime "^0.11.0" 901 | 902 | babel-template@^6.16.0, babel-template@^6.22.0, babel-template@^6.23.0, babel-template@^6.24.1: 903 | version "6.24.1" 904 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 905 | dependencies: 906 | babel-runtime "^6.22.0" 907 | babel-traverse "^6.24.1" 908 | babel-types "^6.24.1" 909 | babylon "^6.11.0" 910 | lodash "^4.2.0" 911 | 912 | babel-template@^6.26.0: 913 | version "6.26.0" 914 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 915 | dependencies: 916 | babel-runtime "^6.26.0" 917 | babel-traverse "^6.26.0" 918 | babel-types "^6.26.0" 919 | babylon "^6.18.0" 920 | lodash "^4.17.4" 921 | 922 | babel-traverse@^6.0.0, babel-traverse@^6.26.0: 923 | version "6.26.0" 924 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 925 | dependencies: 926 | babel-code-frame "^6.26.0" 927 | babel-messages "^6.23.0" 928 | babel-runtime "^6.26.0" 929 | babel-types "^6.26.0" 930 | babylon "^6.18.0" 931 | debug "^2.6.8" 932 | globals "^9.18.0" 933 | invariant "^2.2.2" 934 | lodash "^4.17.4" 935 | 936 | babel-traverse@^6.18.0, babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.24.1: 937 | version "6.24.1" 938 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 939 | dependencies: 940 | babel-code-frame "^6.22.0" 941 | babel-messages "^6.23.0" 942 | babel-runtime "^6.22.0" 943 | babel-types "^6.24.1" 944 | babylon "^6.15.0" 945 | debug "^2.2.0" 946 | globals "^9.0.0" 947 | invariant "^2.2.0" 948 | lodash "^4.2.0" 949 | 950 | babel-types@^6.0.0, babel-types@^6.26.0: 951 | version "6.26.0" 952 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 953 | dependencies: 954 | babel-runtime "^6.26.0" 955 | esutils "^2.0.2" 956 | lodash "^4.17.4" 957 | to-fast-properties "^1.0.3" 958 | 959 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.24.1: 960 | version "6.24.1" 961 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 962 | dependencies: 963 | babel-runtime "^6.22.0" 964 | esutils "^2.0.2" 965 | lodash "^4.2.0" 966 | to-fast-properties "^1.0.1" 967 | 968 | babel-types@^6.23.0: 969 | version "6.23.0" 970 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf" 971 | dependencies: 972 | babel-runtime "^6.22.0" 973 | esutils "^2.0.2" 974 | lodash "^4.2.0" 975 | to-fast-properties "^1.0.1" 976 | 977 | babylon@7.0.0-beta.44: 978 | version "7.0.0-beta.44" 979 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.44.tgz#89159e15e6e30c5096e22d738d8c0af8a0e8ca1d" 980 | 981 | babylon@^6.11.0, babylon@^6.15.0: 982 | version "6.17.0" 983 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.0.tgz#37da948878488b9c4e3c4038893fa3314b3fc932" 984 | 985 | babylon@^6.18.0: 986 | version "6.18.0" 987 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 988 | 989 | balanced-match@^0.4.1, balanced-match@^0.4.2: 990 | version "0.4.2" 991 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 992 | 993 | balanced-match@^1.0.0: 994 | version "1.0.0" 995 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 996 | 997 | base@^0.11.1: 998 | version "0.11.2" 999 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 1000 | dependencies: 1001 | cache-base "^1.0.1" 1002 | class-utils "^0.3.5" 1003 | component-emitter "^1.2.1" 1004 | define-property "^1.0.0" 1005 | isobject "^3.0.1" 1006 | mixin-deep "^1.2.0" 1007 | pascalcase "^0.1.1" 1008 | 1009 | bcrypt-pbkdf@^1.0.0: 1010 | version "1.0.2" 1011 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 1012 | dependencies: 1013 | tweetnacl "^0.14.3" 1014 | 1015 | binary-extensions@^1.0.0: 1016 | version "1.8.0" 1017 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 1018 | 1019 | block-stream@*: 1020 | version "0.0.9" 1021 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 1022 | dependencies: 1023 | inherits "~2.0.0" 1024 | 1025 | boom@2.x.x: 1026 | version "2.10.1" 1027 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 1028 | dependencies: 1029 | hoek "2.x.x" 1030 | 1031 | brace-expansion@^1.0.0: 1032 | version "1.1.6" 1033 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 1034 | dependencies: 1035 | balanced-match "^0.4.1" 1036 | concat-map "0.0.1" 1037 | 1038 | brace-expansion@^1.1.7: 1039 | version "1.1.11" 1040 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 1041 | dependencies: 1042 | balanced-match "^1.0.0" 1043 | concat-map "0.0.1" 1044 | 1045 | braces@^1.8.2: 1046 | version "1.8.5" 1047 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 1048 | dependencies: 1049 | expand-range "^1.8.1" 1050 | preserve "^0.2.0" 1051 | repeat-element "^1.1.2" 1052 | 1053 | braces@^2.3.1: 1054 | version "2.3.2" 1055 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 1056 | dependencies: 1057 | arr-flatten "^1.1.0" 1058 | array-unique "^0.3.2" 1059 | extend-shallow "^2.0.1" 1060 | fill-range "^4.0.0" 1061 | isobject "^3.0.1" 1062 | repeat-element "^1.1.2" 1063 | snapdragon "^0.8.1" 1064 | snapdragon-node "^2.0.1" 1065 | split-string "^3.0.2" 1066 | to-regex "^3.0.1" 1067 | 1068 | browser-process-hrtime@^0.1.2: 1069 | version "0.1.2" 1070 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e" 1071 | 1072 | browser-resolve@^1.11.3: 1073 | version "1.11.3" 1074 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" 1075 | dependencies: 1076 | resolve "1.1.7" 1077 | 1078 | browserslist@^3.2.6: 1079 | version "3.2.8" 1080 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6" 1081 | dependencies: 1082 | caniuse-lite "^1.0.30000844" 1083 | electron-to-chromium "^1.3.47" 1084 | 1085 | bser@^2.0.0: 1086 | version "2.0.0" 1087 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 1088 | dependencies: 1089 | node-int64 "^0.4.0" 1090 | 1091 | buffer-from@^1.0.0: 1092 | version "1.1.1" 1093 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 1094 | 1095 | buffer-shims@^1.0.0: 1096 | version "1.0.0" 1097 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 1098 | 1099 | builtin-modules@^1.0.0: 1100 | version "1.1.1" 1101 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 1102 | 1103 | cache-base@^1.0.1: 1104 | version "1.0.1" 1105 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 1106 | dependencies: 1107 | collection-visit "^1.0.0" 1108 | component-emitter "^1.2.1" 1109 | get-value "^2.0.6" 1110 | has-value "^1.0.0" 1111 | isobject "^3.0.1" 1112 | set-value "^2.0.0" 1113 | to-object-path "^0.3.0" 1114 | union-value "^1.0.0" 1115 | unset-value "^1.0.0" 1116 | 1117 | caller-path@^0.1.0: 1118 | version "0.1.0" 1119 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 1120 | dependencies: 1121 | callsites "^0.2.0" 1122 | 1123 | callsites@^0.2.0: 1124 | version "0.2.0" 1125 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 1126 | 1127 | callsites@^2.0.0: 1128 | version "2.0.0" 1129 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 1130 | 1131 | camelcase-keys@^2.0.0: 1132 | version "2.1.0" 1133 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 1134 | dependencies: 1135 | camelcase "^2.0.0" 1136 | map-obj "^1.0.0" 1137 | 1138 | camelcase@^1.0.2: 1139 | version "1.2.1" 1140 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 1141 | 1142 | camelcase@^2.0.0: 1143 | version "2.1.1" 1144 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 1145 | 1146 | camelcase@^4.1.0: 1147 | version "4.1.0" 1148 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 1149 | 1150 | caniuse-lite@^1.0.30000844: 1151 | version "1.0.30000874" 1152 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000874.tgz#a641b1f1c420d58d9b132920ef6ba87bbdcd2223" 1153 | 1154 | capture-exit@^1.2.0: 1155 | version "1.2.0" 1156 | resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f" 1157 | dependencies: 1158 | rsvp "^3.3.3" 1159 | 1160 | caseless@~0.12.0: 1161 | version "0.12.0" 1162 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1163 | 1164 | center-align@^0.1.1: 1165 | version "0.1.3" 1166 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1167 | dependencies: 1168 | align-text "^0.1.3" 1169 | lazy-cache "^1.0.3" 1170 | 1171 | chalk@^1.1.0, chalk@^1.1.3: 1172 | version "1.1.3" 1173 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1174 | dependencies: 1175 | ansi-styles "^2.2.1" 1176 | escape-string-regexp "^1.0.2" 1177 | has-ansi "^2.0.0" 1178 | strip-ansi "^3.0.0" 1179 | supports-color "^2.0.0" 1180 | 1181 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1: 1182 | version "2.4.1" 1183 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 1184 | dependencies: 1185 | ansi-styles "^3.2.1" 1186 | escape-string-regexp "^1.0.5" 1187 | supports-color "^5.3.0" 1188 | 1189 | chardet@^0.4.0: 1190 | version "0.4.2" 1191 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 1192 | 1193 | chokidar@^1.6.1: 1194 | version "1.6.1" 1195 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 1196 | dependencies: 1197 | anymatch "^1.3.0" 1198 | async-each "^1.0.0" 1199 | glob-parent "^2.0.0" 1200 | inherits "^2.0.1" 1201 | is-binary-path "^1.0.0" 1202 | is-glob "^2.0.0" 1203 | path-is-absolute "^1.0.0" 1204 | readdirp "^2.0.0" 1205 | optionalDependencies: 1206 | fsevents "^1.0.0" 1207 | 1208 | chownr@^1.0.1: 1209 | version "1.0.1" 1210 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 1211 | 1212 | ci-info@^1.0.0: 1213 | version "1.0.0" 1214 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 1215 | 1216 | circular-json@^0.3.1: 1217 | version "0.3.1" 1218 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 1219 | 1220 | class-utils@^0.3.5: 1221 | version "0.3.6" 1222 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 1223 | dependencies: 1224 | arr-union "^3.1.0" 1225 | define-property "^0.2.5" 1226 | isobject "^3.0.0" 1227 | static-extend "^0.1.1" 1228 | 1229 | cli-cursor@^2.1.0: 1230 | version "2.1.0" 1231 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1232 | dependencies: 1233 | restore-cursor "^2.0.0" 1234 | 1235 | cli-width@^2.0.0: 1236 | version "2.1.0" 1237 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 1238 | 1239 | cliui@^2.1.0: 1240 | version "2.1.0" 1241 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1242 | dependencies: 1243 | center-align "^0.1.1" 1244 | right-align "^0.1.1" 1245 | wordwrap "0.0.2" 1246 | 1247 | cliui@^4.0.0: 1248 | version "4.1.0" 1249 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 1250 | dependencies: 1251 | string-width "^2.1.1" 1252 | strip-ansi "^4.0.0" 1253 | wrap-ansi "^2.0.0" 1254 | 1255 | co@^4.6.0: 1256 | version "4.6.0" 1257 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1258 | 1259 | code-point-at@^1.0.0: 1260 | version "1.1.0" 1261 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1262 | 1263 | collection-visit@^1.0.0: 1264 | version "1.0.0" 1265 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1266 | dependencies: 1267 | map-visit "^1.0.0" 1268 | object-visit "^1.0.0" 1269 | 1270 | color-convert@^1.9.0: 1271 | version "1.9.2" 1272 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147" 1273 | dependencies: 1274 | color-name "1.1.1" 1275 | 1276 | color-name@1.1.1: 1277 | version "1.1.1" 1278 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" 1279 | 1280 | combined-stream@1.0.6, combined-stream@~1.0.6: 1281 | version "1.0.6" 1282 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 1283 | dependencies: 1284 | delayed-stream "~1.0.0" 1285 | 1286 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1287 | version "1.0.5" 1288 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1289 | dependencies: 1290 | delayed-stream "~1.0.0" 1291 | 1292 | commander@^2.11.0: 1293 | version "2.17.1" 1294 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" 1295 | 1296 | compare-versions@^3.1.0: 1297 | version "3.3.0" 1298 | resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.3.0.tgz#af93ea705a96943f622ab309578b9b90586f39c3" 1299 | 1300 | component-emitter@^1.2.1: 1301 | version "1.2.1" 1302 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1303 | 1304 | concat-map@0.0.1: 1305 | version "0.0.1" 1306 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1307 | 1308 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1309 | version "1.1.0" 1310 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1311 | 1312 | contains-path@^0.1.0: 1313 | version "0.1.0" 1314 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1315 | 1316 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 1317 | version "1.5.0" 1318 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1319 | 1320 | convert-source-map@^1.5.0, convert-source-map@^1.5.1: 1321 | version "1.5.1" 1322 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1323 | 1324 | copy-descriptor@^0.1.0: 1325 | version "0.1.1" 1326 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1327 | 1328 | core-js@^2.4.0: 1329 | version "2.4.1" 1330 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1331 | 1332 | core-js@^2.5.0: 1333 | version "2.5.7" 1334 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 1335 | 1336 | core-util-is@~1.0.0: 1337 | version "1.0.2" 1338 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1339 | 1340 | coveralls@^3.0.2: 1341 | version "3.0.2" 1342 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-3.0.2.tgz#f5a0bcd90ca4e64e088b710fa8dda640aea4884f" 1343 | dependencies: 1344 | growl "~> 1.10.0" 1345 | js-yaml "^3.11.0" 1346 | lcov-parse "^0.0.10" 1347 | log-driver "^1.2.7" 1348 | minimist "^1.2.0" 1349 | request "^2.85.0" 1350 | 1351 | cross-spawn@^5.0.1: 1352 | version "5.1.0" 1353 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1354 | dependencies: 1355 | lru-cache "^4.0.1" 1356 | shebang-command "^1.2.0" 1357 | which "^1.2.9" 1358 | 1359 | cross-spawn@^6.0.5: 1360 | version "6.0.5" 1361 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 1362 | dependencies: 1363 | nice-try "^1.0.4" 1364 | path-key "^2.0.1" 1365 | semver "^5.5.0" 1366 | shebang-command "^1.2.0" 1367 | which "^1.2.9" 1368 | 1369 | cryptiles@2.x.x: 1370 | version "2.0.5" 1371 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1372 | dependencies: 1373 | boom "2.x.x" 1374 | 1375 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1376 | version "0.3.2" 1377 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1378 | 1379 | cssstyle@^1.0.0: 1380 | version "1.0.0" 1381 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.0.0.tgz#79b16d51ec5591faec60e688891f15d2a5705129" 1382 | dependencies: 1383 | cssom "0.3.x" 1384 | 1385 | currently-unhandled@^0.4.1: 1386 | version "0.4.1" 1387 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1388 | dependencies: 1389 | array-find-index "^1.0.1" 1390 | 1391 | dashdash@^1.12.0: 1392 | version "1.14.1" 1393 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1394 | dependencies: 1395 | assert-plus "^1.0.0" 1396 | 1397 | data-urls@^1.0.0: 1398 | version "1.0.0" 1399 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.0.0.tgz#24802de4e81c298ea8a9388bb0d8e461c774684f" 1400 | dependencies: 1401 | abab "^1.0.4" 1402 | whatwg-mimetype "^2.0.0" 1403 | whatwg-url "^6.4.0" 1404 | 1405 | debug@^2.1.1, debug@^2.2.0: 1406 | version "2.6.3" 1407 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" 1408 | dependencies: 1409 | ms "0.7.2" 1410 | 1411 | debug@^2.1.2, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 1412 | version "2.6.9" 1413 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1414 | dependencies: 1415 | ms "2.0.0" 1416 | 1417 | debug@^3.1.0: 1418 | version "3.1.0" 1419 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1420 | dependencies: 1421 | ms "2.0.0" 1422 | 1423 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 1424 | version "1.2.0" 1425 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1426 | 1427 | decode-uri-component@^0.2.0: 1428 | version "0.2.0" 1429 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1430 | 1431 | deep-extend@^0.6.0: 1432 | version "0.6.0" 1433 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1434 | 1435 | deep-extend@~0.4.0: 1436 | version "0.4.1" 1437 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1438 | 1439 | deep-is@~0.1.3: 1440 | version "0.1.3" 1441 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1442 | 1443 | default-require-extensions@^2.0.0: 1444 | version "2.0.0" 1445 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-2.0.0.tgz#f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7" 1446 | dependencies: 1447 | strip-bom "^3.0.0" 1448 | 1449 | define-properties@^1.1.2: 1450 | version "1.1.2" 1451 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1452 | dependencies: 1453 | foreach "^2.0.5" 1454 | object-keys "^1.0.8" 1455 | 1456 | define-property@^0.2.5: 1457 | version "0.2.5" 1458 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1459 | dependencies: 1460 | is-descriptor "^0.1.0" 1461 | 1462 | define-property@^1.0.0: 1463 | version "1.0.0" 1464 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1465 | dependencies: 1466 | is-descriptor "^1.0.0" 1467 | 1468 | define-property@^2.0.2: 1469 | version "2.0.2" 1470 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1471 | dependencies: 1472 | is-descriptor "^1.0.2" 1473 | isobject "^3.0.1" 1474 | 1475 | del@^2.0.2: 1476 | version "2.2.2" 1477 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1478 | dependencies: 1479 | globby "^5.0.0" 1480 | is-path-cwd "^1.0.0" 1481 | is-path-in-cwd "^1.0.0" 1482 | object-assign "^4.0.1" 1483 | pify "^2.0.0" 1484 | pinkie-promise "^2.0.0" 1485 | rimraf "^2.2.8" 1486 | 1487 | delayed-stream@~1.0.0: 1488 | version "1.0.0" 1489 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1490 | 1491 | delegates@^1.0.0: 1492 | version "1.0.0" 1493 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1494 | 1495 | detect-indent@^4.0.0: 1496 | version "4.0.0" 1497 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1498 | dependencies: 1499 | repeating "^2.0.0" 1500 | 1501 | detect-libc@^1.0.2: 1502 | version "1.0.3" 1503 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1504 | 1505 | detect-newline@^2.1.0: 1506 | version "2.1.0" 1507 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 1508 | 1509 | diff@^3.2.0: 1510 | version "3.2.0" 1511 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1512 | 1513 | doctrine@1.5.0: 1514 | version "1.5.0" 1515 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1516 | dependencies: 1517 | esutils "^2.0.2" 1518 | isarray "^1.0.0" 1519 | 1520 | doctrine@^2.1.0: 1521 | version "2.1.0" 1522 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 1523 | dependencies: 1524 | esutils "^2.0.2" 1525 | 1526 | domexception@^1.0.1: 1527 | version "1.0.1" 1528 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" 1529 | dependencies: 1530 | webidl-conversions "^4.0.2" 1531 | 1532 | ecc-jsbn@~0.1.1: 1533 | version "0.1.2" 1534 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 1535 | dependencies: 1536 | jsbn "~0.1.0" 1537 | safer-buffer "^2.1.0" 1538 | 1539 | electron-to-chromium@^1.3.47: 1540 | version "1.3.57" 1541 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.57.tgz#61b2446f16af26fb8873210007a7637ad644c82d" 1542 | 1543 | error-ex@^1.2.0: 1544 | version "1.3.1" 1545 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1546 | dependencies: 1547 | is-arrayish "^0.2.1" 1548 | 1549 | es-abstract@^1.10.0, es-abstract@^1.5.1: 1550 | version "1.12.0" 1551 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" 1552 | dependencies: 1553 | es-to-primitive "^1.1.1" 1554 | function-bind "^1.1.1" 1555 | has "^1.0.1" 1556 | is-callable "^1.1.3" 1557 | is-regex "^1.0.4" 1558 | 1559 | es-to-primitive@^1.1.1: 1560 | version "1.1.1" 1561 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1562 | dependencies: 1563 | is-callable "^1.1.1" 1564 | is-date-object "^1.0.1" 1565 | is-symbol "^1.0.1" 1566 | 1567 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1568 | version "1.0.5" 1569 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1570 | 1571 | escodegen@^1.9.1: 1572 | version "1.11.0" 1573 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.0.tgz#b27a9389481d5bfd5bec76f7bb1eb3f8f4556589" 1574 | dependencies: 1575 | esprima "^3.1.3" 1576 | estraverse "^4.2.0" 1577 | esutils "^2.0.2" 1578 | optionator "^0.8.1" 1579 | optionalDependencies: 1580 | source-map "~0.6.1" 1581 | 1582 | eslint-config-standard@^11.0.0: 1583 | version "11.0.0" 1584 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-11.0.0.tgz#87ee0d3c9d95382dc761958cbb23da9eea31e0ba" 1585 | 1586 | eslint-import-resolver-node@^0.3.1: 1587 | version "0.3.2" 1588 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" 1589 | dependencies: 1590 | debug "^2.6.9" 1591 | resolve "^1.5.0" 1592 | 1593 | eslint-module-utils@^2.2.0: 1594 | version "2.2.0" 1595 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz#b270362cd88b1a48ad308976ce7fa54e98411746" 1596 | dependencies: 1597 | debug "^2.6.8" 1598 | pkg-dir "^1.0.0" 1599 | 1600 | eslint-plugin-es@^1.3.1: 1601 | version "1.3.1" 1602 | resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-1.3.1.tgz#5acb2565db4434803d1d46a9b4cbc94b345bd028" 1603 | dependencies: 1604 | eslint-utils "^1.3.0" 1605 | regexpp "^2.0.0" 1606 | 1607 | eslint-plugin-import@^2.13.0: 1608 | version "2.13.0" 1609 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.13.0.tgz#df24f241175e312d91662dc91ca84064caec14ed" 1610 | dependencies: 1611 | contains-path "^0.1.0" 1612 | debug "^2.6.8" 1613 | doctrine "1.5.0" 1614 | eslint-import-resolver-node "^0.3.1" 1615 | eslint-module-utils "^2.2.0" 1616 | has "^1.0.1" 1617 | lodash "^4.17.4" 1618 | minimatch "^3.0.3" 1619 | read-pkg-up "^2.0.0" 1620 | resolve "^1.6.0" 1621 | 1622 | eslint-plugin-node@^7.0.1: 1623 | version "7.0.1" 1624 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-7.0.1.tgz#a6e054e50199b2edd85518b89b4e7b323c9f36db" 1625 | dependencies: 1626 | eslint-plugin-es "^1.3.1" 1627 | eslint-utils "^1.3.1" 1628 | ignore "^4.0.2" 1629 | minimatch "^3.0.4" 1630 | resolve "^1.8.1" 1631 | semver "^5.5.0" 1632 | 1633 | eslint-plugin-promise@^3.8.0: 1634 | version "3.8.0" 1635 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.8.0.tgz#65ebf27a845e3c1e9d6f6a5622ddd3801694b621" 1636 | 1637 | eslint-plugin-standard@^3.1.0: 1638 | version "3.1.0" 1639 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.1.0.tgz#2a9e21259ba4c47c02d53b2d0c9135d4b1022d47" 1640 | 1641 | eslint-scope@3.7.1: 1642 | version "3.7.1" 1643 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1644 | dependencies: 1645 | esrecurse "^4.1.0" 1646 | estraverse "^4.1.1" 1647 | 1648 | eslint-scope@^4.0.0: 1649 | version "4.0.0" 1650 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.0.tgz#50bf3071e9338bcdc43331794a0cb533f0136172" 1651 | dependencies: 1652 | esrecurse "^4.1.0" 1653 | estraverse "^4.1.1" 1654 | 1655 | eslint-utils@^1.3.0, eslint-utils@^1.3.1: 1656 | version "1.3.1" 1657 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512" 1658 | 1659 | eslint-visitor-keys@^1.0.0: 1660 | version "1.0.0" 1661 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 1662 | 1663 | eslint@^5.3.0: 1664 | version "5.3.0" 1665 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.3.0.tgz#53695aca5213968aacdf970ccb231e42a2b285f8" 1666 | dependencies: 1667 | ajv "^6.5.0" 1668 | babel-code-frame "^6.26.0" 1669 | chalk "^2.1.0" 1670 | cross-spawn "^6.0.5" 1671 | debug "^3.1.0" 1672 | doctrine "^2.1.0" 1673 | eslint-scope "^4.0.0" 1674 | eslint-utils "^1.3.1" 1675 | eslint-visitor-keys "^1.0.0" 1676 | espree "^4.0.0" 1677 | esquery "^1.0.1" 1678 | esutils "^2.0.2" 1679 | file-entry-cache "^2.0.0" 1680 | functional-red-black-tree "^1.0.1" 1681 | glob "^7.1.2" 1682 | globals "^11.7.0" 1683 | ignore "^4.0.2" 1684 | imurmurhash "^0.1.4" 1685 | inquirer "^5.2.0" 1686 | is-resolvable "^1.1.0" 1687 | js-yaml "^3.11.0" 1688 | json-stable-stringify-without-jsonify "^1.0.1" 1689 | levn "^0.3.0" 1690 | lodash "^4.17.5" 1691 | minimatch "^3.0.4" 1692 | mkdirp "^0.5.1" 1693 | natural-compare "^1.4.0" 1694 | optionator "^0.8.2" 1695 | path-is-inside "^1.0.2" 1696 | pluralize "^7.0.0" 1697 | progress "^2.0.0" 1698 | regexpp "^2.0.0" 1699 | require-uncached "^1.0.3" 1700 | semver "^5.5.0" 1701 | string.prototype.matchall "^2.0.0" 1702 | strip-ansi "^4.0.0" 1703 | strip-json-comments "^2.0.1" 1704 | table "^4.0.3" 1705 | text-table "^0.2.0" 1706 | 1707 | espree@^4.0.0: 1708 | version "4.0.0" 1709 | resolved "https://registry.yarnpkg.com/espree/-/espree-4.0.0.tgz#253998f20a0f82db5d866385799d912a83a36634" 1710 | dependencies: 1711 | acorn "^5.6.0" 1712 | acorn-jsx "^4.1.1" 1713 | 1714 | esprima@^3.1.1, esprima@^3.1.3: 1715 | version "3.1.3" 1716 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1717 | 1718 | esprima@^4.0.0: 1719 | version "4.0.1" 1720 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1721 | 1722 | esquery@^1.0.1: 1723 | version "1.0.1" 1724 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" 1725 | dependencies: 1726 | estraverse "^4.0.0" 1727 | 1728 | esrecurse@^4.1.0: 1729 | version "4.1.0" 1730 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1731 | dependencies: 1732 | estraverse "~4.1.0" 1733 | object-assign "^4.0.1" 1734 | 1735 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1736 | version "4.2.0" 1737 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1738 | 1739 | estraverse@~4.1.0: 1740 | version "4.1.1" 1741 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1742 | 1743 | esutils@^2.0.2: 1744 | version "2.0.2" 1745 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1746 | 1747 | exec-sh@^0.2.0: 1748 | version "0.2.0" 1749 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1750 | dependencies: 1751 | merge "^1.1.3" 1752 | 1753 | execa@^0.7.0: 1754 | version "0.7.0" 1755 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1756 | dependencies: 1757 | cross-spawn "^5.0.1" 1758 | get-stream "^3.0.0" 1759 | is-stream "^1.1.0" 1760 | npm-run-path "^2.0.0" 1761 | p-finally "^1.0.0" 1762 | signal-exit "^3.0.0" 1763 | strip-eof "^1.0.0" 1764 | 1765 | exit@^0.1.2: 1766 | version "0.1.2" 1767 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1768 | 1769 | expand-brackets@^0.1.4: 1770 | version "0.1.5" 1771 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1772 | dependencies: 1773 | is-posix-bracket "^0.1.0" 1774 | 1775 | expand-brackets@^2.1.4: 1776 | version "2.1.4" 1777 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1778 | dependencies: 1779 | debug "^2.3.3" 1780 | define-property "^0.2.5" 1781 | extend-shallow "^2.0.1" 1782 | posix-character-classes "^0.1.0" 1783 | regex-not "^1.0.0" 1784 | snapdragon "^0.8.1" 1785 | to-regex "^3.0.1" 1786 | 1787 | expand-range@^1.8.1: 1788 | version "1.8.2" 1789 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1790 | dependencies: 1791 | fill-range "^2.1.0" 1792 | 1793 | expect@^23.5.0: 1794 | version "23.5.0" 1795 | resolved "https://registry.yarnpkg.com/expect/-/expect-23.5.0.tgz#18999a0eef8f8acf99023fde766d9c323c2562ed" 1796 | dependencies: 1797 | ansi-styles "^3.2.0" 1798 | jest-diff "^23.5.0" 1799 | jest-get-type "^22.1.0" 1800 | jest-matcher-utils "^23.5.0" 1801 | jest-message-util "^23.4.0" 1802 | jest-regex-util "^23.3.0" 1803 | 1804 | extend-shallow@^2.0.1: 1805 | version "2.0.1" 1806 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1807 | dependencies: 1808 | is-extendable "^0.1.0" 1809 | 1810 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1811 | version "3.0.2" 1812 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1813 | dependencies: 1814 | assign-symbols "^1.0.0" 1815 | is-extendable "^1.0.1" 1816 | 1817 | extend@~3.0.0: 1818 | version "3.0.0" 1819 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1820 | 1821 | extend@~3.0.2: 1822 | version "3.0.2" 1823 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1824 | 1825 | external-editor@^2.1.0: 1826 | version "2.2.0" 1827 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 1828 | dependencies: 1829 | chardet "^0.4.0" 1830 | iconv-lite "^0.4.17" 1831 | tmp "^0.0.33" 1832 | 1833 | extglob@^0.3.1: 1834 | version "0.3.2" 1835 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1836 | dependencies: 1837 | is-extglob "^1.0.0" 1838 | 1839 | extglob@^2.0.4: 1840 | version "2.0.4" 1841 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1842 | dependencies: 1843 | array-unique "^0.3.2" 1844 | define-property "^1.0.0" 1845 | expand-brackets "^2.1.4" 1846 | extend-shallow "^2.0.1" 1847 | fragment-cache "^0.2.1" 1848 | regex-not "^1.0.0" 1849 | snapdragon "^0.8.1" 1850 | to-regex "^3.0.1" 1851 | 1852 | extsprintf@1.0.2: 1853 | version "1.0.2" 1854 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1855 | 1856 | fast-deep-equal@^1.0.0: 1857 | version "1.1.0" 1858 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1859 | 1860 | fast-deep-equal@^2.0.1: 1861 | version "2.0.1" 1862 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 1863 | 1864 | fast-json-stable-stringify@^2.0.0: 1865 | version "2.0.0" 1866 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1867 | 1868 | fast-levenshtein@~2.0.4: 1869 | version "2.0.6" 1870 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1871 | 1872 | fb-watchman@^2.0.0: 1873 | version "2.0.0" 1874 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1875 | dependencies: 1876 | bser "^2.0.0" 1877 | 1878 | figures@^2.0.0: 1879 | version "2.0.0" 1880 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1881 | dependencies: 1882 | escape-string-regexp "^1.0.5" 1883 | 1884 | file-entry-cache@^2.0.0: 1885 | version "2.0.0" 1886 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1887 | dependencies: 1888 | flat-cache "^1.2.1" 1889 | object-assign "^4.0.1" 1890 | 1891 | file-type@^3.6.0: 1892 | version "3.9.0" 1893 | resolved "https://registry.yarnpkg.com/file-type/-/file-type-3.9.0.tgz#257a078384d1db8087bc449d107d52a52672b9e9" 1894 | 1895 | filename-regex@^2.0.0: 1896 | version "2.0.0" 1897 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1898 | 1899 | fileset@^2.0.2: 1900 | version "2.0.3" 1901 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1902 | dependencies: 1903 | glob "^7.0.3" 1904 | minimatch "^3.0.3" 1905 | 1906 | fill-range@^2.1.0: 1907 | version "2.2.3" 1908 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1909 | dependencies: 1910 | is-number "^2.1.0" 1911 | isobject "^2.0.0" 1912 | randomatic "^1.1.3" 1913 | repeat-element "^1.1.2" 1914 | repeat-string "^1.5.2" 1915 | 1916 | fill-range@^4.0.0: 1917 | version "4.0.0" 1918 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1919 | dependencies: 1920 | extend-shallow "^2.0.1" 1921 | is-number "^3.0.0" 1922 | repeat-string "^1.6.1" 1923 | to-regex-range "^2.1.0" 1924 | 1925 | find-up@^1.0.0: 1926 | version "1.1.2" 1927 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1928 | dependencies: 1929 | path-exists "^2.0.0" 1930 | pinkie-promise "^2.0.0" 1931 | 1932 | find-up@^2.0.0, find-up@^2.1.0: 1933 | version "2.1.0" 1934 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1935 | dependencies: 1936 | locate-path "^2.0.0" 1937 | 1938 | flat-cache@^1.2.1: 1939 | version "1.2.2" 1940 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1941 | dependencies: 1942 | circular-json "^0.3.1" 1943 | del "^2.0.2" 1944 | graceful-fs "^4.1.2" 1945 | write "^0.2.1" 1946 | 1947 | for-in@^1.0.1, for-in@^1.0.2: 1948 | version "1.0.2" 1949 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1950 | 1951 | for-own@^0.1.4: 1952 | version "0.1.5" 1953 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1954 | dependencies: 1955 | for-in "^1.0.1" 1956 | 1957 | foreach@^2.0.5: 1958 | version "2.0.5" 1959 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1960 | 1961 | forever-agent@~0.6.1: 1962 | version "0.6.1" 1963 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1964 | 1965 | form-data@~2.1.1: 1966 | version "2.1.2" 1967 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1968 | dependencies: 1969 | asynckit "^0.4.0" 1970 | combined-stream "^1.0.5" 1971 | mime-types "^2.1.12" 1972 | 1973 | form-data@~2.3.2: 1974 | version "2.3.2" 1975 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 1976 | dependencies: 1977 | asynckit "^0.4.0" 1978 | combined-stream "1.0.6" 1979 | mime-types "^2.1.12" 1980 | 1981 | fragment-cache@^0.2.1: 1982 | version "0.2.1" 1983 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1984 | dependencies: 1985 | map-cache "^0.2.2" 1986 | 1987 | fs-minipass@^1.2.5: 1988 | version "1.2.5" 1989 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1990 | dependencies: 1991 | minipass "^2.2.1" 1992 | 1993 | fs-readdir-recursive@^1.0.0: 1994 | version "1.0.0" 1995 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1996 | 1997 | fs.realpath@^1.0.0: 1998 | version "1.0.0" 1999 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 2000 | 2001 | fsevents@^1.0.0: 2002 | version "1.1.1" 2003 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 2004 | dependencies: 2005 | nan "^2.3.0" 2006 | node-pre-gyp "^0.6.29" 2007 | 2008 | fsevents@^1.2.3: 2009 | version "1.2.4" 2010 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 2011 | dependencies: 2012 | nan "^2.9.2" 2013 | node-pre-gyp "^0.10.0" 2014 | 2015 | fstream-ignore@^1.0.5: 2016 | version "1.0.5" 2017 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 2018 | dependencies: 2019 | fstream "^1.0.0" 2020 | inherits "2" 2021 | minimatch "^3.0.0" 2022 | 2023 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 2024 | version "1.0.11" 2025 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 2026 | dependencies: 2027 | graceful-fs "^4.1.2" 2028 | inherits "~2.0.0" 2029 | mkdirp ">=0.5 0" 2030 | rimraf "2" 2031 | 2032 | function-bind@^1.0.2: 2033 | version "1.1.0" 2034 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 2035 | 2036 | function-bind@^1.1.1: 2037 | version "1.1.1" 2038 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 2039 | 2040 | functional-red-black-tree@^1.0.1: 2041 | version "1.0.1" 2042 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 2043 | 2044 | gauge@~2.7.1: 2045 | version "2.7.3" 2046 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 2047 | dependencies: 2048 | aproba "^1.0.3" 2049 | console-control-strings "^1.0.0" 2050 | has-unicode "^2.0.0" 2051 | object-assign "^4.1.0" 2052 | signal-exit "^3.0.0" 2053 | string-width "^1.0.1" 2054 | strip-ansi "^3.0.1" 2055 | wide-align "^1.1.0" 2056 | 2057 | get-caller-file@^1.0.1: 2058 | version "1.0.2" 2059 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 2060 | 2061 | get-stdin@^4.0.1: 2062 | version "4.0.1" 2063 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 2064 | 2065 | get-stdin@^5.0.1: 2066 | version "5.0.1" 2067 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 2068 | 2069 | get-stream@^3.0.0: 2070 | version "3.0.0" 2071 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 2072 | 2073 | get-value@^2.0.3, get-value@^2.0.6: 2074 | version "2.0.6" 2075 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 2076 | 2077 | getpass@^0.1.1: 2078 | version "0.1.7" 2079 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 2080 | dependencies: 2081 | assert-plus "^1.0.0" 2082 | 2083 | glob-base@^0.3.0: 2084 | version "0.3.0" 2085 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 2086 | dependencies: 2087 | glob-parent "^2.0.0" 2088 | is-glob "^2.0.0" 2089 | 2090 | glob-parent@^2.0.0: 2091 | version "2.0.0" 2092 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 2093 | dependencies: 2094 | is-glob "^2.0.0" 2095 | 2096 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 2097 | version "7.1.1" 2098 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 2099 | dependencies: 2100 | fs.realpath "^1.0.0" 2101 | inflight "^1.0.4" 2102 | inherits "2" 2103 | minimatch "^3.0.2" 2104 | once "^1.3.0" 2105 | path-is-absolute "^1.0.0" 2106 | 2107 | glob@^7.1.2: 2108 | version "7.1.2" 2109 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 2110 | dependencies: 2111 | fs.realpath "^1.0.0" 2112 | inflight "^1.0.4" 2113 | inherits "2" 2114 | minimatch "^3.0.4" 2115 | once "^1.3.0" 2116 | path-is-absolute "^1.0.0" 2117 | 2118 | globals@^11.1.0, globals@^11.7.0: 2119 | version "11.7.0" 2120 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.7.0.tgz#a583faa43055b1aca771914bf68258e2fc125673" 2121 | 2122 | globals@^9.0.0: 2123 | version "9.17.0" 2124 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 2125 | 2126 | globals@^9.18.0: 2127 | version "9.18.0" 2128 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 2129 | 2130 | globby@^5.0.0: 2131 | version "5.0.0" 2132 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 2133 | dependencies: 2134 | array-union "^1.0.1" 2135 | arrify "^1.0.0" 2136 | glob "^7.0.3" 2137 | object-assign "^4.0.1" 2138 | pify "^2.0.0" 2139 | pinkie-promise "^2.0.0" 2140 | 2141 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 2142 | version "4.1.11" 2143 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 2144 | 2145 | "growl@~> 1.10.0": 2146 | version "1.10.5" 2147 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" 2148 | 2149 | growly@^1.3.0: 2150 | version "1.3.0" 2151 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 2152 | 2153 | handlebars@^4.0.3: 2154 | version "4.0.6" 2155 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 2156 | dependencies: 2157 | async "^1.4.0" 2158 | optimist "^0.6.1" 2159 | source-map "^0.4.4" 2160 | optionalDependencies: 2161 | uglify-js "^2.6" 2162 | 2163 | har-schema@^1.0.5: 2164 | version "1.0.5" 2165 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 2166 | 2167 | har-schema@^2.0.0: 2168 | version "2.0.0" 2169 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 2170 | 2171 | har-validator@~4.2.1: 2172 | version "4.2.1" 2173 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 2174 | dependencies: 2175 | ajv "^4.9.1" 2176 | har-schema "^1.0.5" 2177 | 2178 | har-validator@~5.1.0: 2179 | version "5.1.0" 2180 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.0.tgz#44657f5688a22cfd4b72486e81b3a3fb11742c29" 2181 | dependencies: 2182 | ajv "^5.3.0" 2183 | har-schema "^2.0.0" 2184 | 2185 | has-ansi@^2.0.0: 2186 | version "2.0.0" 2187 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 2188 | dependencies: 2189 | ansi-regex "^2.0.0" 2190 | 2191 | has-flag@^1.0.0: 2192 | version "1.0.0" 2193 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 2194 | 2195 | has-flag@^3.0.0: 2196 | version "3.0.0" 2197 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 2198 | 2199 | has-symbols@^1.0.0: 2200 | version "1.0.0" 2201 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 2202 | 2203 | has-unicode@^2.0.0: 2204 | version "2.0.1" 2205 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 2206 | 2207 | has-value@^0.3.1: 2208 | version "0.3.1" 2209 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 2210 | dependencies: 2211 | get-value "^2.0.3" 2212 | has-values "^0.1.4" 2213 | isobject "^2.0.0" 2214 | 2215 | has-value@^1.0.0: 2216 | version "1.0.0" 2217 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 2218 | dependencies: 2219 | get-value "^2.0.6" 2220 | has-values "^1.0.0" 2221 | isobject "^3.0.0" 2222 | 2223 | has-values@^0.1.4: 2224 | version "0.1.4" 2225 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 2226 | 2227 | has-values@^1.0.0: 2228 | version "1.0.0" 2229 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 2230 | dependencies: 2231 | is-number "^3.0.0" 2232 | kind-of "^4.0.0" 2233 | 2234 | has@^1.0.1: 2235 | version "1.0.1" 2236 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 2237 | dependencies: 2238 | function-bind "^1.0.2" 2239 | 2240 | hawk@~3.1.3: 2241 | version "3.1.3" 2242 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 2243 | dependencies: 2244 | boom "2.x.x" 2245 | cryptiles "2.x.x" 2246 | hoek "2.x.x" 2247 | sntp "1.x.x" 2248 | 2249 | hoek@2.x.x: 2250 | version "2.16.3" 2251 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2252 | 2253 | home-or-tmp@^2.0.0: 2254 | version "2.0.0" 2255 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2256 | dependencies: 2257 | os-homedir "^1.0.0" 2258 | os-tmpdir "^1.0.1" 2259 | 2260 | hosted-git-info@^2.1.4: 2261 | version "2.4.1" 2262 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.1.tgz#4b0445e41c004a8bd1337773a4ff790ca40318c8" 2263 | 2264 | html-encoding-sniffer@^1.0.2: 2265 | version "1.0.2" 2266 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 2267 | dependencies: 2268 | whatwg-encoding "^1.0.1" 2269 | 2270 | http-signature@~1.1.0: 2271 | version "1.1.1" 2272 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2273 | dependencies: 2274 | assert-plus "^0.2.0" 2275 | jsprim "^1.2.2" 2276 | sshpk "^1.7.0" 2277 | 2278 | http-signature@~1.2.0: 2279 | version "1.2.0" 2280 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 2281 | dependencies: 2282 | assert-plus "^1.0.0" 2283 | jsprim "^1.2.2" 2284 | sshpk "^1.7.0" 2285 | 2286 | iconv-lite@0.4.13: 2287 | version "0.4.13" 2288 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 2289 | 2290 | iconv-lite@0.4.19: 2291 | version "0.4.19" 2292 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 2293 | 2294 | iconv-lite@^0.4.17, iconv-lite@^0.4.4: 2295 | version "0.4.23" 2296 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 2297 | dependencies: 2298 | safer-buffer ">= 2.1.2 < 3" 2299 | 2300 | ignore-walk@^3.0.1: 2301 | version "3.0.1" 2302 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 2303 | dependencies: 2304 | minimatch "^3.0.4" 2305 | 2306 | ignore@^4.0.2: 2307 | version "4.0.6" 2308 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 2309 | 2310 | import-local@^1.0.0: 2311 | version "1.0.0" 2312 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc" 2313 | dependencies: 2314 | pkg-dir "^2.0.0" 2315 | resolve-cwd "^2.0.0" 2316 | 2317 | imurmurhash@^0.1.4: 2318 | version "0.1.4" 2319 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2320 | 2321 | indent-string@^2.1.0: 2322 | version "2.1.0" 2323 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 2324 | dependencies: 2325 | repeating "^2.0.0" 2326 | 2327 | inflight@^1.0.4: 2328 | version "1.0.6" 2329 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2330 | dependencies: 2331 | once "^1.3.0" 2332 | wrappy "1" 2333 | 2334 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 2335 | version "2.0.3" 2336 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2337 | 2338 | ini@~1.3.0: 2339 | version "1.3.4" 2340 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 2341 | 2342 | inquirer@^5.2.0: 2343 | version "5.2.0" 2344 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-5.2.0.tgz#db350c2b73daca77ff1243962e9f22f099685726" 2345 | dependencies: 2346 | ansi-escapes "^3.0.0" 2347 | chalk "^2.0.0" 2348 | cli-cursor "^2.1.0" 2349 | cli-width "^2.0.0" 2350 | external-editor "^2.1.0" 2351 | figures "^2.0.0" 2352 | lodash "^4.3.0" 2353 | mute-stream "0.0.7" 2354 | run-async "^2.2.0" 2355 | rxjs "^5.5.2" 2356 | string-width "^2.1.0" 2357 | strip-ansi "^4.0.0" 2358 | through "^2.3.6" 2359 | 2360 | invariant@^2.2.0, invariant@^2.2.2: 2361 | version "2.2.2" 2362 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2363 | dependencies: 2364 | loose-envify "^1.0.0" 2365 | 2366 | invariant@^2.2.4: 2367 | version "2.2.4" 2368 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 2369 | dependencies: 2370 | loose-envify "^1.0.0" 2371 | 2372 | invert-kv@^1.0.0: 2373 | version "1.0.0" 2374 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2375 | 2376 | is-accessor-descriptor@^0.1.6: 2377 | version "0.1.6" 2378 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 2379 | dependencies: 2380 | kind-of "^3.0.2" 2381 | 2382 | is-accessor-descriptor@^1.0.0: 2383 | version "1.0.0" 2384 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 2385 | dependencies: 2386 | kind-of "^6.0.0" 2387 | 2388 | is-arrayish@^0.2.1: 2389 | version "0.2.1" 2390 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2391 | 2392 | is-binary-path@^1.0.0: 2393 | version "1.0.1" 2394 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2395 | dependencies: 2396 | binary-extensions "^1.0.0" 2397 | 2398 | is-buffer@^1.0.2: 2399 | version "1.1.5" 2400 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 2401 | 2402 | is-buffer@^1.1.5: 2403 | version "1.1.6" 2404 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 2405 | 2406 | is-builtin-module@^1.0.0: 2407 | version "1.0.0" 2408 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2409 | dependencies: 2410 | builtin-modules "^1.0.0" 2411 | 2412 | is-callable@^1.1.1, is-callable@^1.1.3: 2413 | version "1.1.4" 2414 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 2415 | 2416 | is-ci@^1.0.10: 2417 | version "1.0.10" 2418 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 2419 | dependencies: 2420 | ci-info "^1.0.0" 2421 | 2422 | is-data-descriptor@^0.1.4: 2423 | version "0.1.4" 2424 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 2425 | dependencies: 2426 | kind-of "^3.0.2" 2427 | 2428 | is-data-descriptor@^1.0.0: 2429 | version "1.0.0" 2430 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 2431 | dependencies: 2432 | kind-of "^6.0.0" 2433 | 2434 | is-date-object@^1.0.1: 2435 | version "1.0.1" 2436 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 2437 | 2438 | is-descriptor@^0.1.0: 2439 | version "0.1.6" 2440 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 2441 | dependencies: 2442 | is-accessor-descriptor "^0.1.6" 2443 | is-data-descriptor "^0.1.4" 2444 | kind-of "^5.0.0" 2445 | 2446 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 2447 | version "1.0.2" 2448 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 2449 | dependencies: 2450 | is-accessor-descriptor "^1.0.0" 2451 | is-data-descriptor "^1.0.0" 2452 | kind-of "^6.0.2" 2453 | 2454 | is-dotfile@^1.0.0: 2455 | version "1.0.2" 2456 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2457 | 2458 | is-equal-shallow@^0.1.3: 2459 | version "0.1.3" 2460 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2461 | dependencies: 2462 | is-primitive "^2.0.0" 2463 | 2464 | is-extendable@^0.1.0, is-extendable@^0.1.1: 2465 | version "0.1.1" 2466 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2467 | 2468 | is-extendable@^1.0.1: 2469 | version "1.0.1" 2470 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 2471 | dependencies: 2472 | is-plain-object "^2.0.4" 2473 | 2474 | is-extglob@^1.0.0: 2475 | version "1.0.0" 2476 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2477 | 2478 | is-finite@^1.0.0: 2479 | version "1.0.2" 2480 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2481 | dependencies: 2482 | number-is-nan "^1.0.0" 2483 | 2484 | is-fullwidth-code-point@^1.0.0: 2485 | version "1.0.0" 2486 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2487 | dependencies: 2488 | number-is-nan "^1.0.0" 2489 | 2490 | is-fullwidth-code-point@^2.0.0: 2491 | version "2.0.0" 2492 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2493 | 2494 | is-generator-fn@^1.0.0: 2495 | version "1.0.0" 2496 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 2497 | 2498 | is-glob@^2.0.0, is-glob@^2.0.1: 2499 | version "2.0.1" 2500 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2501 | dependencies: 2502 | is-extglob "^1.0.0" 2503 | 2504 | is-number@^2.0.2, is-number@^2.1.0: 2505 | version "2.1.0" 2506 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2507 | dependencies: 2508 | kind-of "^3.0.2" 2509 | 2510 | is-number@^3.0.0: 2511 | version "3.0.0" 2512 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2513 | dependencies: 2514 | kind-of "^3.0.2" 2515 | 2516 | is-path-cwd@^1.0.0: 2517 | version "1.0.0" 2518 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2519 | 2520 | is-path-in-cwd@^1.0.0: 2521 | version "1.0.0" 2522 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2523 | dependencies: 2524 | is-path-inside "^1.0.0" 2525 | 2526 | is-path-inside@^1.0.0: 2527 | version "1.0.0" 2528 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2529 | dependencies: 2530 | path-is-inside "^1.0.1" 2531 | 2532 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 2533 | version "2.0.4" 2534 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 2535 | dependencies: 2536 | isobject "^3.0.1" 2537 | 2538 | is-posix-bracket@^0.1.0: 2539 | version "0.1.1" 2540 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2541 | 2542 | is-primitive@^2.0.0: 2543 | version "2.0.0" 2544 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2545 | 2546 | is-promise@^2.1.0: 2547 | version "2.1.0" 2548 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2549 | 2550 | is-regex@^1.0.4: 2551 | version "1.0.4" 2552 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2553 | dependencies: 2554 | has "^1.0.1" 2555 | 2556 | is-resolvable@^1.1.0: 2557 | version "1.1.0" 2558 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 2559 | 2560 | is-stream@^1.1.0: 2561 | version "1.1.0" 2562 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2563 | 2564 | is-symbol@^1.0.1: 2565 | version "1.0.1" 2566 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2567 | 2568 | is-typedarray@~1.0.0: 2569 | version "1.0.0" 2570 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2571 | 2572 | is-utf8@^0.2.0: 2573 | version "0.2.1" 2574 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2575 | 2576 | is-windows@^1.0.2: 2577 | version "1.0.2" 2578 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 2579 | 2580 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2581 | version "1.0.0" 2582 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2583 | 2584 | isexe@^2.0.0: 2585 | version "2.0.0" 2586 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2587 | 2588 | isobject@^2.0.0: 2589 | version "2.1.0" 2590 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2591 | dependencies: 2592 | isarray "1.0.0" 2593 | 2594 | isobject@^3.0.0, isobject@^3.0.1: 2595 | version "3.0.1" 2596 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2597 | 2598 | isstream@~0.1.2: 2599 | version "0.1.2" 2600 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2601 | 2602 | istanbul-api@^1.3.1: 2603 | version "1.3.1" 2604 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.1.tgz#4c3b05d18c0016d1022e079b98dc82c40f488954" 2605 | dependencies: 2606 | async "^2.1.4" 2607 | compare-versions "^3.1.0" 2608 | fileset "^2.0.2" 2609 | istanbul-lib-coverage "^1.2.0" 2610 | istanbul-lib-hook "^1.2.0" 2611 | istanbul-lib-instrument "^1.10.1" 2612 | istanbul-lib-report "^1.1.4" 2613 | istanbul-lib-source-maps "^1.2.4" 2614 | istanbul-reports "^1.3.0" 2615 | js-yaml "^3.7.0" 2616 | mkdirp "^0.5.1" 2617 | once "^1.4.0" 2618 | 2619 | istanbul-lib-coverage@^1.2.0: 2620 | version "1.2.0" 2621 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341" 2622 | 2623 | istanbul-lib-hook@^1.2.0: 2624 | version "1.2.1" 2625 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.1.tgz#f614ec45287b2a8fc4f07f5660af787575601805" 2626 | dependencies: 2627 | append-transform "^1.0.0" 2628 | 2629 | istanbul-lib-instrument@^1.10.1: 2630 | version "1.10.1" 2631 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b" 2632 | dependencies: 2633 | babel-generator "^6.18.0" 2634 | babel-template "^6.16.0" 2635 | babel-traverse "^6.18.0" 2636 | babel-types "^6.18.0" 2637 | babylon "^6.18.0" 2638 | istanbul-lib-coverage "^1.2.0" 2639 | semver "^5.3.0" 2640 | 2641 | istanbul-lib-report@^1.1.4: 2642 | version "1.1.4" 2643 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5" 2644 | dependencies: 2645 | istanbul-lib-coverage "^1.2.0" 2646 | mkdirp "^0.5.1" 2647 | path-parse "^1.0.5" 2648 | supports-color "^3.1.2" 2649 | 2650 | istanbul-lib-source-maps@^1.2.4: 2651 | version "1.2.5" 2652 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.5.tgz#ffe6be4e7ab86d3603e4290d54990b14506fc9b1" 2653 | dependencies: 2654 | debug "^3.1.0" 2655 | istanbul-lib-coverage "^1.2.0" 2656 | mkdirp "^0.5.1" 2657 | rimraf "^2.6.1" 2658 | source-map "^0.5.3" 2659 | 2660 | istanbul-reports@^1.3.0: 2661 | version "1.3.0" 2662 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.3.0.tgz#2f322e81e1d9520767597dca3c20a0cce89a3554" 2663 | dependencies: 2664 | handlebars "^4.0.3" 2665 | 2666 | jest-changed-files@^23.4.2: 2667 | version "23.4.2" 2668 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-23.4.2.tgz#1eed688370cd5eebafe4ae93d34bb3b64968fe83" 2669 | dependencies: 2670 | throat "^4.0.0" 2671 | 2672 | jest-cli@^23.5.0: 2673 | version "23.5.0" 2674 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-23.5.0.tgz#d316b8e34a38a610a1efc4f0403d8ef8a55e4492" 2675 | dependencies: 2676 | ansi-escapes "^3.0.0" 2677 | chalk "^2.0.1" 2678 | exit "^0.1.2" 2679 | glob "^7.1.2" 2680 | graceful-fs "^4.1.11" 2681 | import-local "^1.0.0" 2682 | is-ci "^1.0.10" 2683 | istanbul-api "^1.3.1" 2684 | istanbul-lib-coverage "^1.2.0" 2685 | istanbul-lib-instrument "^1.10.1" 2686 | istanbul-lib-source-maps "^1.2.4" 2687 | jest-changed-files "^23.4.2" 2688 | jest-config "^23.5.0" 2689 | jest-environment-jsdom "^23.4.0" 2690 | jest-get-type "^22.1.0" 2691 | jest-haste-map "^23.5.0" 2692 | jest-message-util "^23.4.0" 2693 | jest-regex-util "^23.3.0" 2694 | jest-resolve-dependencies "^23.5.0" 2695 | jest-runner "^23.5.0" 2696 | jest-runtime "^23.5.0" 2697 | jest-snapshot "^23.5.0" 2698 | jest-util "^23.4.0" 2699 | jest-validate "^23.5.0" 2700 | jest-watcher "^23.4.0" 2701 | jest-worker "^23.2.0" 2702 | micromatch "^2.3.11" 2703 | node-notifier "^5.2.1" 2704 | prompts "^0.1.9" 2705 | realpath-native "^1.0.0" 2706 | rimraf "^2.5.4" 2707 | slash "^1.0.0" 2708 | string-length "^2.0.0" 2709 | strip-ansi "^4.0.0" 2710 | which "^1.2.12" 2711 | yargs "^11.0.0" 2712 | 2713 | jest-config@^23.5.0: 2714 | version "23.5.0" 2715 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-23.5.0.tgz#3770fba03f7507ee15f3b8867c742e48f31a9773" 2716 | dependencies: 2717 | babel-core "^6.0.0" 2718 | babel-jest "^23.4.2" 2719 | chalk "^2.0.1" 2720 | glob "^7.1.1" 2721 | jest-environment-jsdom "^23.4.0" 2722 | jest-environment-node "^23.4.0" 2723 | jest-get-type "^22.1.0" 2724 | jest-jasmine2 "^23.5.0" 2725 | jest-regex-util "^23.3.0" 2726 | jest-resolve "^23.5.0" 2727 | jest-util "^23.4.0" 2728 | jest-validate "^23.5.0" 2729 | micromatch "^2.3.11" 2730 | pretty-format "^23.5.0" 2731 | 2732 | jest-diff@^23.5.0: 2733 | version "23.5.0" 2734 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-23.5.0.tgz#250651a433dd0050290a07642946cc9baaf06fba" 2735 | dependencies: 2736 | chalk "^2.0.1" 2737 | diff "^3.2.0" 2738 | jest-get-type "^22.1.0" 2739 | pretty-format "^23.5.0" 2740 | 2741 | jest-docblock@^23.2.0: 2742 | version "23.2.0" 2743 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-23.2.0.tgz#f085e1f18548d99fdd69b20207e6fd55d91383a7" 2744 | dependencies: 2745 | detect-newline "^2.1.0" 2746 | 2747 | jest-each@^23.5.0: 2748 | version "23.5.0" 2749 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-23.5.0.tgz#77f7e2afe6132a80954b920006e78239862b10ba" 2750 | dependencies: 2751 | chalk "^2.0.1" 2752 | pretty-format "^23.5.0" 2753 | 2754 | jest-environment-jsdom@^23.4.0: 2755 | version "23.4.0" 2756 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-23.4.0.tgz#056a7952b3fea513ac62a140a2c368c79d9e6023" 2757 | dependencies: 2758 | jest-mock "^23.2.0" 2759 | jest-util "^23.4.0" 2760 | jsdom "^11.5.1" 2761 | 2762 | jest-environment-node@^23.4.0: 2763 | version "23.4.0" 2764 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-23.4.0.tgz#57e80ed0841dea303167cce8cd79521debafde10" 2765 | dependencies: 2766 | jest-mock "^23.2.0" 2767 | jest-util "^23.4.0" 2768 | 2769 | jest-get-type@^22.1.0: 2770 | version "22.4.3" 2771 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" 2772 | 2773 | jest-haste-map@^23.5.0: 2774 | version "23.5.0" 2775 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-23.5.0.tgz#d4ca618188bd38caa6cb20349ce6610e194a8065" 2776 | dependencies: 2777 | fb-watchman "^2.0.0" 2778 | graceful-fs "^4.1.11" 2779 | invariant "^2.2.4" 2780 | jest-docblock "^23.2.0" 2781 | jest-serializer "^23.0.1" 2782 | jest-worker "^23.2.0" 2783 | micromatch "^2.3.11" 2784 | sane "^2.0.0" 2785 | 2786 | jest-jasmine2@^23.5.0: 2787 | version "23.5.0" 2788 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-23.5.0.tgz#05fe7f1788e650eeb5a03929e6461ea2e9f3db53" 2789 | dependencies: 2790 | babel-traverse "^6.0.0" 2791 | chalk "^2.0.1" 2792 | co "^4.6.0" 2793 | expect "^23.5.0" 2794 | is-generator-fn "^1.0.0" 2795 | jest-diff "^23.5.0" 2796 | jest-each "^23.5.0" 2797 | jest-matcher-utils "^23.5.0" 2798 | jest-message-util "^23.4.0" 2799 | jest-snapshot "^23.5.0" 2800 | jest-util "^23.4.0" 2801 | pretty-format "^23.5.0" 2802 | 2803 | jest-leak-detector@^23.5.0: 2804 | version "23.5.0" 2805 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-23.5.0.tgz#14ac2a785bd625160a2ea968fd5d98b7dcea3e64" 2806 | dependencies: 2807 | pretty-format "^23.5.0" 2808 | 2809 | jest-matcher-utils@^23.5.0: 2810 | version "23.5.0" 2811 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-23.5.0.tgz#0e2ea67744cab78c9ab15011c4d888bdd3e49e2a" 2812 | dependencies: 2813 | chalk "^2.0.1" 2814 | jest-get-type "^22.1.0" 2815 | pretty-format "^23.5.0" 2816 | 2817 | jest-message-util@^23.4.0: 2818 | version "23.4.0" 2819 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-23.4.0.tgz#17610c50942349508d01a3d1e0bda2c079086a9f" 2820 | dependencies: 2821 | "@babel/code-frame" "^7.0.0-beta.35" 2822 | chalk "^2.0.1" 2823 | micromatch "^2.3.11" 2824 | slash "^1.0.0" 2825 | stack-utils "^1.0.1" 2826 | 2827 | jest-mock@^23.2.0: 2828 | version "23.2.0" 2829 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-23.2.0.tgz#ad1c60f29e8719d47c26e1138098b6d18b261134" 2830 | 2831 | jest-regex-util@^23.3.0: 2832 | version "23.3.0" 2833 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-23.3.0.tgz#5f86729547c2785c4002ceaa8f849fe8ca471bc5" 2834 | 2835 | jest-resolve-dependencies@^23.5.0: 2836 | version "23.5.0" 2837 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-23.5.0.tgz#10c4d135beb9d2256de1fedc7094916c3ad74af7" 2838 | dependencies: 2839 | jest-regex-util "^23.3.0" 2840 | jest-snapshot "^23.5.0" 2841 | 2842 | jest-resolve@^23.5.0: 2843 | version "23.5.0" 2844 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-23.5.0.tgz#3b8e7f67e84598f0caf63d1530bd8534a189d0e6" 2845 | dependencies: 2846 | browser-resolve "^1.11.3" 2847 | chalk "^2.0.1" 2848 | realpath-native "^1.0.0" 2849 | 2850 | jest-runner@^23.5.0: 2851 | version "23.5.0" 2852 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-23.5.0.tgz#570f7a044da91648b5bb9b6baacdd511076c71d7" 2853 | dependencies: 2854 | exit "^0.1.2" 2855 | graceful-fs "^4.1.11" 2856 | jest-config "^23.5.0" 2857 | jest-docblock "^23.2.0" 2858 | jest-haste-map "^23.5.0" 2859 | jest-jasmine2 "^23.5.0" 2860 | jest-leak-detector "^23.5.0" 2861 | jest-message-util "^23.4.0" 2862 | jest-runtime "^23.5.0" 2863 | jest-util "^23.4.0" 2864 | jest-worker "^23.2.0" 2865 | source-map-support "^0.5.6" 2866 | throat "^4.0.0" 2867 | 2868 | jest-runtime@^23.5.0: 2869 | version "23.5.0" 2870 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-23.5.0.tgz#eb503525a196dc32f2f9974e3482d26bdf7b63ce" 2871 | dependencies: 2872 | babel-core "^6.0.0" 2873 | babel-plugin-istanbul "^4.1.6" 2874 | chalk "^2.0.1" 2875 | convert-source-map "^1.4.0" 2876 | exit "^0.1.2" 2877 | fast-json-stable-stringify "^2.0.0" 2878 | graceful-fs "^4.1.11" 2879 | jest-config "^23.5.0" 2880 | jest-haste-map "^23.5.0" 2881 | jest-message-util "^23.4.0" 2882 | jest-regex-util "^23.3.0" 2883 | jest-resolve "^23.5.0" 2884 | jest-snapshot "^23.5.0" 2885 | jest-util "^23.4.0" 2886 | jest-validate "^23.5.0" 2887 | micromatch "^2.3.11" 2888 | realpath-native "^1.0.0" 2889 | slash "^1.0.0" 2890 | strip-bom "3.0.0" 2891 | write-file-atomic "^2.1.0" 2892 | yargs "^11.0.0" 2893 | 2894 | jest-serializer@^23.0.1: 2895 | version "23.0.1" 2896 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165" 2897 | 2898 | jest-snapshot@^23.5.0: 2899 | version "23.5.0" 2900 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-23.5.0.tgz#cc368ebd8513e1175e2a7277f37a801b7358ae79" 2901 | dependencies: 2902 | babel-types "^6.0.0" 2903 | chalk "^2.0.1" 2904 | jest-diff "^23.5.0" 2905 | jest-matcher-utils "^23.5.0" 2906 | jest-message-util "^23.4.0" 2907 | jest-resolve "^23.5.0" 2908 | mkdirp "^0.5.1" 2909 | natural-compare "^1.4.0" 2910 | pretty-format "^23.5.0" 2911 | semver "^5.5.0" 2912 | 2913 | jest-util@^23.4.0: 2914 | version "23.4.0" 2915 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-23.4.0.tgz#4d063cb927baf0a23831ff61bec2cbbf49793561" 2916 | dependencies: 2917 | callsites "^2.0.0" 2918 | chalk "^2.0.1" 2919 | graceful-fs "^4.1.11" 2920 | is-ci "^1.0.10" 2921 | jest-message-util "^23.4.0" 2922 | mkdirp "^0.5.1" 2923 | slash "^1.0.0" 2924 | source-map "^0.6.0" 2925 | 2926 | jest-validate@^23.5.0: 2927 | version "23.5.0" 2928 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.5.0.tgz#f5df8f761cf43155e1b2e21d6e9de8a2852d0231" 2929 | dependencies: 2930 | chalk "^2.0.1" 2931 | jest-get-type "^22.1.0" 2932 | leven "^2.1.0" 2933 | pretty-format "^23.5.0" 2934 | 2935 | jest-watcher@^23.4.0: 2936 | version "23.4.0" 2937 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-23.4.0.tgz#d2e28ce74f8dad6c6afc922b92cabef6ed05c91c" 2938 | dependencies: 2939 | ansi-escapes "^3.0.0" 2940 | chalk "^2.0.1" 2941 | string-length "^2.0.0" 2942 | 2943 | jest-worker@^23.2.0: 2944 | version "23.2.0" 2945 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-23.2.0.tgz#faf706a8da36fae60eb26957257fa7b5d8ea02b9" 2946 | dependencies: 2947 | merge-stream "^1.0.1" 2948 | 2949 | jest@^23.5.0: 2950 | version "23.5.0" 2951 | resolved "https://registry.yarnpkg.com/jest/-/jest-23.5.0.tgz#80de353d156ea5ea4a7332f7962ac79135fbc62e" 2952 | dependencies: 2953 | import-local "^1.0.0" 2954 | jest-cli "^23.5.0" 2955 | 2956 | js-tokens@^3.0.0: 2957 | version "3.0.1" 2958 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2959 | 2960 | js-tokens@^3.0.2: 2961 | version "3.0.2" 2962 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2963 | 2964 | js-yaml@^3.11.0, js-yaml@^3.12.0: 2965 | version "3.12.0" 2966 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" 2967 | dependencies: 2968 | argparse "^1.0.7" 2969 | esprima "^4.0.0" 2970 | 2971 | js-yaml@^3.7.0: 2972 | version "3.8.3" 2973 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.3.tgz#33a05ec481c850c8875929166fe1beb61c728766" 2974 | dependencies: 2975 | argparse "^1.0.7" 2976 | esprima "^3.1.1" 2977 | 2978 | jsbn@~0.1.0: 2979 | version "0.1.1" 2980 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2981 | 2982 | jsdom@^11.5.1: 2983 | version "11.12.0" 2984 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" 2985 | dependencies: 2986 | abab "^2.0.0" 2987 | acorn "^5.5.3" 2988 | acorn-globals "^4.1.0" 2989 | array-equal "^1.0.0" 2990 | cssom ">= 0.3.2 < 0.4.0" 2991 | cssstyle "^1.0.0" 2992 | data-urls "^1.0.0" 2993 | domexception "^1.0.1" 2994 | escodegen "^1.9.1" 2995 | html-encoding-sniffer "^1.0.2" 2996 | left-pad "^1.3.0" 2997 | nwsapi "^2.0.7" 2998 | parse5 "4.0.0" 2999 | pn "^1.1.0" 3000 | request "^2.87.0" 3001 | request-promise-native "^1.0.5" 3002 | sax "^1.2.4" 3003 | symbol-tree "^3.2.2" 3004 | tough-cookie "^2.3.4" 3005 | w3c-hr-time "^1.0.1" 3006 | webidl-conversions "^4.0.2" 3007 | whatwg-encoding "^1.0.3" 3008 | whatwg-mimetype "^2.1.0" 3009 | whatwg-url "^6.4.1" 3010 | ws "^5.2.0" 3011 | xml-name-validator "^3.0.0" 3012 | 3013 | jsesc@^1.3.0: 3014 | version "1.3.0" 3015 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 3016 | 3017 | jsesc@^2.5.1: 3018 | version "2.5.1" 3019 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.1.tgz#e421a2a8e20d6b0819df28908f782526b96dd1fe" 3020 | 3021 | jsesc@~0.5.0: 3022 | version "0.5.0" 3023 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 3024 | 3025 | json-schema-traverse@^0.3.0: 3026 | version "0.3.1" 3027 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 3028 | 3029 | json-schema-traverse@^0.4.1: 3030 | version "0.4.1" 3031 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 3032 | 3033 | json-schema@0.2.3: 3034 | version "0.2.3" 3035 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 3036 | 3037 | json-stable-stringify-without-jsonify@^1.0.1: 3038 | version "1.0.1" 3039 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 3040 | 3041 | json-stable-stringify@^1.0.1: 3042 | version "1.0.1" 3043 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 3044 | dependencies: 3045 | jsonify "~0.0.0" 3046 | 3047 | json-stringify-safe@~5.0.1: 3048 | version "5.0.1" 3049 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 3050 | 3051 | json5@^0.5.0, json5@^0.5.1: 3052 | version "0.5.1" 3053 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 3054 | 3055 | jsonify@~0.0.0: 3056 | version "0.0.0" 3057 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 3058 | 3059 | jsprim@^1.2.2: 3060 | version "1.4.0" 3061 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 3062 | dependencies: 3063 | assert-plus "1.0.0" 3064 | extsprintf "1.0.2" 3065 | json-schema "0.2.3" 3066 | verror "1.3.6" 3067 | 3068 | kind-of@^3.0.2: 3069 | version "3.1.0" 3070 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 3071 | dependencies: 3072 | is-buffer "^1.0.2" 3073 | 3074 | kind-of@^3.0.3, kind-of@^3.2.0: 3075 | version "3.2.2" 3076 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 3077 | dependencies: 3078 | is-buffer "^1.1.5" 3079 | 3080 | kind-of@^4.0.0: 3081 | version "4.0.0" 3082 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 3083 | dependencies: 3084 | is-buffer "^1.1.5" 3085 | 3086 | kind-of@^5.0.0: 3087 | version "5.1.0" 3088 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 3089 | 3090 | kind-of@^6.0.0, kind-of@^6.0.2: 3091 | version "6.0.2" 3092 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 3093 | 3094 | kleur@^2.0.1: 3095 | version "2.0.1" 3096 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-2.0.1.tgz#7cc64b0d188d0dcbc98bdcdfdda2cc10619ddce8" 3097 | 3098 | lazy-cache@^1.0.3: 3099 | version "1.0.4" 3100 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 3101 | 3102 | lcid@^1.0.0: 3103 | version "1.0.0" 3104 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 3105 | dependencies: 3106 | invert-kv "^1.0.0" 3107 | 3108 | lcov-parse@^0.0.10: 3109 | version "0.0.10" 3110 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 3111 | 3112 | left-pad@^1.3.0: 3113 | version "1.3.0" 3114 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" 3115 | 3116 | leven@^2.1.0: 3117 | version "2.1.0" 3118 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 3119 | 3120 | levn@^0.3.0, levn@~0.3.0: 3121 | version "0.3.0" 3122 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 3123 | dependencies: 3124 | prelude-ls "~1.1.2" 3125 | type-check "~0.3.2" 3126 | 3127 | load-json-file@^1.0.0: 3128 | version "1.1.0" 3129 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 3130 | dependencies: 3131 | graceful-fs "^4.1.2" 3132 | parse-json "^2.2.0" 3133 | pify "^2.0.0" 3134 | pinkie-promise "^2.0.0" 3135 | strip-bom "^2.0.0" 3136 | 3137 | load-json-file@^2.0.0: 3138 | version "2.0.0" 3139 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 3140 | dependencies: 3141 | graceful-fs "^4.1.2" 3142 | parse-json "^2.2.0" 3143 | pify "^2.0.0" 3144 | strip-bom "^3.0.0" 3145 | 3146 | locate-path@^2.0.0: 3147 | version "2.0.0" 3148 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 3149 | dependencies: 3150 | p-locate "^2.0.0" 3151 | path-exists "^3.0.0" 3152 | 3153 | lodash.sortby@^4.7.0: 3154 | version "4.7.0" 3155 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 3156 | 3157 | lodash@^4.13.1, lodash@^4.17.4, lodash@^4.17.5: 3158 | version "4.17.10" 3159 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 3160 | 3161 | lodash@^4.14.0, lodash@^4.2.0, lodash@^4.3.0: 3162 | version "4.17.4" 3163 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 3164 | 3165 | log-driver@^1.2.7: 3166 | version "1.2.7" 3167 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.7.tgz#63b95021f0702fedfa2c9bb0a24e7797d71871d8" 3168 | 3169 | log-symbols@^2.0.0: 3170 | version "2.2.0" 3171 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" 3172 | dependencies: 3173 | chalk "^2.0.1" 3174 | 3175 | longest@^1.0.1: 3176 | version "1.0.1" 3177 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 3178 | 3179 | loose-envify@^1.0.0: 3180 | version "1.3.1" 3181 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 3182 | dependencies: 3183 | js-tokens "^3.0.0" 3184 | 3185 | loud-rejection@^1.0.0: 3186 | version "1.6.0" 3187 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 3188 | dependencies: 3189 | currently-unhandled "^0.4.1" 3190 | signal-exit "^3.0.0" 3191 | 3192 | lru-cache@^4.0.1: 3193 | version "4.1.3" 3194 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 3195 | dependencies: 3196 | pseudomap "^1.0.2" 3197 | yallist "^2.1.2" 3198 | 3199 | makeerror@1.0.x: 3200 | version "1.0.11" 3201 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 3202 | dependencies: 3203 | tmpl "1.0.x" 3204 | 3205 | map-cache@^0.2.2: 3206 | version "0.2.2" 3207 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 3208 | 3209 | map-obj@^1.0.0, map-obj@^1.0.1: 3210 | version "1.0.1" 3211 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 3212 | 3213 | map-visit@^1.0.0: 3214 | version "1.0.0" 3215 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 3216 | dependencies: 3217 | object-visit "^1.0.0" 3218 | 3219 | mem@^1.1.0: 3220 | version "1.1.0" 3221 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 3222 | dependencies: 3223 | mimic-fn "^1.0.0" 3224 | 3225 | meow@^3.7.0: 3226 | version "3.7.0" 3227 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 3228 | dependencies: 3229 | camelcase-keys "^2.0.0" 3230 | decamelize "^1.1.2" 3231 | loud-rejection "^1.0.0" 3232 | map-obj "^1.0.1" 3233 | minimist "^1.1.3" 3234 | normalize-package-data "^2.3.4" 3235 | object-assign "^4.0.1" 3236 | read-pkg-up "^1.0.1" 3237 | redent "^1.0.0" 3238 | trim-newlines "^1.0.0" 3239 | 3240 | merge-stream@^1.0.1: 3241 | version "1.0.1" 3242 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 3243 | dependencies: 3244 | readable-stream "^2.0.1" 3245 | 3246 | merge@^1.1.3: 3247 | version "1.2.0" 3248 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 3249 | 3250 | micromatch@^2.1.5, micromatch@^2.3.11: 3251 | version "2.3.11" 3252 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 3253 | dependencies: 3254 | arr-diff "^2.0.0" 3255 | array-unique "^0.2.1" 3256 | braces "^1.8.2" 3257 | expand-brackets "^0.1.4" 3258 | extglob "^0.3.1" 3259 | filename-regex "^2.0.0" 3260 | is-extglob "^1.0.0" 3261 | is-glob "^2.0.1" 3262 | kind-of "^3.0.2" 3263 | normalize-path "^2.0.1" 3264 | object.omit "^2.0.0" 3265 | parse-glob "^3.0.4" 3266 | regex-cache "^0.4.2" 3267 | 3268 | micromatch@^3.1.4, micromatch@^3.1.8: 3269 | version "3.1.10" 3270 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 3271 | dependencies: 3272 | arr-diff "^4.0.0" 3273 | array-unique "^0.3.2" 3274 | braces "^2.3.1" 3275 | define-property "^2.0.2" 3276 | extend-shallow "^3.0.2" 3277 | extglob "^2.0.4" 3278 | fragment-cache "^0.2.1" 3279 | kind-of "^6.0.2" 3280 | nanomatch "^1.2.9" 3281 | object.pick "^1.3.0" 3282 | regex-not "^1.0.0" 3283 | snapdragon "^0.8.1" 3284 | to-regex "^3.0.2" 3285 | 3286 | mime-db@~1.27.0: 3287 | version "1.27.0" 3288 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 3289 | 3290 | mime-db@~1.35.0: 3291 | version "1.35.0" 3292 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.35.0.tgz#0569d657466491283709663ad379a99b90d9ab47" 3293 | 3294 | mime-types@^2.1.12, mime-types@~2.1.7: 3295 | version "2.1.15" 3296 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 3297 | dependencies: 3298 | mime-db "~1.27.0" 3299 | 3300 | mime-types@~2.1.19: 3301 | version "2.1.19" 3302 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.19.tgz#71e464537a7ef81c15f2db9d97e913fc0ff606f0" 3303 | dependencies: 3304 | mime-db "~1.35.0" 3305 | 3306 | mimic-fn@^1.0.0: 3307 | version "1.2.0" 3308 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 3309 | 3310 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: 3311 | version "3.0.3" 3312 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 3313 | dependencies: 3314 | brace-expansion "^1.0.0" 3315 | 3316 | minimatch@^3.0.4: 3317 | version "3.0.4" 3318 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 3319 | dependencies: 3320 | brace-expansion "^1.1.7" 3321 | 3322 | minimist@0.0.8, minimist@~0.0.1: 3323 | version "0.0.8" 3324 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 3325 | 3326 | minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: 3327 | version "1.2.0" 3328 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 3329 | 3330 | minipass@^2.2.1, minipass@^2.3.3: 3331 | version "2.3.4" 3332 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.4.tgz#4768d7605ed6194d6d576169b9e12ef71e9d9957" 3333 | dependencies: 3334 | safe-buffer "^5.1.2" 3335 | yallist "^3.0.0" 3336 | 3337 | minizlib@^1.1.0: 3338 | version "1.1.0" 3339 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 3340 | dependencies: 3341 | minipass "^2.2.1" 3342 | 3343 | mixin-deep@^1.2.0: 3344 | version "1.3.1" 3345 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 3346 | dependencies: 3347 | for-in "^1.0.2" 3348 | is-extendable "^1.0.1" 3349 | 3350 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 3351 | version "0.5.1" 3352 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 3353 | dependencies: 3354 | minimist "0.0.8" 3355 | 3356 | ms@0.7.2: 3357 | version "0.7.2" 3358 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 3359 | 3360 | ms@2.0.0: 3361 | version "2.0.0" 3362 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 3363 | 3364 | mute-stream@0.0.7: 3365 | version "0.0.7" 3366 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 3367 | 3368 | nan@^2.3.0: 3369 | version "2.6.1" 3370 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.1.tgz#8c84f7b14c96b89f57fbc838012180ec8ca39a01" 3371 | 3372 | nan@^2.9.2: 3373 | version "2.10.0" 3374 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 3375 | 3376 | nanomatch@^1.2.9: 3377 | version "1.2.13" 3378 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 3379 | dependencies: 3380 | arr-diff "^4.0.0" 3381 | array-unique "^0.3.2" 3382 | define-property "^2.0.2" 3383 | extend-shallow "^3.0.2" 3384 | fragment-cache "^0.2.1" 3385 | is-windows "^1.0.2" 3386 | kind-of "^6.0.2" 3387 | object.pick "^1.3.0" 3388 | regex-not "^1.0.0" 3389 | snapdragon "^0.8.1" 3390 | to-regex "^3.0.1" 3391 | 3392 | natural-compare@^1.4.0: 3393 | version "1.4.0" 3394 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 3395 | 3396 | needle@^2.2.1: 3397 | version "2.2.2" 3398 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.2.tgz#1120ca4c41f2fcc6976fd28a8968afe239929418" 3399 | dependencies: 3400 | debug "^2.1.2" 3401 | iconv-lite "^0.4.4" 3402 | sax "^1.2.4" 3403 | 3404 | nice-try@^1.0.4: 3405 | version "1.0.4" 3406 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.4.tgz#d93962f6c52f2c1558c0fbda6d512819f1efe1c4" 3407 | 3408 | node-int64@^0.4.0: 3409 | version "0.4.0" 3410 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 3411 | 3412 | node-notifier@^5.2.1: 3413 | version "5.2.1" 3414 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" 3415 | dependencies: 3416 | growly "^1.3.0" 3417 | semver "^5.4.1" 3418 | shellwords "^0.1.1" 3419 | which "^1.3.0" 3420 | 3421 | node-pre-gyp@^0.10.0: 3422 | version "0.10.3" 3423 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" 3424 | dependencies: 3425 | detect-libc "^1.0.2" 3426 | mkdirp "^0.5.1" 3427 | needle "^2.2.1" 3428 | nopt "^4.0.1" 3429 | npm-packlist "^1.1.6" 3430 | npmlog "^4.0.2" 3431 | rc "^1.2.7" 3432 | rimraf "^2.6.1" 3433 | semver "^5.3.0" 3434 | tar "^4" 3435 | 3436 | node-pre-gyp@^0.6.29: 3437 | version "0.6.34" 3438 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 3439 | dependencies: 3440 | mkdirp "^0.5.1" 3441 | nopt "^4.0.1" 3442 | npmlog "^4.0.2" 3443 | rc "^1.1.7" 3444 | request "^2.81.0" 3445 | rimraf "^2.6.1" 3446 | semver "^5.3.0" 3447 | tar "^2.2.1" 3448 | tar-pack "^3.4.0" 3449 | 3450 | nopt@^4.0.1: 3451 | version "4.0.1" 3452 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 3453 | dependencies: 3454 | abbrev "1" 3455 | osenv "^0.1.4" 3456 | 3457 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 3458 | version "2.3.6" 3459 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff" 3460 | dependencies: 3461 | hosted-git-info "^2.1.4" 3462 | is-builtin-module "^1.0.0" 3463 | semver "2 || 3 || 4 || 5" 3464 | validate-npm-package-license "^3.0.1" 3465 | 3466 | normalize-path@^2.0.1, normalize-path@^2.1.1: 3467 | version "2.1.1" 3468 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 3469 | dependencies: 3470 | remove-trailing-separator "^1.0.1" 3471 | 3472 | npm-bundled@^1.0.1: 3473 | version "1.0.5" 3474 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979" 3475 | 3476 | npm-packlist@^1.1.6: 3477 | version "1.1.11" 3478 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.11.tgz#84e8c683cbe7867d34b1d357d893ce29e28a02de" 3479 | dependencies: 3480 | ignore-walk "^3.0.1" 3481 | npm-bundled "^1.0.1" 3482 | 3483 | npm-run-path@^2.0.0: 3484 | version "2.0.2" 3485 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 3486 | dependencies: 3487 | path-key "^2.0.0" 3488 | 3489 | npmlog@^4.0.2: 3490 | version "4.0.2" 3491 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 3492 | dependencies: 3493 | are-we-there-yet "~1.1.2" 3494 | console-control-strings "~1.1.0" 3495 | gauge "~2.7.1" 3496 | set-blocking "~2.0.0" 3497 | 3498 | number-is-nan@^1.0.0: 3499 | version "1.0.1" 3500 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 3501 | 3502 | nwsapi@^2.0.7: 3503 | version "2.0.8" 3504 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.0.8.tgz#e3603579b7e162b3dbedae4fb24e46f771d8fa24" 3505 | 3506 | oauth-sign@~0.8.1: 3507 | version "0.8.2" 3508 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3509 | 3510 | oauth-sign@~0.9.0: 3511 | version "0.9.0" 3512 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 3513 | 3514 | object-assign@^4.0.1, object-assign@^4.1.0: 3515 | version "4.1.1" 3516 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3517 | 3518 | object-copy@^0.1.0: 3519 | version "0.1.0" 3520 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 3521 | dependencies: 3522 | copy-descriptor "^0.1.0" 3523 | define-property "^0.2.5" 3524 | kind-of "^3.0.3" 3525 | 3526 | object-keys@^1.0.8: 3527 | version "1.0.12" 3528 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" 3529 | 3530 | object-visit@^1.0.0: 3531 | version "1.0.1" 3532 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 3533 | dependencies: 3534 | isobject "^3.0.0" 3535 | 3536 | object.getownpropertydescriptors@^2.0.3: 3537 | version "2.0.3" 3538 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 3539 | dependencies: 3540 | define-properties "^1.1.2" 3541 | es-abstract "^1.5.1" 3542 | 3543 | object.omit@^2.0.0: 3544 | version "2.0.1" 3545 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 3546 | dependencies: 3547 | for-own "^0.1.4" 3548 | is-extendable "^0.1.1" 3549 | 3550 | object.pick@^1.3.0: 3551 | version "1.3.0" 3552 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 3553 | dependencies: 3554 | isobject "^3.0.1" 3555 | 3556 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 3557 | version "1.4.0" 3558 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3559 | dependencies: 3560 | wrappy "1" 3561 | 3562 | onetime@^2.0.0: 3563 | version "2.0.1" 3564 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 3565 | dependencies: 3566 | mimic-fn "^1.0.0" 3567 | 3568 | opn-cli@^3.0.0: 3569 | version "3.1.0" 3570 | resolved "https://registry.yarnpkg.com/opn-cli/-/opn-cli-3.1.0.tgz#f819ae6cae0b411bd0149b8560fe6c88adad20f8" 3571 | dependencies: 3572 | file-type "^3.6.0" 3573 | get-stdin "^5.0.1" 3574 | meow "^3.7.0" 3575 | opn "^4.0.0" 3576 | temp-write "^2.1.0" 3577 | 3578 | opn@^4.0.0: 3579 | version "4.0.2" 3580 | resolved "https://registry.yarnpkg.com/opn/-/opn-4.0.2.tgz#7abc22e644dff63b0a96d5ab7f2790c0f01abc95" 3581 | dependencies: 3582 | object-assign "^4.0.1" 3583 | pinkie-promise "^2.0.0" 3584 | 3585 | optimist@^0.6.1: 3586 | version "0.6.1" 3587 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3588 | dependencies: 3589 | minimist "~0.0.1" 3590 | wordwrap "~0.0.2" 3591 | 3592 | optionator@^0.8.1, optionator@^0.8.2: 3593 | version "0.8.2" 3594 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3595 | dependencies: 3596 | deep-is "~0.1.3" 3597 | fast-levenshtein "~2.0.4" 3598 | levn "~0.3.0" 3599 | prelude-ls "~1.1.2" 3600 | type-check "~0.3.2" 3601 | wordwrap "~1.0.0" 3602 | 3603 | os-homedir@^1.0.0: 3604 | version "1.0.2" 3605 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3606 | 3607 | os-locale@^2.0.0: 3608 | version "2.1.0" 3609 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 3610 | dependencies: 3611 | execa "^0.7.0" 3612 | lcid "^1.0.0" 3613 | mem "^1.1.0" 3614 | 3615 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 3616 | version "1.0.2" 3617 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3618 | 3619 | osenv@^0.1.4: 3620 | version "0.1.4" 3621 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 3622 | dependencies: 3623 | os-homedir "^1.0.0" 3624 | os-tmpdir "^1.0.0" 3625 | 3626 | output-file-sync@^1.1.2: 3627 | version "1.1.2" 3628 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 3629 | dependencies: 3630 | graceful-fs "^4.1.4" 3631 | mkdirp "^0.5.1" 3632 | object-assign "^4.1.0" 3633 | 3634 | p-finally@^1.0.0: 3635 | version "1.0.0" 3636 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 3637 | 3638 | p-limit@^1.1.0: 3639 | version "1.1.0" 3640 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 3641 | 3642 | p-locate@^2.0.0: 3643 | version "2.0.0" 3644 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3645 | dependencies: 3646 | p-limit "^1.1.0" 3647 | 3648 | parse-glob@^3.0.4: 3649 | version "3.0.4" 3650 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3651 | dependencies: 3652 | glob-base "^0.3.0" 3653 | is-dotfile "^1.0.0" 3654 | is-extglob "^1.0.0" 3655 | is-glob "^2.0.0" 3656 | 3657 | parse-json@^2.2.0: 3658 | version "2.2.0" 3659 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3660 | dependencies: 3661 | error-ex "^1.2.0" 3662 | 3663 | parse5@4.0.0: 3664 | version "4.0.0" 3665 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" 3666 | 3667 | pascalcase@^0.1.1: 3668 | version "0.1.1" 3669 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 3670 | 3671 | path-exists@^2.0.0: 3672 | version "2.1.0" 3673 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3674 | dependencies: 3675 | pinkie-promise "^2.0.0" 3676 | 3677 | path-exists@^3.0.0: 3678 | version "3.0.0" 3679 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3680 | 3681 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 3682 | version "1.0.1" 3683 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3684 | 3685 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 3686 | version "1.0.2" 3687 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3688 | 3689 | path-key@^2.0.0, path-key@^2.0.1: 3690 | version "2.0.1" 3691 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3692 | 3693 | path-parse@^1.0.5: 3694 | version "1.0.5" 3695 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3696 | 3697 | path-type@^1.0.0: 3698 | version "1.1.0" 3699 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3700 | dependencies: 3701 | graceful-fs "^4.1.2" 3702 | pify "^2.0.0" 3703 | pinkie-promise "^2.0.0" 3704 | 3705 | path-type@^2.0.0: 3706 | version "2.0.0" 3707 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3708 | dependencies: 3709 | pify "^2.0.0" 3710 | 3711 | performance-now@^0.2.0: 3712 | version "0.2.0" 3713 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3714 | 3715 | performance-now@^2.1.0: 3716 | version "2.1.0" 3717 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 3718 | 3719 | pify@^2.0.0, pify@^2.2.0: 3720 | version "2.3.0" 3721 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3722 | 3723 | pinkie-promise@^2.0.0: 3724 | version "2.0.1" 3725 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3726 | dependencies: 3727 | pinkie "^2.0.0" 3728 | 3729 | pinkie@^2.0.0: 3730 | version "2.0.4" 3731 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3732 | 3733 | pkg-dir@^1.0.0: 3734 | version "1.0.0" 3735 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3736 | dependencies: 3737 | find-up "^1.0.0" 3738 | 3739 | pkg-dir@^2.0.0: 3740 | version "2.0.0" 3741 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 3742 | dependencies: 3743 | find-up "^2.1.0" 3744 | 3745 | pluralize@^7.0.0: 3746 | version "7.0.0" 3747 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 3748 | 3749 | pn@^1.1.0: 3750 | version "1.1.0" 3751 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" 3752 | 3753 | posix-character-classes@^0.1.0: 3754 | version "0.1.1" 3755 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 3756 | 3757 | postcss-reporter@^5.0.0: 3758 | version "5.0.0" 3759 | resolved "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-5.0.0.tgz#a14177fd1342829d291653f2786efd67110332c3" 3760 | dependencies: 3761 | chalk "^2.0.1" 3762 | lodash "^4.17.4" 3763 | log-symbols "^2.0.0" 3764 | postcss "^6.0.8" 3765 | 3766 | postcss@^6.0.8: 3767 | version "6.0.23" 3768 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" 3769 | dependencies: 3770 | chalk "^2.4.1" 3771 | source-map "^0.6.1" 3772 | supports-color "^5.4.0" 3773 | 3774 | postcss@^7.0.2: 3775 | version "7.0.2" 3776 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.2.tgz#7b5a109de356804e27f95a960bef0e4d5bc9bb18" 3777 | dependencies: 3778 | chalk "^2.4.1" 3779 | source-map "^0.6.1" 3780 | supports-color "^5.4.0" 3781 | 3782 | prelude-ls@~1.1.2: 3783 | version "1.1.2" 3784 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3785 | 3786 | preserve@^0.2.0: 3787 | version "0.2.0" 3788 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3789 | 3790 | pretty-format@^23.5.0: 3791 | version "23.5.0" 3792 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.5.0.tgz#0f9601ad9da70fe690a269cd3efca732c210687c" 3793 | dependencies: 3794 | ansi-regex "^3.0.0" 3795 | ansi-styles "^3.2.0" 3796 | 3797 | private@^0.1.6: 3798 | version "0.1.7" 3799 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3800 | 3801 | private@^0.1.8: 3802 | version "0.1.8" 3803 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 3804 | 3805 | process-nextick-args@~1.0.6: 3806 | version "1.0.7" 3807 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3808 | 3809 | process-nextick-args@~2.0.0: 3810 | version "2.0.0" 3811 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 3812 | 3813 | progress@^2.0.0: 3814 | version "2.0.0" 3815 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 3816 | 3817 | prompts@^0.1.9: 3818 | version "0.1.14" 3819 | resolved "https://registry.yarnpkg.com/prompts/-/prompts-0.1.14.tgz#a8e15c612c5c9ec8f8111847df3337c9cbd443b2" 3820 | dependencies: 3821 | kleur "^2.0.1" 3822 | sisteransi "^0.1.1" 3823 | 3824 | pseudomap@^1.0.2: 3825 | version "1.0.2" 3826 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3827 | 3828 | psl@^1.1.24: 3829 | version "1.1.29" 3830 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.29.tgz#60f580d360170bb722a797cc704411e6da850c67" 3831 | 3832 | punycode@^1.4.1: 3833 | version "1.4.1" 3834 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3835 | 3836 | punycode@^2.1.0: 3837 | version "2.1.1" 3838 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 3839 | 3840 | qs@~6.4.0: 3841 | version "6.4.0" 3842 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3843 | 3844 | qs@~6.5.2: 3845 | version "6.5.2" 3846 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 3847 | 3848 | randomatic@^1.1.3: 3849 | version "1.1.6" 3850 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 3851 | dependencies: 3852 | is-number "^2.0.2" 3853 | kind-of "^3.0.2" 3854 | 3855 | rc@^1.1.7: 3856 | version "1.2.1" 3857 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3858 | dependencies: 3859 | deep-extend "~0.4.0" 3860 | ini "~1.3.0" 3861 | minimist "^1.2.0" 3862 | strip-json-comments "~2.0.1" 3863 | 3864 | rc@^1.2.7: 3865 | version "1.2.8" 3866 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 3867 | dependencies: 3868 | deep-extend "^0.6.0" 3869 | ini "~1.3.0" 3870 | minimist "^1.2.0" 3871 | strip-json-comments "~2.0.1" 3872 | 3873 | read-pkg-up@^1.0.1: 3874 | version "1.0.1" 3875 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3876 | dependencies: 3877 | find-up "^1.0.0" 3878 | read-pkg "^1.0.0" 3879 | 3880 | read-pkg-up@^2.0.0: 3881 | version "2.0.0" 3882 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3883 | dependencies: 3884 | find-up "^2.0.0" 3885 | read-pkg "^2.0.0" 3886 | 3887 | read-pkg@^1.0.0: 3888 | version "1.1.0" 3889 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3890 | dependencies: 3891 | load-json-file "^1.0.0" 3892 | normalize-package-data "^2.3.2" 3893 | path-type "^1.0.0" 3894 | 3895 | read-pkg@^2.0.0: 3896 | version "2.0.0" 3897 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3898 | dependencies: 3899 | load-json-file "^2.0.0" 3900 | normalize-package-data "^2.3.2" 3901 | path-type "^2.0.0" 3902 | 3903 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.1.4: 3904 | version "2.2.6" 3905 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.6.tgz#8b43aed76e71483938d12a8d46c6cf1a00b1f816" 3906 | dependencies: 3907 | buffer-shims "^1.0.0" 3908 | core-util-is "~1.0.0" 3909 | inherits "~2.0.1" 3910 | isarray "~1.0.0" 3911 | process-nextick-args "~1.0.6" 3912 | string_decoder "~0.10.x" 3913 | util-deprecate "~1.0.1" 3914 | 3915 | readable-stream@^2.0.1: 3916 | version "2.3.6" 3917 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 3918 | dependencies: 3919 | core-util-is "~1.0.0" 3920 | inherits "~2.0.3" 3921 | isarray "~1.0.0" 3922 | process-nextick-args "~2.0.0" 3923 | safe-buffer "~5.1.1" 3924 | string_decoder "~1.1.1" 3925 | util-deprecate "~1.0.1" 3926 | 3927 | readdirp@^2.0.0: 3928 | version "2.1.0" 3929 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3930 | dependencies: 3931 | graceful-fs "^4.1.2" 3932 | minimatch "^3.0.2" 3933 | readable-stream "^2.0.2" 3934 | set-immediate-shim "^1.0.1" 3935 | 3936 | realpath-native@^1.0.0: 3937 | version "1.0.1" 3938 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.1.tgz#07f40a0cce8f8261e2e8b7ebebf5c95965d7b633" 3939 | dependencies: 3940 | util.promisify "^1.0.0" 3941 | 3942 | redent@^1.0.0: 3943 | version "1.0.0" 3944 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3945 | dependencies: 3946 | indent-string "^2.1.0" 3947 | strip-indent "^1.0.1" 3948 | 3949 | reduce-function-call@^1.0.1: 3950 | version "1.0.2" 3951 | resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" 3952 | dependencies: 3953 | balanced-match "^0.4.2" 3954 | 3955 | regenerate@^1.2.1: 3956 | version "1.3.2" 3957 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3958 | 3959 | regenerator-runtime@^0.10.0: 3960 | version "0.10.3" 3961 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 3962 | 3963 | regenerator-runtime@^0.10.5: 3964 | version "0.10.5" 3965 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3966 | 3967 | regenerator-runtime@^0.11.0: 3968 | version "0.11.1" 3969 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 3970 | 3971 | regenerator-transform@0.9.8: 3972 | version "0.9.8" 3973 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 3974 | dependencies: 3975 | babel-runtime "^6.18.0" 3976 | babel-types "^6.19.0" 3977 | private "^0.1.6" 3978 | 3979 | regex-cache@^0.4.2: 3980 | version "0.4.3" 3981 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3982 | dependencies: 3983 | is-equal-shallow "^0.1.3" 3984 | is-primitive "^2.0.0" 3985 | 3986 | regex-not@^1.0.0, regex-not@^1.0.2: 3987 | version "1.0.2" 3988 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 3989 | dependencies: 3990 | extend-shallow "^3.0.2" 3991 | safe-regex "^1.1.0" 3992 | 3993 | regexp.prototype.flags@^1.2.0: 3994 | version "1.2.0" 3995 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.2.0.tgz#6b30724e306a27833eeb171b66ac8890ba37e41c" 3996 | dependencies: 3997 | define-properties "^1.1.2" 3998 | 3999 | regexpp@^2.0.0: 4000 | version "2.0.0" 4001 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.0.tgz#b2a7534a85ca1b033bcf5ce9ff8e56d4e0755365" 4002 | 4003 | regexpu-core@^2.0.0: 4004 | version "2.0.0" 4005 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 4006 | dependencies: 4007 | regenerate "^1.2.1" 4008 | regjsgen "^0.2.0" 4009 | regjsparser "^0.1.4" 4010 | 4011 | regjsgen@^0.2.0: 4012 | version "0.2.0" 4013 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 4014 | 4015 | regjsparser@^0.1.4: 4016 | version "0.1.5" 4017 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 4018 | dependencies: 4019 | jsesc "~0.5.0" 4020 | 4021 | remove-trailing-separator@^1.0.1: 4022 | version "1.0.1" 4023 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 4024 | 4025 | repeat-element@^1.1.2: 4026 | version "1.1.2" 4027 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 4028 | 4029 | repeat-string@^1.5.2, repeat-string@^1.6.1: 4030 | version "1.6.1" 4031 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 4032 | 4033 | repeating@^2.0.0: 4034 | version "2.0.1" 4035 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 4036 | dependencies: 4037 | is-finite "^1.0.0" 4038 | 4039 | request-promise-core@1.1.1: 4040 | version "1.1.1" 4041 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 4042 | dependencies: 4043 | lodash "^4.13.1" 4044 | 4045 | request-promise-native@^1.0.5: 4046 | version "1.0.5" 4047 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" 4048 | dependencies: 4049 | request-promise-core "1.1.1" 4050 | stealthy-require "^1.1.0" 4051 | tough-cookie ">=2.3.3" 4052 | 4053 | request@^2.81.0: 4054 | version "2.81.0" 4055 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 4056 | dependencies: 4057 | aws-sign2 "~0.6.0" 4058 | aws4 "^1.2.1" 4059 | caseless "~0.12.0" 4060 | combined-stream "~1.0.5" 4061 | extend "~3.0.0" 4062 | forever-agent "~0.6.1" 4063 | form-data "~2.1.1" 4064 | har-validator "~4.2.1" 4065 | hawk "~3.1.3" 4066 | http-signature "~1.1.0" 4067 | is-typedarray "~1.0.0" 4068 | isstream "~0.1.2" 4069 | json-stringify-safe "~5.0.1" 4070 | mime-types "~2.1.7" 4071 | oauth-sign "~0.8.1" 4072 | performance-now "^0.2.0" 4073 | qs "~6.4.0" 4074 | safe-buffer "^5.0.1" 4075 | stringstream "~0.0.4" 4076 | tough-cookie "~2.3.0" 4077 | tunnel-agent "^0.6.0" 4078 | uuid "^3.0.0" 4079 | 4080 | request@^2.85.0, request@^2.87.0: 4081 | version "2.88.0" 4082 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" 4083 | dependencies: 4084 | aws-sign2 "~0.7.0" 4085 | aws4 "^1.8.0" 4086 | caseless "~0.12.0" 4087 | combined-stream "~1.0.6" 4088 | extend "~3.0.2" 4089 | forever-agent "~0.6.1" 4090 | form-data "~2.3.2" 4091 | har-validator "~5.1.0" 4092 | http-signature "~1.2.0" 4093 | is-typedarray "~1.0.0" 4094 | isstream "~0.1.2" 4095 | json-stringify-safe "~5.0.1" 4096 | mime-types "~2.1.19" 4097 | oauth-sign "~0.9.0" 4098 | performance-now "^2.1.0" 4099 | qs "~6.5.2" 4100 | safe-buffer "^5.1.2" 4101 | tough-cookie "~2.4.3" 4102 | tunnel-agent "^0.6.0" 4103 | uuid "^3.3.2" 4104 | 4105 | require-directory@^2.1.1: 4106 | version "2.1.1" 4107 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 4108 | 4109 | require-main-filename@^1.0.1: 4110 | version "1.0.1" 4111 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 4112 | 4113 | require-uncached@^1.0.3: 4114 | version "1.0.3" 4115 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 4116 | dependencies: 4117 | caller-path "^0.1.0" 4118 | resolve-from "^1.0.0" 4119 | 4120 | resolve-cwd@^2.0.0: 4121 | version "2.0.0" 4122 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 4123 | dependencies: 4124 | resolve-from "^3.0.0" 4125 | 4126 | resolve-from@^1.0.0: 4127 | version "1.0.1" 4128 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 4129 | 4130 | resolve-from@^3.0.0: 4131 | version "3.0.0" 4132 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 4133 | 4134 | resolve-url@^0.2.1: 4135 | version "0.2.1" 4136 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 4137 | 4138 | resolve@1.1.7: 4139 | version "1.1.7" 4140 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 4141 | 4142 | resolve@^1.5.0, resolve@^1.6.0, resolve@^1.8.1: 4143 | version "1.8.1" 4144 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 4145 | dependencies: 4146 | path-parse "^1.0.5" 4147 | 4148 | restore-cursor@^2.0.0: 4149 | version "2.0.0" 4150 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 4151 | dependencies: 4152 | onetime "^2.0.0" 4153 | signal-exit "^3.0.2" 4154 | 4155 | ret@~0.1.10: 4156 | version "0.1.15" 4157 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 4158 | 4159 | right-align@^0.1.1: 4160 | version "0.1.3" 4161 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 4162 | dependencies: 4163 | align-text "^0.1.1" 4164 | 4165 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 4166 | version "2.6.1" 4167 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 4168 | dependencies: 4169 | glob "^7.0.5" 4170 | 4171 | rimraf@^2.5.4: 4172 | version "2.6.2" 4173 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 4174 | dependencies: 4175 | glob "^7.0.5" 4176 | 4177 | rsvp@^3.3.3: 4178 | version "3.6.2" 4179 | resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a" 4180 | 4181 | run-async@^2.2.0: 4182 | version "2.3.0" 4183 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 4184 | dependencies: 4185 | is-promise "^2.1.0" 4186 | 4187 | rxjs@^5.5.2: 4188 | version "5.5.11" 4189 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.11.tgz#f733027ca43e3bec6b994473be4ab98ad43ced87" 4190 | dependencies: 4191 | symbol-observable "1.0.1" 4192 | 4193 | safe-buffer@^5.0.1: 4194 | version "5.0.1" 4195 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 4196 | 4197 | safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 4198 | version "5.1.2" 4199 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 4200 | 4201 | safe-regex@^1.1.0: 4202 | version "1.1.0" 4203 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 4204 | dependencies: 4205 | ret "~0.1.10" 4206 | 4207 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 4208 | version "2.1.2" 4209 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 4210 | 4211 | sane@^2.0.0: 4212 | version "2.5.2" 4213 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.5.2.tgz#b4dc1861c21b427e929507a3e751e2a2cb8ab3fa" 4214 | dependencies: 4215 | anymatch "^2.0.0" 4216 | capture-exit "^1.2.0" 4217 | exec-sh "^0.2.0" 4218 | fb-watchman "^2.0.0" 4219 | micromatch "^3.1.4" 4220 | minimist "^1.1.1" 4221 | walker "~1.0.5" 4222 | watch "~0.18.0" 4223 | optionalDependencies: 4224 | fsevents "^1.2.3" 4225 | 4226 | sax@^1.2.4: 4227 | version "1.2.4" 4228 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 4229 | 4230 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 4231 | version "5.3.0" 4232 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 4233 | 4234 | semver@^5.4.1, semver@^5.5.0: 4235 | version "5.5.0" 4236 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 4237 | 4238 | set-blocking@^2.0.0, set-blocking@~2.0.0: 4239 | version "2.0.0" 4240 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 4241 | 4242 | set-immediate-shim@^1.0.1: 4243 | version "1.0.1" 4244 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 4245 | 4246 | set-value@^0.4.3: 4247 | version "0.4.3" 4248 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 4249 | dependencies: 4250 | extend-shallow "^2.0.1" 4251 | is-extendable "^0.1.1" 4252 | is-plain-object "^2.0.1" 4253 | to-object-path "^0.3.0" 4254 | 4255 | set-value@^2.0.0: 4256 | version "2.0.0" 4257 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 4258 | dependencies: 4259 | extend-shallow "^2.0.1" 4260 | is-extendable "^0.1.1" 4261 | is-plain-object "^2.0.3" 4262 | split-string "^3.0.1" 4263 | 4264 | shebang-command@^1.2.0: 4265 | version "1.2.0" 4266 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 4267 | dependencies: 4268 | shebang-regex "^1.0.0" 4269 | 4270 | shebang-regex@^1.0.0: 4271 | version "1.0.0" 4272 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 4273 | 4274 | shellwords@^0.1.1: 4275 | version "0.1.1" 4276 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 4277 | 4278 | signal-exit@^3.0.0, signal-exit@^3.0.2: 4279 | version "3.0.2" 4280 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 4281 | 4282 | sisteransi@^0.1.1: 4283 | version "0.1.1" 4284 | resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-0.1.1.tgz#5431447d5f7d1675aac667ccd0b865a4994cb3ce" 4285 | 4286 | slash@^1.0.0: 4287 | version "1.0.0" 4288 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 4289 | 4290 | slice-ansi@1.0.0: 4291 | version "1.0.0" 4292 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 4293 | dependencies: 4294 | is-fullwidth-code-point "^2.0.0" 4295 | 4296 | snapdragon-node@^2.0.1: 4297 | version "2.1.1" 4298 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 4299 | dependencies: 4300 | define-property "^1.0.0" 4301 | isobject "^3.0.0" 4302 | snapdragon-util "^3.0.1" 4303 | 4304 | snapdragon-util@^3.0.1: 4305 | version "3.0.1" 4306 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 4307 | dependencies: 4308 | kind-of "^3.2.0" 4309 | 4310 | snapdragon@^0.8.1: 4311 | version "0.8.2" 4312 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 4313 | dependencies: 4314 | base "^0.11.1" 4315 | debug "^2.2.0" 4316 | define-property "^0.2.5" 4317 | extend-shallow "^2.0.1" 4318 | map-cache "^0.2.2" 4319 | source-map "^0.5.6" 4320 | source-map-resolve "^0.5.0" 4321 | use "^3.1.0" 4322 | 4323 | sntp@1.x.x: 4324 | version "1.0.9" 4325 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 4326 | dependencies: 4327 | hoek "2.x.x" 4328 | 4329 | source-map-resolve@^0.5.0: 4330 | version "0.5.2" 4331 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 4332 | dependencies: 4333 | atob "^2.1.1" 4334 | decode-uri-component "^0.2.0" 4335 | resolve-url "^0.2.1" 4336 | source-map-url "^0.4.0" 4337 | urix "^0.1.0" 4338 | 4339 | source-map-support@^0.4.15: 4340 | version "0.4.18" 4341 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 4342 | dependencies: 4343 | source-map "^0.5.6" 4344 | 4345 | source-map-support@^0.4.2: 4346 | version "0.4.14" 4347 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 4348 | dependencies: 4349 | source-map "^0.5.6" 4350 | 4351 | source-map-support@^0.5.6: 4352 | version "0.5.8" 4353 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.8.tgz#04f5581713a8a65612d0175fbf3a01f80a162613" 4354 | dependencies: 4355 | buffer-from "^1.0.0" 4356 | source-map "^0.6.0" 4357 | 4358 | source-map-url@^0.4.0: 4359 | version "0.4.0" 4360 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 4361 | 4362 | source-map@^0.4.4: 4363 | version "0.4.4" 4364 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 4365 | dependencies: 4366 | amdefine ">=0.0.4" 4367 | 4368 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 4369 | version "0.5.6" 4370 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 4371 | 4372 | source-map@^0.5.7: 4373 | version "0.5.7" 4374 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 4375 | 4376 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 4377 | version "0.6.1" 4378 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 4379 | 4380 | spdx-correct@~1.0.0: 4381 | version "1.0.2" 4382 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 4383 | dependencies: 4384 | spdx-license-ids "^1.0.2" 4385 | 4386 | spdx-expression-parse@~1.0.0: 4387 | version "1.0.4" 4388 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 4389 | 4390 | spdx-license-ids@^1.0.2: 4391 | version "1.2.2" 4392 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 4393 | 4394 | split-string@^3.0.1, split-string@^3.0.2: 4395 | version "3.1.0" 4396 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 4397 | dependencies: 4398 | extend-shallow "^3.0.0" 4399 | 4400 | sprintf-js@~1.0.2: 4401 | version "1.0.3" 4402 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 4403 | 4404 | sshpk@^1.7.0: 4405 | version "1.16.1" 4406 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 4407 | dependencies: 4408 | asn1 "~0.2.3" 4409 | assert-plus "^1.0.0" 4410 | bcrypt-pbkdf "^1.0.0" 4411 | dashdash "^1.12.0" 4412 | ecc-jsbn "~0.1.1" 4413 | getpass "^0.1.1" 4414 | jsbn "~0.1.0" 4415 | safer-buffer "^2.0.2" 4416 | tweetnacl "~0.14.0" 4417 | 4418 | stack-utils@^1.0.1: 4419 | version "1.0.1" 4420 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 4421 | 4422 | static-extend@^0.1.1: 4423 | version "0.1.2" 4424 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 4425 | dependencies: 4426 | define-property "^0.2.5" 4427 | object-copy "^0.1.0" 4428 | 4429 | stealthy-require@^1.1.0: 4430 | version "1.1.1" 4431 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 4432 | 4433 | string-length@^2.0.0: 4434 | version "2.0.0" 4435 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 4436 | dependencies: 4437 | astral-regex "^1.0.0" 4438 | strip-ansi "^4.0.0" 4439 | 4440 | string-width@^1.0.1: 4441 | version "1.0.2" 4442 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 4443 | dependencies: 4444 | code-point-at "^1.0.0" 4445 | is-fullwidth-code-point "^1.0.0" 4446 | strip-ansi "^3.0.0" 4447 | 4448 | string-width@^2.0.0: 4449 | version "2.0.0" 4450 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 4451 | dependencies: 4452 | is-fullwidth-code-point "^2.0.0" 4453 | strip-ansi "^3.0.0" 4454 | 4455 | string-width@^2.1.0, string-width@^2.1.1: 4456 | version "2.1.1" 4457 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 4458 | dependencies: 4459 | is-fullwidth-code-point "^2.0.0" 4460 | strip-ansi "^4.0.0" 4461 | 4462 | string.prototype.matchall@^2.0.0: 4463 | version "2.0.0" 4464 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-2.0.0.tgz#2af8fe3d2d6dc53ca2a59bd376b089c3c152b3c8" 4465 | dependencies: 4466 | define-properties "^1.1.2" 4467 | es-abstract "^1.10.0" 4468 | function-bind "^1.1.1" 4469 | has-symbols "^1.0.0" 4470 | regexp.prototype.flags "^1.2.0" 4471 | 4472 | string_decoder@~0.10.x: 4473 | version "0.10.31" 4474 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 4475 | 4476 | string_decoder@~1.1.1: 4477 | version "1.1.1" 4478 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 4479 | dependencies: 4480 | safe-buffer "~5.1.0" 4481 | 4482 | stringstream@~0.0.4: 4483 | version "0.0.5" 4484 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 4485 | 4486 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 4487 | version "3.0.1" 4488 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 4489 | dependencies: 4490 | ansi-regex "^2.0.0" 4491 | 4492 | strip-ansi@^4.0.0: 4493 | version "4.0.0" 4494 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 4495 | dependencies: 4496 | ansi-regex "^3.0.0" 4497 | 4498 | strip-bom@3.0.0, strip-bom@^3.0.0: 4499 | version "3.0.0" 4500 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 4501 | 4502 | strip-bom@^2.0.0: 4503 | version "2.0.0" 4504 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 4505 | dependencies: 4506 | is-utf8 "^0.2.0" 4507 | 4508 | strip-eof@^1.0.0: 4509 | version "1.0.0" 4510 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 4511 | 4512 | strip-indent@^1.0.1: 4513 | version "1.0.1" 4514 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 4515 | dependencies: 4516 | get-stdin "^4.0.1" 4517 | 4518 | strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: 4519 | version "2.0.1" 4520 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 4521 | 4522 | supports-color@^2.0.0: 4523 | version "2.0.0" 4524 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 4525 | 4526 | supports-color@^3.1.2: 4527 | version "3.2.3" 4528 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 4529 | dependencies: 4530 | has-flag "^1.0.0" 4531 | 4532 | supports-color@^5.3.0, supports-color@^5.4.0: 4533 | version "5.4.0" 4534 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 4535 | dependencies: 4536 | has-flag "^3.0.0" 4537 | 4538 | symbol-observable@1.0.1: 4539 | version "1.0.1" 4540 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" 4541 | 4542 | symbol-tree@^3.2.2: 4543 | version "3.2.2" 4544 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 4545 | 4546 | table@^4.0.3: 4547 | version "4.0.3" 4548 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.3.tgz#00b5e2b602f1794b9acaf9ca908a76386a7813bc" 4549 | dependencies: 4550 | ajv "^6.0.1" 4551 | ajv-keywords "^3.0.0" 4552 | chalk "^2.1.0" 4553 | lodash "^4.17.4" 4554 | slice-ansi "1.0.0" 4555 | string-width "^2.1.1" 4556 | 4557 | tar-pack@^3.4.0: 4558 | version "3.4.0" 4559 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 4560 | dependencies: 4561 | debug "^2.2.0" 4562 | fstream "^1.0.10" 4563 | fstream-ignore "^1.0.5" 4564 | once "^1.3.3" 4565 | readable-stream "^2.1.4" 4566 | rimraf "^2.5.1" 4567 | tar "^2.2.1" 4568 | uid-number "^0.0.6" 4569 | 4570 | tar@^2.2.1: 4571 | version "2.2.1" 4572 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 4573 | dependencies: 4574 | block-stream "*" 4575 | fstream "^1.0.2" 4576 | inherits "2" 4577 | 4578 | tar@^4: 4579 | version "4.4.6" 4580 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.6.tgz#63110f09c00b4e60ac8bcfe1bf3c8660235fbc9b" 4581 | dependencies: 4582 | chownr "^1.0.1" 4583 | fs-minipass "^1.2.5" 4584 | minipass "^2.3.3" 4585 | minizlib "^1.1.0" 4586 | mkdirp "^0.5.0" 4587 | safe-buffer "^5.1.2" 4588 | yallist "^3.0.2" 4589 | 4590 | temp-write@^2.1.0: 4591 | version "2.1.0" 4592 | resolved "https://registry.yarnpkg.com/temp-write/-/temp-write-2.1.0.tgz#59890918e0ef09d548aaa342f4bd3409d8404e96" 4593 | dependencies: 4594 | graceful-fs "^4.1.2" 4595 | mkdirp "^0.5.0" 4596 | os-tmpdir "^1.0.0" 4597 | pify "^2.2.0" 4598 | pinkie-promise "^2.0.0" 4599 | uuid "^2.0.1" 4600 | 4601 | test-exclude@^4.2.1: 4602 | version "4.2.1" 4603 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" 4604 | dependencies: 4605 | arrify "^1.0.1" 4606 | micromatch "^3.1.8" 4607 | object-assign "^4.1.0" 4608 | read-pkg-up "^1.0.1" 4609 | require-main-filename "^1.0.1" 4610 | 4611 | text-table@^0.2.0: 4612 | version "0.2.0" 4613 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 4614 | 4615 | throat@^4.0.0: 4616 | version "4.1.0" 4617 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 4618 | 4619 | through@^2.3.6: 4620 | version "2.3.8" 4621 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 4622 | 4623 | tmp@^0.0.33: 4624 | version "0.0.33" 4625 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 4626 | dependencies: 4627 | os-tmpdir "~1.0.2" 4628 | 4629 | tmpl@1.0.x: 4630 | version "1.0.4" 4631 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 4632 | 4633 | to-fast-properties@^1.0.1: 4634 | version "1.0.2" 4635 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 4636 | 4637 | to-fast-properties@^1.0.3: 4638 | version "1.0.3" 4639 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 4640 | 4641 | to-fast-properties@^2.0.0: 4642 | version "2.0.0" 4643 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 4644 | 4645 | to-object-path@^0.3.0: 4646 | version "0.3.0" 4647 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 4648 | dependencies: 4649 | kind-of "^3.0.2" 4650 | 4651 | to-regex-range@^2.1.0: 4652 | version "2.1.1" 4653 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 4654 | dependencies: 4655 | is-number "^3.0.0" 4656 | repeat-string "^1.6.1" 4657 | 4658 | to-regex@^3.0.1, to-regex@^3.0.2: 4659 | version "3.0.2" 4660 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 4661 | dependencies: 4662 | define-property "^2.0.2" 4663 | extend-shallow "^3.0.2" 4664 | regex-not "^1.0.2" 4665 | safe-regex "^1.1.0" 4666 | 4667 | tough-cookie@>=2.3.3, tough-cookie@^2.3.4, tough-cookie@~2.4.3: 4668 | version "2.4.3" 4669 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" 4670 | dependencies: 4671 | psl "^1.1.24" 4672 | punycode "^1.4.1" 4673 | 4674 | tough-cookie@~2.3.0: 4675 | version "2.3.2" 4676 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 4677 | dependencies: 4678 | punycode "^1.4.1" 4679 | 4680 | tr46@^1.0.1: 4681 | version "1.0.1" 4682 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 4683 | dependencies: 4684 | punycode "^2.1.0" 4685 | 4686 | trim-newlines@^1.0.0: 4687 | version "1.0.0" 4688 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 4689 | 4690 | trim-right@^1.0.1: 4691 | version "1.0.1" 4692 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 4693 | 4694 | tunnel-agent@^0.6.0: 4695 | version "0.6.0" 4696 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 4697 | dependencies: 4698 | safe-buffer "^5.0.1" 4699 | 4700 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4701 | version "0.14.5" 4702 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 4703 | 4704 | type-check@~0.3.2: 4705 | version "0.3.2" 4706 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 4707 | dependencies: 4708 | prelude-ls "~1.1.2" 4709 | 4710 | uglify-js@^2.6: 4711 | version "2.8.21" 4712 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.21.tgz#1733f669ae6f82fc90c7b25ec0f5c783ee375314" 4713 | dependencies: 4714 | source-map "~0.5.1" 4715 | yargs "~3.10.0" 4716 | optionalDependencies: 4717 | uglify-to-browserify "~1.0.0" 4718 | 4719 | uglify-to-browserify@~1.0.0: 4720 | version "1.0.2" 4721 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4722 | 4723 | uid-number@^0.0.6: 4724 | version "0.0.6" 4725 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 4726 | 4727 | union-value@^1.0.0: 4728 | version "1.0.0" 4729 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 4730 | dependencies: 4731 | arr-union "^3.1.0" 4732 | get-value "^2.0.6" 4733 | is-extendable "^0.1.1" 4734 | set-value "^0.4.3" 4735 | 4736 | unset-value@^1.0.0: 4737 | version "1.0.0" 4738 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 4739 | dependencies: 4740 | has-value "^0.3.1" 4741 | isobject "^3.0.0" 4742 | 4743 | uri-js@^4.2.1: 4744 | version "4.2.2" 4745 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 4746 | dependencies: 4747 | punycode "^2.1.0" 4748 | 4749 | urix@^0.1.0: 4750 | version "0.1.0" 4751 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 4752 | 4753 | use@^3.1.0: 4754 | version "3.1.1" 4755 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 4756 | 4757 | user-home@^1.1.1: 4758 | version "1.1.1" 4759 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 4760 | 4761 | util-deprecate@~1.0.1: 4762 | version "1.0.2" 4763 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4764 | 4765 | util.promisify@^1.0.0: 4766 | version "1.0.0" 4767 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 4768 | dependencies: 4769 | define-properties "^1.1.2" 4770 | object.getownpropertydescriptors "^2.0.3" 4771 | 4772 | uuid@^2.0.1: 4773 | version "2.0.3" 4774 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 4775 | 4776 | uuid@^3.0.0: 4777 | version "3.0.1" 4778 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 4779 | 4780 | uuid@^3.3.2: 4781 | version "3.3.2" 4782 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" 4783 | 4784 | v8flags@^2.1.1: 4785 | version "2.1.1" 4786 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 4787 | dependencies: 4788 | user-home "^1.1.1" 4789 | 4790 | validate-npm-package-license@^3.0.1: 4791 | version "3.0.1" 4792 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4793 | dependencies: 4794 | spdx-correct "~1.0.0" 4795 | spdx-expression-parse "~1.0.0" 4796 | 4797 | verror@1.3.6: 4798 | version "1.3.6" 4799 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 4800 | dependencies: 4801 | extsprintf "1.0.2" 4802 | 4803 | w3c-hr-time@^1.0.1: 4804 | version "1.0.1" 4805 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" 4806 | dependencies: 4807 | browser-process-hrtime "^0.1.2" 4808 | 4809 | walker@~1.0.5: 4810 | version "1.0.7" 4811 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 4812 | dependencies: 4813 | makeerror "1.0.x" 4814 | 4815 | watch@~0.18.0: 4816 | version "0.18.0" 4817 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 4818 | dependencies: 4819 | exec-sh "^0.2.0" 4820 | minimist "^1.2.0" 4821 | 4822 | webidl-conversions@^4.0.2: 4823 | version "4.0.2" 4824 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 4825 | 4826 | whatwg-encoding@^1.0.1: 4827 | version "1.0.1" 4828 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 4829 | dependencies: 4830 | iconv-lite "0.4.13" 4831 | 4832 | whatwg-encoding@^1.0.3: 4833 | version "1.0.3" 4834 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 4835 | dependencies: 4836 | iconv-lite "0.4.19" 4837 | 4838 | whatwg-mimetype@^2.0.0, whatwg-mimetype@^2.1.0: 4839 | version "2.1.0" 4840 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.1.0.tgz#f0f21d76cbba72362eb609dbed2a30cd17fcc7d4" 4841 | 4842 | whatwg-url@^6.4.0, whatwg-url@^6.4.1: 4843 | version "6.5.0" 4844 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" 4845 | dependencies: 4846 | lodash.sortby "^4.7.0" 4847 | tr46 "^1.0.1" 4848 | webidl-conversions "^4.0.2" 4849 | 4850 | which-module@^2.0.0: 4851 | version "2.0.0" 4852 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 4853 | 4854 | which@^1.2.12: 4855 | version "1.2.14" 4856 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 4857 | dependencies: 4858 | isexe "^2.0.0" 4859 | 4860 | which@^1.2.9, which@^1.3.0: 4861 | version "1.3.1" 4862 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 4863 | dependencies: 4864 | isexe "^2.0.0" 4865 | 4866 | wide-align@^1.1.0: 4867 | version "1.1.0" 4868 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 4869 | dependencies: 4870 | string-width "^1.0.1" 4871 | 4872 | window-size@0.1.0: 4873 | version "0.1.0" 4874 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4875 | 4876 | wordwrap@0.0.2: 4877 | version "0.0.2" 4878 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4879 | 4880 | wordwrap@~0.0.2: 4881 | version "0.0.3" 4882 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4883 | 4884 | wordwrap@~1.0.0: 4885 | version "1.0.0" 4886 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4887 | 4888 | wrap-ansi@^2.0.0: 4889 | version "2.1.0" 4890 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4891 | dependencies: 4892 | string-width "^1.0.1" 4893 | strip-ansi "^3.0.1" 4894 | 4895 | wrappy@1: 4896 | version "1.0.2" 4897 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4898 | 4899 | write-file-atomic@^2.1.0: 4900 | version "2.3.0" 4901 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 4902 | dependencies: 4903 | graceful-fs "^4.1.11" 4904 | imurmurhash "^0.1.4" 4905 | signal-exit "^3.0.2" 4906 | 4907 | write@^0.2.1: 4908 | version "0.2.1" 4909 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4910 | dependencies: 4911 | mkdirp "^0.5.1" 4912 | 4913 | ws@^5.2.0: 4914 | version "5.2.2" 4915 | resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" 4916 | dependencies: 4917 | async-limiter "~1.0.0" 4918 | 4919 | xml-name-validator@^3.0.0: 4920 | version "3.0.0" 4921 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 4922 | 4923 | y18n@^3.2.1: 4924 | version "3.2.1" 4925 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4926 | 4927 | yallist@^2.1.2: 4928 | version "2.1.2" 4929 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4930 | 4931 | yallist@^3.0.0, yallist@^3.0.2: 4932 | version "3.0.2" 4933 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 4934 | 4935 | yargs-parser@^9.0.2: 4936 | version "9.0.2" 4937 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 4938 | dependencies: 4939 | camelcase "^4.1.0" 4940 | 4941 | yargs@^11.0.0: 4942 | version "11.1.0" 4943 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.1.0.tgz#90b869934ed6e871115ea2ff58b03f4724ed2d77" 4944 | dependencies: 4945 | cliui "^4.0.0" 4946 | decamelize "^1.1.1" 4947 | find-up "^2.1.0" 4948 | get-caller-file "^1.0.1" 4949 | os-locale "^2.0.0" 4950 | require-directory "^2.1.1" 4951 | require-main-filename "^1.0.1" 4952 | set-blocking "^2.0.0" 4953 | string-width "^2.0.0" 4954 | which-module "^2.0.0" 4955 | y18n "^3.2.1" 4956 | yargs-parser "^9.0.2" 4957 | 4958 | yargs@~3.10.0: 4959 | version "3.10.0" 4960 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4961 | dependencies: 4962 | camelcase "^1.0.2" 4963 | cliui "^2.1.0" 4964 | decamelize "^1.0.0" 4965 | window-size "0.1.0" 4966 | --------------------------------------------------------------------------------