├── .coveralls.yml ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── convert ├── index.js └── test-css │ ├── anotherFile.css │ ├── css │ └── foo.css │ ├── nested │ ├── folder │ │ └── bar.css │ └── nested.css │ └── testjs.js ├── index.js ├── index.test.js ├── package.json └── yarn.lock /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandrina-p/postcss-start-to-end/59728c01c09848c93fd6db3c53cf70076c4eb875/.coveralls.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 4 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.{json,yml}] 12 | indent_size = 2 13 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | 'env': { 3 | 'browser': true, 4 | 'es6': true, 5 | }, 6 | 'extends': 'eslint:recommended', 7 | 'parserOptions': { 8 | 'sourceType': 'module' 9 | }, 10 | 'rules': { 11 | 'indent': ['error', 4], 12 | 'linebreak-style': [ 'error', 'unix' ], 13 | 'quotes': [ 'error', 'single' ], 14 | 'max-len': ['error', 120], 15 | 'semi': [ 'error', 'always' ], 16 | 'spaced-comment': ['error', 'always', { 17 | 'line': { 18 | 'markers': ['/'], 19 | 'exceptions': ['-', '+'] 20 | }, 21 | 'block': { 22 | 'markers': ['!'], 23 | 'exceptions': ['*'], 24 | 'balanced': true 25 | } 26 | }], 27 | 28 | }, 29 | 'globals': { 30 | 'require': false, 31 | 'module': false, 32 | 'it': false, 33 | 'expect': false, 34 | }, 35 | } 36 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | yarn-error.log 4 | coverage 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .npmignore 2 | .gitignore 3 | .editorconfig 4 | .eslintrc 5 | 6 | node_modules/ 7 | npm-debug.log 8 | yarn.lock 9 | convert/test-css 10 | coverage 11 | 12 | *.test.js 13 | .travis.yml 14 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | cache: yarn 3 | node_js: 4 | - stable 5 | - "6" 6 | - "4" 7 | after_success: 8 | - cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js" 9 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | All notable changes to this project will be documented in this file. 3 | 4 | The format is based on [Keep a Changelog](http://keepachangelog.com/) 5 | and this project adheres to [Semantic Versioning](http://semver.org/). 6 | 7 | ## [Unreleased] 8 | ### Added 9 | 10 | ### Fix 11 | 12 | ### TODO 13 | - Tests on /convert needed 14 | 15 | --- 16 | 17 | ## [1.0.1] - 2017-09-14 18 | ### Fix 19 | - Issue with node_modules path 20 | - Direction can be `LTR` or `ltr` 21 | 22 | ## [1.0.0] - 2017-06-14 23 | ### Added 24 | - Updated to `postcss 6.x.x`. 25 | 26 | ## [0.3.4] - 2017-06-02 27 | ### Added 28 | - Add option `ignoreNodeModules` that ignores any CSS file inside `/node_modules` folder. 29 | 30 | ## [0.3.3] - 2017-05-16 31 | ### Changed 32 | - Fix / create tags names 33 | 34 | ## [0.3.2] - 2017-05-05 35 | ### Changed 36 | - Fix issue convert/ - when multiple subfolders are found only 1st one is replaced 37 | 38 | ## [0.3.1] - 2017-05-05 39 | ### Changed 40 | - Fix issue convert/ - ltr start | end were inverted 41 | 42 | ## [0.3.0] - 2017-05-05 43 | ### Changed 44 | - Replace `postcss-browser-reporter` by `postcss-reporter` 45 | 46 | ## [0.2.2] - 2017-04-30 47 | ### Added 48 | - Coveralls integration 49 | - Improve README 50 | - Improve description 51 | 52 | ## [0.2.1] - 2017-04-30 53 | ### Added 54 | - Npm badge 55 | 56 | ## [0.1.0] - 2017-04-30 57 | ### Added 58 | - Initial Release 59 | - Plugin with 100% test Coverage 60 | 61 | [0.3.3]: https://github.com/sandrina-p/postcss-start-to-end/compare/0.3.2...0.3.3 62 | [0.3.2]: https://github.com/sandrina-p/postcss-start-to-end/compare/0.3.1...0.3.2 63 | [0.3.1]: https://github.com/sandrina-p/postcss-start-to-end/compare/0.3.0...0.3.1 64 | [0.3.0]: https://github.com/sandrina-p/postcss-start-to-end/compare/0.2.2...0.3.0 65 | [0.2.2]: https://github.com/sandrina-p/postcss-start-to-end/compare/0.2.1...0.2.2 66 | [0.2.1]: https://github.com/sandrina-p/postcss-start-to-end/compare/0.1.0...0.2.1 67 | [0.1.0]: https://github.com/sandrina-p/postcss-start-to-end/tags/v0.1.0 68 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright 2016 Sandrina Pereira 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PostCSS Start To End 2 | 3 | [![npm version](https://badge.fury.io/js/postcss-start-to-end.svg)](https://badge.fury.io/js/postcss-start-to-end) 4 | [![Build Status](https://travis-ci.org/sandrina-p/postcss-start-to-end.svg?branch=master)](https://travis-ci.org/sandrina-p/postcss-start-to-end) 5 | 6 | 7 | [PostCSS](https://github.com/postcss/postcss) plugin that lets you control your layout (`ltr` or `rtl`) through logical rather than direction / physical rules. 8 | 9 | Inspired by Flexbox and CSS Grid syntax, use `start` or `end` to output `left` or `right` depending on document direction (`rtl` or `ltr`). 10 | 11 | **Input** 12 | ```css 13 | .foo { 14 | padding-start: 1rem; 15 | border-end: 1rem solid teal; 16 | } 17 | ``` 18 | 19 | **Output** 20 | ```css 21 | .foo { 22 | padding-left: 1rem; 23 | border-right: 1rem solid teal; 24 | } 25 | ``` 26 | 27 | ## Usage 28 | 29 | ```js 30 | postcss([ 31 | require('postcss-start-to-end'), 32 | require('postcss-reporter') // show warnings - check options to know more 33 | ]) 34 | ``` 35 | 36 | ### With some options 37 | 38 | ```js 39 | postcss([ 40 | require('postcss-start-to-end')({ 41 | direction: 'RTL', 42 | warnings: false, 43 | }), 44 | require('postcss-reporter') 45 | ]); 46 | ``` 47 | 48 | ## Options 49 | 50 | #### `direction` 51 | Default writing mode of CSS. 52 | **Type:** `string` 53 | **Default:** `'LTR'` 54 | **Values:** `'LTR'`, `'RTL'` 55 | 56 | **Input** 57 | ```css 58 | .item { 59 | border-start: 1px solid teal; 60 | padding: 0 3rem 0 0; 61 | } 62 | ``` 63 | 64 | **output with `direction: 'LTR'`** 65 | ```css 66 | .item { 67 | border-left: 1px solid teal; 68 | padding: 0 3rem 0 0; 69 | } 70 | ``` 71 | 72 | **output with `direction: 'RTL'`** 73 | ```css 74 | .item { 75 | border-right: 1px solid teal; 76 | padding: 0 0 0 3rem; 77 | } 78 | ``` 79 | 80 | #### `warnings` 81 | Output on CLI warnings about properties / rules found that don't follow start-to-end syntax. 82 | **Type:** `boolean` 83 | **Default:** `true` 84 | **Values:** `true`, `false` 85 | 86 | **Example** 87 | 88 | ```css 89 | .item { 90 | margin-left: 10%; 91 | } 92 | ``` 93 | 94 | **Console warning if `direction: ltr:`** 95 | > margin-left: 10%; found on line 2. Replace it by `margin-start` to support LTR and RTL directions. 96 | 97 | **Console warning if `direction: rtl:`** 98 | > margin-left: 10%; found on line 2. Replace it by `margin-end` to support LTR and RTL directions. 99 | 100 | 101 | #### `ignoreNodeModules` 102 | Ignore any CSS file inside `/node_modules` folder. 103 | **Type:** `boolean` 104 | **Default:** `true` 105 | **Values:** `true`, `false` 106 | 107 | 108 | ## Rules supported 109 | 110 | | Input | Output LTR | output RTL | 111 | | ----------------------- | ----------------------- | ----------------------- | 112 | | **Alignment** | | | 113 | | text-align: start; | text-align: left; | text-align: right; | 114 | | text-align: end; | text-align: right; | text-align: left; | 115 | | **Clear** | | | 116 | | clear: start; | clear: left; | clear: right; | 117 | | clear: end; | clear: right; | clear: left; | 118 | | **Float** | | | 119 | | float: start; | float: left; | float: right; | 120 | | float: end; | float: right; | float: left; | 121 | | **Border** | | | 122 | | border-start | border-left | border-right | 123 | | border-end | border-right | border-left | 124 | | border-top-start | border-top-left | border-top-right | 125 | | border-top-end | border-top-right | border-top-left | 126 | | border-bottom-end | border-bottom-right | border-bottom-left | 127 | | border-bottom-start | border-bottom-left | border-bottom-right | 128 | | **Margin** | | | 129 | | margin-start | margin-left | margin-right | 130 | | margin-end | margin-right | margin-left | 131 | | margin: 0 2rem 0 3rem; | margin: 0 2rem 0 3rem; | margin: 0 3rem 0 2rem; | 132 | | **Padding** | | | 133 | | padding-start | padding-left | padding-right | 134 | | padding-end | padding-right | padding-left | 135 | | padding: 0 1rem 0 4rem; | padding: 0 1rem 0 4rem; | padding: 0 4rem 0 1rem; | 136 | | **Position** | | | 137 | | start: 1rem; | left: 1rem; | right: 1rem; | 138 | | end: 1rem; | right: 1rem; | left: 1rem; | 139 | 140 | 141 | ## BONUS: Convert your existing code to this syntax 142 | 143 | Don't you feel like find/replace rules in each one of your `*.css` files? 144 | 145 | No worries, I built a simple tool that does that for you. 146 | You just need to tell where you want to run the converter (folder or file.css). By default it runs in `src` folder 147 | 148 | **Input** 149 | ```css 150 | .item { 151 | padding-left: 5rem; 152 | margin-right : 1rem; 153 | float:left; 154 | } 155 | ``` 156 | 157 | ### Convert from LTR layout 158 | _Convert_ by default runs on `src` folder 159 | `node node_modules/postcss-start-to-end/convert` 160 | 161 | Set a specific folder to run: 162 | `node node_modules/postcss-start-to-end/convert src/components` 163 | 164 | Set a specific file to run: 165 | `node node_modules/postcss-start-to-end/convert styles/index.css` 166 | 167 | **Output** 168 | ```css 169 | .item { 170 | padding-start: 5rem; 171 | margin-end : 1rem; 172 | float:start; 173 | } 174 | ``` 175 | 176 | ### Convert RTL layout 177 | 178 | _Convert_ by default runs on `src` folder 179 | `node node_modules/postcss-start-to-end/convert --rtl` 180 | 181 | Set a specific folder to run: 182 | `node node_modules/postcss-start-to-end/convert src/components --rtl` 183 | 184 | Set a specific file to run: 185 | `node node_modules/postcss-start-to-end/convert styles/index.css --rtl` 186 | 187 | **Output** 188 | ```css 189 | .item { 190 | padding-end: 5rem; 191 | margin-start : 1rem; 192 | float:end; 193 | } 194 | ``` 195 | 196 | 197 | ## F.A.Q. 198 | 199 | **Why should I use this instead of plugins that convert `*-left` to `*-right` and vice-versa?** 200 | 201 | This is not a replacement of those kind of plugins. 202 | 203 | This is a plugin to let you write code with a logical thought in mind rather than a physical/direction one. 204 | 205 | Then if you need to convert the outputted CSS to the opposite direction you might want to try [postcss-rtl](https://www.npmjs.com/package/postcss-rtl). 206 | 207 | **Is this tested?** 208 | 209 | - The PostCSS Plugin has _100% coverage_ test with all [possible scenarios](index.test.js) that crossed my mind. 210 | - The Converter tests will be added soon! 211 | - Don't fear: [Travis-ci](https://travis-ci.org/sandrina-p/postcss-start-to-end) is doing it's job! 212 | 213 | 214 | ## Motivation | References 215 | 216 | There is a CSS Draft Spec about [CSS Logical Properties](https://drafts.csswg.org/css-logical-props/) in Level 1. 217 | Because this technology's specification [has not stabilized](https://drafts.csswg.org/css-logical-props/#issues-index), I decided to keep this plugin syntax simple and straight following what is already defined without adding _more sugar_. 218 | 219 | 220 | ## Contribute 221 | Any doubts or suggestions you may have, feel free to create an issue on [github repository](https://github.com/sandrina-p/postcss-start-to-end/issues). 222 | 223 | 224 | ## License 225 | [MIT License](LICENSE) 226 | -------------------------------------------------------------------------------- /convert/index.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-console */ 2 | /* global process */ 3 | 4 | /* ======================================================================== 5 | Convert direction rules to logical rules. 6 | Ex: padding-left: 5px; -> padding-start: 5px; 7 | 8 | HOW TO USE: 9 | 10 | 1. Copy this file to your project root. 11 | 2. Run `node convert` 12 | This will convert all *.css files inside /src 13 | If you want to run it in other folder/file, just run 14 | `node convert myfolder/file.css` or `node conver myfolder/` 15 | 16 | 3. If, for some reason, some rule wasn't converted, open a issue. 17 | 18 | ======================================================================== */ 19 | 20 | var fs = require('fs'); 21 | var path = require('path'); 22 | var pathToConvert = 'src'; 23 | var logic = {}; 24 | 25 | function convertNewValues(data, fileDir) { 26 | console.log(fileDir, 'started...'); 27 | var newData = data 28 | 29 | // replace ": " 30 | .replace(/margin-left:/g, `margin-${logic.left}:`) 31 | .replace(/margin-right:/g, `margin-${logic.right}:`) 32 | 33 | .replace(/padding-left:/g, `padding-${logic.left}:`) 34 | .replace(/padding-right:/g, `padding-${logic.right}:`) 35 | 36 | .replace(/border-left:/g, `border-${logic.left}:`) 37 | .replace(/border-right:/g, `border-${logic.right}:`) 38 | .replace(/border-top-left:/g, `border-top-${logic.left}:`) 39 | .replace(/border-top-right:/g, `border-top-${logic.right}:`) 40 | .replace(/border-bottom-right:/g, `border-bottom-${logic.right}:`) 41 | .replace(/border-bottom-left:/g, `border-bottom-${logic.left}:`) 42 | 43 | .replace(/left:/g, `${logic.left}:`) 44 | .replace(/right:/g, `${logic.right}:`) 45 | 46 | .replace(/text-align: left/g, `text-align: ${logic.left}`) 47 | .replace(/text-align: right/g, `text-align: ${logic.right}`) 48 | 49 | .replace(/clear: left/g, `clear: ${logic.left}`) 50 | .replace(/clear: right/g, `clear: ${logic.right}`) 51 | 52 | .replace(/float: left/g, `float: ${logic.left}`) 53 | .replace(/float: right/g, `float: ${logic.right}`) 54 | 55 | // replace " :" 56 | .replace(/margin-left :/g, `margin-${logic.left} :`) 57 | .replace(/margin-right :/g, `margin-${logic.right} :`) 58 | 59 | .replace(/padding-left :/g, `padding-${logic.left} :`) 60 | .replace(/padding-right :/g, `padding-${logic.right} :`) 61 | 62 | .replace(/border-left :/g, `border-${logic.left} :`) 63 | .replace(/border-right :/g, `border-${logic.right} :`) 64 | .replace(/border-top-left :/g, `border-top-${logic.left} :`) 65 | .replace(/border-top-right :/g, `border-top-${logic.right} :`) 66 | .replace(/border-bottom-right :/g, `border-bottom-${logic.right} :`) 67 | .replace(/border-bottom-left :/g, `border-bottom-${logic.left} :`) 68 | 69 | .replace(/left :/g, `${logic.left} :`) 70 | .replace(/right :/g, `${logic.right} :`) 71 | 72 | .replace(/text-align : left/g, `text-align : ${logic.left}`) 73 | .replace(/text-align : right/g, `text-align : ${logic.right}`) 74 | 75 | .replace(/clear : left/g, `clear : ${logic.left}`) 76 | .replace(/clear : right/g, `clear : ${logic.right}`) 77 | 78 | .replace(/float : left/g, `float : ${logic.left}`) 79 | .replace(/float : right/g, `float : ${logic.right}`) 80 | 81 | // replace ":" 82 | .replace(/clear:left/g, `clear:${logic.left}`) 83 | .replace(/clear:right/g, `clear:${logic.right}`) 84 | 85 | .replace(/float:left/g, `float:${logic.left}`) 86 | .replace(/float:right/g, `float:${logic.right}`); 87 | return newData; 88 | } 89 | 90 | function convertThisCSS(fileDir) { 91 | fs.readFile(fileDir, 'utf-8', function (err, data) { 92 | if (err) throw err; 93 | 94 | var newValue = convertNewValues(data, fileDir); 95 | 96 | fs.writeFile(fileDir, newValue, 'utf-8', function (error) { 97 | if (error) throw error; 98 | console.log(fileDir, 'converted!'); 99 | }); 100 | }); 101 | } 102 | 103 | function walkDir(dir, done) { 104 | fs.readdir(dir, function (err, list) { 105 | console.log('Searching', dir, '...'); 106 | if (err) return done(err); 107 | var i = 0; 108 | 109 | (function statFile() { 110 | var file = list[i++]; 111 | 112 | if (!file) { 113 | console.log('Search on folder', dir, 'finished'); 114 | } 115 | 116 | file = dir + '/' + file; 117 | 118 | fs.stat(file, function (error, stat) { 119 | if (error) return done(null, error); 120 | 121 | if (stat && stat.isDirectory()) { 122 | walkDir(file, function(errFile) { 123 | if (errFile) throw err; 124 | statFile(); 125 | }); 126 | 127 | } else { 128 | 129 | if (path.extname(file) === '.css') { 130 | convertThisCSS(file); 131 | } 132 | 133 | statFile(); 134 | } 135 | 136 | return true; 137 | }); 138 | 139 | return true; 140 | }()); 141 | 142 | return true; 143 | }); 144 | } 145 | 146 | function walkDone(err) { 147 | if (err) throw err; 148 | 149 | console.log('--DONE!'); 150 | return true; 151 | } 152 | 153 | function setOptions() { 154 | 155 | // default logic follows LTR; 156 | logic.left = 'start'; 157 | logic.right = 'end'; 158 | 159 | process.argv.forEach((val, index) => { 160 | if (val == '--RTL') { 161 | // invert logic to follows RTL; 162 | logic.left = 'end'; 163 | logic.right = 'start'; 164 | return true; 165 | } 166 | 167 | // hopping index 2 brings the path given 168 | if (index === 2) { 169 | pathToConvert = val; 170 | return true; 171 | } 172 | }); 173 | } 174 | 175 | function convertToStartToEnd() { 176 | setOptions(); 177 | 178 | if (pathToConvert.indexOf('.css') > 1) { 179 | convertThisCSS(pathToConvert); 180 | } else { 181 | walkDir(pathToConvert, walkDone); 182 | } 183 | } 184 | 185 | convertToStartToEnd(); 186 | -------------------------------------------------------------------------------- /convert/test-css/anotherFile.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | color: blue; 3 | padding-left: 5px; 4 | float: right; 5 | } 6 | -------------------------------------------------------------------------------- /convert/test-css/css/foo.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | color: blue; 3 | margin-right: 5px; 4 | border-right: 1px solid red; 5 | } 6 | -------------------------------------------------------------------------------- /convert/test-css/nested/folder/bar.css: -------------------------------------------------------------------------------- 1 | .bar { 2 | padding: 5px 3px 4px; 3 | left: 3px; 4 | text-align: left; 5 | } 6 | -------------------------------------------------------------------------------- /convert/test-css/nested/nested.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | color: blue; 3 | margin-left: 10px; 4 | clear: right; 5 | } 6 | -------------------------------------------------------------------------------- /convert/test-css/testjs.js: -------------------------------------------------------------------------------- 1 | console.log('coisas'); 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /* eslint indent: ["error", 4, { "SwitchCase": 1 }] */ 2 | /* eslint max-len: ["error", 140 ] */ 3 | 4 | var postcss = require('postcss'); 5 | 6 | const defaultOpts = { 7 | direction: 'LTR', 8 | warnings: true, 9 | ignoreNodeModules: true, 10 | }; 11 | 12 | const propsToConvert = [ 13 | 'margin-left', 14 | 'margin-right', 15 | 'padding-left', 16 | 'padding-right', 17 | 'border-left', 18 | 'border-right', 19 | 'border-top-left', 20 | 'border-top-right', 21 | 'border-bottom-right', 22 | 'border-bottom-left', 23 | 'left', 24 | 'right' 25 | ]; 26 | 27 | const propsWithValuesToConvert = [ 28 | 'clear', 29 | 'text-align', 30 | 'float' 31 | ]; 32 | 33 | var finalOpts = {}; 34 | var isLTR = null; 35 | var logic = {}; 36 | 37 | function warnAboutNoStartEndSyntax(ruleProp, ruleValue, line, result) { 38 | const warningMsg = (rule, line, newRule) => `"${rule}" found on line ${line}. Replace it by "${newRule}" to support LTR and RTL`; 39 | 40 | if (propsToConvert.indexOf(ruleProp) > -1) { 41 | const newRule = ruleProp.replace('left', logic.left).replace('right', logic.right); 42 | 43 | return result.warn( 44 | warningMsg(`${ruleProp}:`, line, newRule) 45 | ); 46 | } 47 | 48 | if (propsWithValuesToConvert.indexOf(ruleProp) > -1 && ['left', 'right'].indexOf(ruleValue) > -1) { 49 | const newValue = ruleValue.replace('left', logic.left).replace('right', logic.right); 50 | 51 | return result.warn( 52 | warningMsg(`${ruleProp}: ${ruleValue};`, line, `${ruleProp}: ${newValue};`) 53 | ); 54 | } 55 | 56 | return false; 57 | } 58 | 59 | function convertPropsWithStartEnd(ruleProp) { 60 | switch (ruleProp) { 61 | 62 | // ruleProp that contains "start" 63 | case 'start': 64 | case 'border-start': 65 | case 'border-top-start': 66 | case 'border-bottom-start': 67 | case 'margin-start': 68 | case 'padding-start': 69 | return ruleProp.replace('start', logic.start); 70 | 71 | // ruleProp that contains "end" 72 | case 'end': 73 | case 'border-end': 74 | case 'border-top-end': 75 | case 'border-bottom-end': 76 | case 'margin-end': 77 | case 'padding-end': 78 | return ruleProp.replace('end', logic.end); 79 | 80 | default: 81 | return false; 82 | } 83 | } 84 | 85 | function convertValueWithStartEnd(ruleProp, ruleValue) { 86 | switch (ruleProp) { 87 | case 'clear': 88 | case 'float': 89 | case 'text-align': 90 | if (ruleValue === 'start') { 91 | return logic.start; 92 | } else if (ruleValue === 'end') { 93 | return logic.end; 94 | } 95 | return ruleValue; 96 | 97 | default: 98 | return false; 99 | } 100 | } 101 | 102 | function convertPropWith4Values(ruleProp, ruleValue) { 103 | switch (ruleProp) { 104 | case 'margin': 105 | case 'padding': 106 | if (logic.reorderValues) { 107 | 108 | // [1] split values by " " (spaces) found. 109 | // '1rem 1rem 1rem 4rem' 110 | // '1rem 1rem 1rem 1rem' 111 | // both should return ['1rem', '1rem', '1rem', '4rem'] 112 | const arrValues = ruleValue.split(/\s{1,}/g); // [1] 113 | 114 | // if value has all the 4 sides 115 | // swap 2nd value ([1]) with last 4th value ([3]) 116 | if (arrValues.length === 4) { 117 | const valueToStore = arrValues[1]; 118 | 119 | arrValues[1] = arrValues[3]; 120 | arrValues[3] = valueToStore; 121 | 122 | return arrValues.join(' '); 123 | } 124 | 125 | return false; 126 | } 127 | 128 | return false; 129 | default: 130 | return false; 131 | } 132 | } 133 | 134 | 135 | module.exports = postcss.plugin('postcss-start-to-end', opts => { 136 | 137 | // Work with options 138 | finalOpts = Object.assign({}, defaultOpts, opts); 139 | isLTR = finalOpts.direction === 'LTR'; 140 | logic = { 141 | start: isLTR ? 'left' : 'right', 142 | end: isLTR ? 'right' : 'left', 143 | left: isLTR ? 'start' : 'end', 144 | right: isLTR ? 'end' : 'start', 145 | reorderValues: !isLTR 146 | }; 147 | 148 | return (root, result) => { 149 | root.walkDecls(rule => { 150 | if (finalOpts.ignoreNodeModules && rule.source.input.file && rule.source.input.file.indexOf('node_modules') > -1) { 151 | return false; 152 | } 153 | 154 | if (rule.value) { 155 | if (finalOpts.warnings) { 156 | warnAboutNoStartEndSyntax(rule.prop, rule.value, rule.source.start.line, result); 157 | } 158 | 159 | const newProp = convertPropsWithStartEnd(rule.prop); 160 | if (newProp) { 161 | rule.prop = newProp; 162 | return true; 163 | } 164 | 165 | const newValue = convertValueWithStartEnd(rule.prop, rule.value); 166 | if (newValue) { 167 | rule.value = newValue; 168 | return true; 169 | } 170 | 171 | const newSwapValue = convertPropWith4Values(rule.prop, rule.value); 172 | if (newSwapValue) { 173 | rule.value = newSwapValue; 174 | return true; 175 | } 176 | } 177 | 178 | return true; 179 | }); 180 | }; 181 | }); 182 | -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- 1 | /* eslint max-len: ["error", 120 ] */ 2 | 3 | var postcss = require('postcss'); 4 | 5 | var plugin = require('./'); 6 | 7 | function run(input, output, opts) { 8 | return postcss([ plugin(opts) ]).process(input) 9 | .then(result => { 10 | expect(result.css).toEqual(output); 11 | expect(result.warnings().length).toBe(0); 12 | }); 13 | } 14 | 15 | var css = ''; 16 | var cssOutputted = ''; 17 | 18 | /* ================================================================== 19 | Border Tests 20 | ================================================================== */ 21 | 22 | it('LTR: border-start: -> border-left:', () => { 23 | css = '.foo { border-start: 1px solid teal; }'; 24 | cssOutputted = '.foo { border-left: 1px solid teal; }'; 25 | 26 | return run(css, cssOutputted, {}); 27 | }); 28 | 29 | it('RTL: border-start: -> border-right:', () => { 30 | css = '.foo { border-start: 1px solid teal; }'; 31 | cssOutputted = '.foo { border-right: 1px solid teal; }'; 32 | 33 | return run(css, cssOutputted, { direction: 'RTL' }); 34 | }); 35 | 36 | it('LTR: border-end -> border-right:', () => { 37 | css = '.foo { border-end: 1px solid teal; }'; 38 | cssOutputted = '.foo { border-right: 1px solid teal; }'; 39 | 40 | return run(css, cssOutputted, {}); 41 | }); 42 | 43 | it('RTL: border-end -> border-left:', () => { 44 | css = '.foo { border-end: 1px solid teal; }'; 45 | cssOutputted = '.foo { border-left: 1px solid teal; }'; 46 | 47 | return run(css, cssOutputted, { direction: 'RTL' }); 48 | }); 49 | 50 | /* ================================================================== 51 | Padding Tests 52 | ================================================================== */ 53 | 54 | it('LTR: padding-start: -> padding-left:', () => { 55 | css = '.foo { padding-start: 1rem; }'; 56 | cssOutputted = '.foo { padding-left: 1rem; }'; 57 | 58 | return run(css, cssOutputted, {}); 59 | }); 60 | 61 | it('RTL: padding-start: -> padding-right:', () => { 62 | css = '.foo { padding-start: 1rem; }'; 63 | cssOutputted = '.foo { padding-right: 1rem; }'; 64 | 65 | return run(css, cssOutputted, { direction: 'RTL' }); 66 | }); 67 | 68 | it('LTR: padding-end -> padding-right:', () => { 69 | css = '.foo { padding-end: 1rem; }'; 70 | cssOutputted = '.foo { padding-right: 1rem; }'; 71 | 72 | return run(css, cssOutputted, {}); 73 | }); 74 | 75 | it('RTL: padding-end -> padding-left:', () => { 76 | css = '.foo { padding-end: 1rem; }'; 77 | cssOutputted = '.foo { padding-left: 1rem; }'; 78 | 79 | return run(css, cssOutputted, { direction: 'RTL' }); 80 | }); 81 | 82 | // With 4 values 83 | it('LTR: padding: 1rem 1rem 1rem 2rem; -> same', () => { 84 | css = '.foo { padding: 1rem 1rem 1rem 2rem; }'; 85 | 86 | return run(css, css, {}); 87 | }); 88 | 89 | it('LTR: padding: 1rem 2rem 1rem; -> same', () => { 90 | css = '.foo { padding: 1rem 1rem 2rem; }'; 91 | 92 | return run(css, css, {}); 93 | }); 94 | 95 | it('LTR: padding: 1rem 1rem 1rem 2rem; -> same', () => { 96 | css = '.foo { padding: 1rem 1rem 1rem 2rem; }'; 97 | 98 | return run(css, css, {}); 99 | }); 100 | 101 | it('RTL: padding: 1rem 2rem 1rem 2rem; -> padding: 1rem 2rem 1rem 1rem;', () => { 102 | css = '.foo { padding: 1rem 1rem 1rem 2rem; }'; 103 | cssOutputted = '.foo { padding: 1rem 2rem 1rem 1rem; }'; 104 | 105 | return run(css, cssOutputted, { direction: 'RTL' }); 106 | }); 107 | 108 | it('RTL: padding: 1rem 1rem 1rem 3rem; -> padding: 1rem 3rem 1rem 1rem;', () => { 109 | css = '.foo { padding: 1rem 1rem 1rem 3rem; }'; 110 | cssOutputted = '.foo { padding: 1rem 3rem 1rem 1rem; }'; 111 | 112 | return run(css, cssOutputted, { direction: 'RTL' }); 113 | }); 114 | 115 | it('RTL: padding: 1rem 1rem 3rem; -> same', () => { 116 | css = '.foo { padding: 1rem 1rem 3rem; }'; 117 | 118 | return run(css, css, { direction: 'RTL' }); 119 | }); 120 | 121 | 122 | /* ================================================================== 123 | Margin Tests 124 | ================================================================== */ 125 | 126 | it('LTR: margin-start: -> margin-left:', () => { 127 | css = '.foo { margin-start: 1rem; }'; 128 | cssOutputted = '.foo { margin-left: 1rem; }'; 129 | 130 | return run(css, cssOutputted, {}); 131 | }); 132 | 133 | it('RTL: margin-start: -> margin-right:', () => { 134 | css = '.foo { margin-start: 1rem; }'; 135 | cssOutputted = '.foo { margin-right: 1rem; }'; 136 | 137 | return run(css, cssOutputted, { direction: 'RTL' }); 138 | }); 139 | 140 | it('LTR: margin-end -> margin-right:', () => { 141 | css = '.foo { margin-end: 1rem; }'; 142 | cssOutputted = '.foo { margin-right: 1rem; }'; 143 | 144 | return run(css, cssOutputted, {}); 145 | }); 146 | 147 | it('RTL: margin-end -> margin-left:', () => { 148 | css = '.foo { margin-end: 1rem; }'; 149 | cssOutputted = '.foo { margin-left: 1rem; }'; 150 | 151 | return run(css, cssOutputted, { direction: 'RTL' }); 152 | }); 153 | 154 | // With 4 values 155 | it('LTR: margin: 1rem 1rem 1rem 2rem; -> same', () => { 156 | css = '.foo { margin: 1rem 1rem 1rem 2rem; }'; 157 | 158 | return run(css, css, {}); 159 | }); 160 | 161 | it('LTR: margin: 1rem 2rem 1rem; -> same', () => { 162 | css = '.foo { margin: 1rem 1rem 2rem; }'; 163 | 164 | return run(css, css, {}); 165 | }); 166 | 167 | it('LTR: margin: 1rem 1rem 1rem 2rem; -> same', () => { 168 | css = '.foo { margin: 1rem 1rem 1rem 2rem; }'; 169 | 170 | return run(css, css, {}); 171 | }); 172 | 173 | it('RTL: margin: 1rem 2rem 1rem 2rem; -> margin: 1rem 2rem 1rem 1rem;', () => { 174 | css = '.foo { margin: 1rem 1rem 1rem 2rem; }'; 175 | cssOutputted = '.foo { margin: 1rem 2rem 1rem 1rem; }'; 176 | 177 | return run(css, cssOutputted, { direction: 'RTL' }); 178 | }); 179 | 180 | it('RTL: margin: 1rem 1rem 1rem 3rem; -> margin: 1rem 3rem 1rem 1rem;', () => { 181 | css = '.foo { margin: 1rem 1rem 1rem 3rem; }'; 182 | cssOutputted = '.foo { margin: 1rem 3rem 1rem 1rem; }'; 183 | 184 | return run(css, cssOutputted, { direction: 'RTL' }); 185 | }); 186 | 187 | it('RTL: margin: 1rem 1rem 3rem; -> same', () => { 188 | css = '.foo { margin: 1rem 1rem 3rem; }'; 189 | 190 | return run(css, css, { direction: 'RTL' }); 191 | }); 192 | 193 | /* ================================================================== 194 | Position Tests 195 | ================================================================== */ 196 | 197 | it('LTR: start: -> left:', () => { 198 | css = '.foo { start: 1rem; }'; 199 | cssOutputted = '.foo { left: 1rem; }'; 200 | 201 | return run(css, cssOutputted, {}); 202 | }); 203 | 204 | it('RTL: start: -> right:', () => { 205 | css = '.foo { start: 1rem; }'; 206 | cssOutputted = '.foo { right: 1rem; }'; 207 | 208 | return run(css, cssOutputted, { direction: 'RTL' }); 209 | }); 210 | 211 | it('LTR: end: -> right:', () => { 212 | css = '.foo { end: 1rem; }'; 213 | cssOutputted = '.foo { right: 1rem; }'; 214 | 215 | return run(css, cssOutputted, {}); 216 | }); 217 | 218 | it('RTL: end: -> left:', () => { 219 | css = '.foo { end: 1rem; }'; 220 | cssOutputted = '.foo { left: 1rem; }'; 221 | 222 | return run(css, cssOutputted, { direction: 'RTL' }); 223 | }); 224 | 225 | 226 | /* ================================================================== 227 | Text-align Tests 228 | ================================================================== */ 229 | 230 | it('LTR: text-align: start; -> text-align: left;', () => { 231 | css = '.foo { text-align: start; }'; 232 | cssOutputted = '.foo { text-align: left; }'; 233 | 234 | return run(css, cssOutputted, {}); 235 | }); 236 | 237 | it('RTL: text-align: start; -> text-align: right;', () => { 238 | css = '.foo { text-align: start; }'; 239 | cssOutputted = '.foo { text-align: right; }'; 240 | 241 | return run(css, cssOutputted, { direction: 'RTL' }); 242 | }); 243 | 244 | it('LTR: text-align: end; -> text-align: right;', () => { 245 | css = '.foo { text-align: end; }'; 246 | cssOutputted = '.foo { text-align: right; }'; 247 | 248 | return run(css, cssOutputted, {}); 249 | }); 250 | 251 | it('RTL: text-align: end; -> text-align: left;', () => { 252 | css = '.foo { text-align: end; }'; 253 | cssOutputted = '.foo { text-align: left; }'; 254 | 255 | return run(css, cssOutputted, { direction: 'RTL' }); 256 | }); 257 | 258 | /* ================================================================== 259 | Clear Tests 260 | ================================================================== */ 261 | 262 | it('LTR: clear: start; -> clear: left;', () => { 263 | css = '.foo { clear: start; }'; 264 | cssOutputted = '.foo { clear: left; }'; 265 | 266 | return run(css, cssOutputted, {}); 267 | }); 268 | 269 | it('RTL: clear: start; -> clear: right;', () => { 270 | css = '.foo { clear: start; }'; 271 | cssOutputted = '.foo { clear: right; }'; 272 | 273 | return run(css, cssOutputted, { direction: 'RTL' }); 274 | }); 275 | 276 | it('LTR: clear: end; -> clear: right;', () => { 277 | css = '.foo { clear: end; }'; 278 | cssOutputted = '.foo { clear: right; }'; 279 | 280 | return run(css, cssOutputted, {}); 281 | }); 282 | 283 | it('RTL: clear: end; -> clear: left;', () => { 284 | css = '.foo { clear: end; }'; 285 | cssOutputted = '.foo { clear: left; }'; 286 | 287 | return run(css, cssOutputted, { direction: 'RTL' }); 288 | }); 289 | 290 | 291 | /* ================================================================== 292 | Float Tests 293 | ================================================================== */ 294 | 295 | it('LTR: float: start; -> float: left;', () => { 296 | css = '.foo { float: start; }'; 297 | cssOutputted = '.foo { float: left; }'; 298 | 299 | return run(css, cssOutputted, {}); 300 | }); 301 | 302 | it('RTL: float: start; -> float: right;', () => { 303 | css = '.foo { float: start; }'; 304 | cssOutputted = '.foo { float: right; }'; 305 | 306 | return run(css, cssOutputted, { direction: 'RTL' }); 307 | }); 308 | 309 | it('LTR: float: end; -> float: right;', () => { 310 | css = '.foo { float: end; }'; 311 | cssOutputted = '.foo { float: right; }'; 312 | 313 | return run(css, cssOutputted, {}); 314 | }); 315 | 316 | it('RTL: float: end; -> float: left;', () => { 317 | css = '.foo { float: end; }'; 318 | cssOutputted = '.foo { float: left; }'; 319 | 320 | return run(css, cssOutputted, { direction: 'RTL' }); 321 | }); 322 | 323 | 324 | /* ================================================================== 325 | Multiple Props Test 326 | ================================================================== */ 327 | it('LTR: Convert multiple rules', () => { 328 | css = '.foo { color: red; float: end; margin-end: 1rem;}'; 329 | cssOutputted = '.foo { color: red; float: right; margin-right: 1rem;}'; 330 | 331 | return run(css, cssOutputted, {}); 332 | }); 333 | 334 | it('RTL: Convert multiple rules', () => { 335 | css = '.foo { color: red; float: end; margin-end: 1rem;}'; 336 | cssOutputted = '.foo { color: red; float: left; margin-left: 1rem;}'; 337 | 338 | return run(css, cssOutputted, { direction: 'RTL' }); 339 | }); 340 | 341 | /* ================================================================== 342 | Warning Props Test 343 | ================================================================== */ 344 | 345 | it('LTR: Warn about margin-right to use margin-end ', () => { 346 | css = '.foo { margin-right: 1rem;}'; 347 | const warning = '"margin-right:" found on line 1. Replace it by "margin-end" to support LTR and RTL'; 348 | 349 | return postcss([ plugin({}) ]).process(css) 350 | .then(result => { 351 | expect(result.css).toEqual(css); 352 | expect(result.warnings()[0]).toHaveProperty('text', warning); 353 | }); 354 | }); 355 | 356 | it('LTR: Warn about right to use end ', () => { 357 | css = '.foo { right: 10%;}'; 358 | const warning = '"right:" found on line 1. Replace it by "end" to support LTR and RTL'; 359 | 360 | return postcss([ plugin({}) ]).process(css) 361 | .then(result => { 362 | expect(result.css).toEqual(css); 363 | expect(result.warnings()[0]).toHaveProperty('text', warning); 364 | }); 365 | }); 366 | 367 | it('RTL: Warn about padding-left to use padding-end', () => { 368 | css = '.foo { padding-left: 1rem; }'; 369 | const warning = '"padding-left:" found on line 1. Replace it by "padding-end" to support LTR and RTL'; 370 | 371 | return postcss([ plugin( { direction: 'RTL' } ) ]).process(css) 372 | .then(result => { 373 | expect(result.css).toEqual(css); 374 | expect(result.warnings()[0]).toHaveProperty('text', warning); 375 | }); 376 | }); 377 | 378 | 379 | /* ================================================================== 380 | Warning Values Test 381 | ================================================================== */ 382 | 383 | it('LTR: Warn about float: right; to use float: end;', () => { 384 | css = '.foo { float: right; }'; 385 | const warning = '"float: right;" found on line 1. Replace it by "float: end;" to support LTR and RTL'; 386 | 387 | return postcss([ plugin() ]).process(css) 388 | .then(result => { 389 | expect(result.css).toEqual(css); 390 | expect(result.warnings()[0]).toHaveProperty('text', warning); 391 | }); 392 | }); 393 | 394 | it('RTL: Warn about float: left; to use float: end;', () => { 395 | css = '.foo { text-align: left; }'; 396 | const warning = '"text-align: left;" found on line 1. Replace it by "text-align: end;" to support LTR and RTL'; 397 | 398 | return postcss([ plugin( { direction: 'RTL' } ) ]).process(css) 399 | .then(result => { 400 | expect(result.css).toEqual(css); 401 | expect(result.warnings()[0]).toHaveProperty('text', warning); 402 | }); 403 | }); 404 | 405 | it('LTR: Do not warn about float: center;', () => { 406 | css = '.foo { float: center; }'; 407 | 408 | return run(css, css, { }); 409 | }); 410 | 411 | it('LTR: Do not warn when `warning: disabled`', () => { 412 | css = '.foo { text-align: left; }'; 413 | 414 | return run(css, css, { warnings: false }); 415 | }); 416 | 417 | /* ================================================================== 418 | ignoreNodeModules test 419 | ================================================================== */ 420 | it('Do not modify or warn if file path is on node_modules`', () => { 421 | css = '.foo { text-align: left; }'; 422 | cssOutputted = css; 423 | 424 | return postcss([ plugin() ]).process(css, { from: 'test/node_modules/package/' }) 425 | .then(result => { 426 | expect(result.css).toEqual(cssOutputted); 427 | expect(result.warnings().length).toBe(0); 428 | }); 429 | }); 430 | 431 | it('Modify and warn if file path is not on node_modules`', () => { 432 | css = '.foo { float: right; }'; 433 | const warning = '"float: right;" found on line 1. Replace it by "float: end;" to support LTR and RTL'; 434 | 435 | return postcss([ plugin() ]).process(css, { from: 'test/component/' }) 436 | .then(result => { 437 | expect(result.css).toEqual(css); 438 | expect(result.warnings()[0]).toHaveProperty('text', warning); 439 | }); 440 | }); 441 | 442 | /* ================================================================== 443 | Empty rules test 444 | ================================================================== */ 445 | 446 | it('Do nothing if rule doesnt have value', () => { 447 | css = '.foo { text-align:; }'; 448 | 449 | return run(css, css); 450 | }); 451 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "postcss-start-to-end", 3 | "version": "1.0.1", 4 | "description": "PostCSS plugin that lets you control your layout (ltr or rtl) through logical rather than physical rules", 5 | "keywords": [ 6 | "postcss", 7 | "css", 8 | "postcss-plugin", 9 | "rtl", 10 | "ltr", 11 | "direction", 12 | "start", 13 | "end", 14 | "layout", 15 | "universal", 16 | "logical-properties", 17 | "padding", 18 | "margin", 19 | "border", 20 | "text-algin", 21 | "float", 22 | "clear", 23 | "position" 24 | ], 25 | "author": "Sandrina Pereira ", 26 | "license": "MIT", 27 | "repository": "sandrina-p/postcss-start-to-end", 28 | "bugs": { 29 | "url": "https://github.com/sandrina-p/postcss-start-to-end/issues" 30 | }, 31 | "homepage": "https://github.com/sandrina-p/postcss-start-to-end", 32 | "dependencies": { 33 | "postcss": "^6.0.1", 34 | "postcss-reporter": "3.x.x" 35 | }, 36 | "devDependencies": { 37 | "coveralls": "^2.13.1", 38 | "eslint": "^3.19.0", 39 | "eslint-config-postcss": "^2.0.2", 40 | "jest": "^20.0.4" 41 | }, 42 | "scripts": { 43 | "test": "jest --coverage && eslint *.js" 44 | }, 45 | "eslintConfig": { 46 | "extends": "eslint-config-postcss/es5", 47 | "env": { 48 | "jest": true 49 | } 50 | }, 51 | "jest": { 52 | "collectCoverage": true, 53 | "collectCoverageFrom": [ 54 | "index.js" 55 | ], 56 | "coverageThreshold": { 57 | "global": { 58 | "branches": 50, 59 | "functions": 50, 60 | "lines": 50, 61 | "statements": 50 62 | } 63 | } 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | acorn-globals@^3.1.0: 10 | version "3.1.0" 11 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 12 | dependencies: 13 | acorn "^4.0.4" 14 | 15 | acorn-jsx@^3.0.0: 16 | version "3.0.1" 17 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 18 | dependencies: 19 | acorn "^3.0.4" 20 | 21 | acorn@^3.0.4: 22 | version "3.3.0" 23 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 24 | 25 | acorn@^4.0.4: 26 | version "4.0.11" 27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 28 | 29 | acorn@^5.0.1: 30 | version "5.0.3" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 32 | 33 | ajv-keywords@^1.0.0: 34 | version "1.5.1" 35 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 36 | 37 | ajv@^4.7.0: 38 | version "4.11.8" 39 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 40 | dependencies: 41 | co "^4.6.0" 42 | json-stable-stringify "^1.0.1" 43 | 44 | align-text@^0.1.1, align-text@^0.1.3: 45 | version "0.1.4" 46 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 47 | dependencies: 48 | kind-of "^3.0.2" 49 | longest "^1.0.1" 50 | repeat-string "^1.5.2" 51 | 52 | amdefine@>=0.0.4: 53 | version "1.0.1" 54 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 55 | 56 | ansi-escapes@^1.1.0, ansi-escapes@^1.4.0: 57 | version "1.4.0" 58 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 59 | 60 | ansi-regex@^2.0.0: 61 | version "2.1.1" 62 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 63 | 64 | ansi-styles@^2.2.1: 65 | version "2.2.1" 66 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 67 | 68 | ansicolors@~0.2.1: 69 | version "0.2.1" 70 | resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.2.1.tgz#be089599097b74a5c9c4a84a0cdbcdb62bd87aef" 71 | 72 | append-transform@^0.4.0: 73 | version "0.4.0" 74 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 75 | dependencies: 76 | default-require-extensions "^1.0.0" 77 | 78 | argparse@^1.0.7: 79 | version "1.0.9" 80 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 81 | dependencies: 82 | sprintf-js "~1.0.2" 83 | 84 | arr-diff@^2.0.0: 85 | version "2.0.0" 86 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 87 | dependencies: 88 | arr-flatten "^1.0.1" 89 | 90 | arr-flatten@^1.0.1: 91 | version "1.0.3" 92 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 93 | 94 | array-equal@^1.0.0: 95 | version "1.0.0" 96 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 97 | 98 | array-union@^1.0.1: 99 | version "1.0.2" 100 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 101 | dependencies: 102 | array-uniq "^1.0.1" 103 | 104 | array-uniq@^1.0.1: 105 | version "1.0.3" 106 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 107 | 108 | array-unique@^0.2.1: 109 | version "0.2.1" 110 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 111 | 112 | arrify@^1.0.0, arrify@^1.0.1: 113 | version "1.0.1" 114 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 115 | 116 | asn1@~0.2.3: 117 | version "0.2.3" 118 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 119 | 120 | assert-plus@1.0.0, assert-plus@^1.0.0: 121 | version "1.0.0" 122 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 123 | 124 | assert-plus@^0.2.0: 125 | version "0.2.0" 126 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 127 | 128 | async@^1.4.0: 129 | version "1.5.2" 130 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 131 | 132 | async@^2.1.4: 133 | version "2.3.0" 134 | resolved "https://registry.yarnpkg.com/async/-/async-2.3.0.tgz#1013d1051047dd320fe24e494d5c66ecaf6147d9" 135 | dependencies: 136 | lodash "^4.14.0" 137 | 138 | asynckit@^0.4.0: 139 | version "0.4.0" 140 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 141 | 142 | aws-sign2@~0.6.0: 143 | version "0.6.0" 144 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 145 | 146 | aws4@^1.2.1: 147 | version "1.6.0" 148 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 149 | 150 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 151 | version "6.22.0" 152 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 153 | dependencies: 154 | chalk "^1.1.0" 155 | esutils "^2.0.2" 156 | js-tokens "^3.0.0" 157 | 158 | babel-core@^6.0.0, babel-core@^6.24.1: 159 | version "6.24.1" 160 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 161 | dependencies: 162 | babel-code-frame "^6.22.0" 163 | babel-generator "^6.24.1" 164 | babel-helpers "^6.24.1" 165 | babel-messages "^6.23.0" 166 | babel-register "^6.24.1" 167 | babel-runtime "^6.22.0" 168 | babel-template "^6.24.1" 169 | babel-traverse "^6.24.1" 170 | babel-types "^6.24.1" 171 | babylon "^6.11.0" 172 | convert-source-map "^1.1.0" 173 | debug "^2.1.1" 174 | json5 "^0.5.0" 175 | lodash "^4.2.0" 176 | minimatch "^3.0.2" 177 | path-is-absolute "^1.0.0" 178 | private "^0.1.6" 179 | slash "^1.0.0" 180 | source-map "^0.5.0" 181 | 182 | babel-generator@^6.18.0, babel-generator@^6.24.1: 183 | version "6.24.1" 184 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 185 | dependencies: 186 | babel-messages "^6.23.0" 187 | babel-runtime "^6.22.0" 188 | babel-types "^6.24.1" 189 | detect-indent "^4.0.0" 190 | jsesc "^1.3.0" 191 | lodash "^4.2.0" 192 | source-map "^0.5.0" 193 | trim-right "^1.0.1" 194 | 195 | babel-helpers@^6.24.1: 196 | version "6.24.1" 197 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 198 | dependencies: 199 | babel-runtime "^6.22.0" 200 | babel-template "^6.24.1" 201 | 202 | babel-jest@^18.0.0: 203 | version "18.0.0" 204 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-18.0.0.tgz#17ebba8cb3285c906d859e8707e4e79795fb65e3" 205 | dependencies: 206 | babel-core "^6.0.0" 207 | babel-plugin-istanbul "^3.0.0" 208 | babel-preset-jest "^18.0.0" 209 | 210 | babel-messages@^6.23.0: 211 | version "6.23.0" 212 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 213 | dependencies: 214 | babel-runtime "^6.22.0" 215 | 216 | babel-plugin-istanbul@^3.0.0: 217 | version "3.1.2" 218 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-3.1.2.tgz#11d5abde18425ec24b5d648c7e0b5d25cd354a22" 219 | dependencies: 220 | find-up "^1.1.2" 221 | istanbul-lib-instrument "^1.4.2" 222 | object-assign "^4.1.0" 223 | test-exclude "^3.3.0" 224 | 225 | babel-plugin-jest-hoist@^18.0.0: 226 | version "18.0.0" 227 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-18.0.0.tgz#4150e70ecab560e6e7344adc849498072d34e12a" 228 | 229 | babel-preset-jest@^18.0.0: 230 | version "18.0.0" 231 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-18.0.0.tgz#84faf8ca3ec65aba7d5e3f59bbaed935ab24049e" 232 | dependencies: 233 | babel-plugin-jest-hoist "^18.0.0" 234 | 235 | babel-register@^6.24.1: 236 | version "6.24.1" 237 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 238 | dependencies: 239 | babel-core "^6.24.1" 240 | babel-runtime "^6.22.0" 241 | core-js "^2.4.0" 242 | home-or-tmp "^2.0.0" 243 | lodash "^4.2.0" 244 | mkdirp "^0.5.1" 245 | source-map-support "^0.4.2" 246 | 247 | babel-runtime@^6.22.0: 248 | version "6.23.0" 249 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 250 | dependencies: 251 | core-js "^2.4.0" 252 | regenerator-runtime "^0.10.0" 253 | 254 | babel-template@^6.16.0, babel-template@^6.24.1: 255 | version "6.24.1" 256 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 257 | dependencies: 258 | babel-runtime "^6.22.0" 259 | babel-traverse "^6.24.1" 260 | babel-types "^6.24.1" 261 | babylon "^6.11.0" 262 | lodash "^4.2.0" 263 | 264 | babel-traverse@^6.18.0, babel-traverse@^6.24.1: 265 | version "6.24.1" 266 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 267 | dependencies: 268 | babel-code-frame "^6.22.0" 269 | babel-messages "^6.23.0" 270 | babel-runtime "^6.22.0" 271 | babel-types "^6.24.1" 272 | babylon "^6.15.0" 273 | debug "^2.2.0" 274 | globals "^9.0.0" 275 | invariant "^2.2.0" 276 | lodash "^4.2.0" 277 | 278 | babel-types@^6.18.0, babel-types@^6.24.1: 279 | version "6.24.1" 280 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 281 | dependencies: 282 | babel-runtime "^6.22.0" 283 | esutils "^2.0.2" 284 | lodash "^4.2.0" 285 | to-fast-properties "^1.0.1" 286 | 287 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 288 | version "6.17.0" 289 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.0.tgz#37da948878488b9c4e3c4038893fa3314b3fc932" 290 | 291 | balanced-match@^0.4.1: 292 | version "0.4.2" 293 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 294 | 295 | bcrypt-pbkdf@^1.0.0: 296 | version "1.0.1" 297 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 298 | dependencies: 299 | tweetnacl "^0.14.3" 300 | 301 | boom@2.x.x: 302 | version "2.10.1" 303 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 304 | dependencies: 305 | hoek "2.x.x" 306 | 307 | brace-expansion@^1.0.0: 308 | version "1.1.7" 309 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 310 | dependencies: 311 | balanced-match "^0.4.1" 312 | concat-map "0.0.1" 313 | 314 | braces@^1.8.2: 315 | version "1.8.5" 316 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 317 | dependencies: 318 | expand-range "^1.8.1" 319 | preserve "^0.2.0" 320 | repeat-element "^1.1.2" 321 | 322 | browser-resolve@^1.11.2: 323 | version "1.11.2" 324 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 325 | dependencies: 326 | resolve "1.1.7" 327 | 328 | bser@1.0.2: 329 | version "1.0.2" 330 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 331 | dependencies: 332 | node-int64 "^0.4.0" 333 | 334 | buffer-shims@~1.0.0: 335 | version "1.0.0" 336 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 337 | 338 | builtin-modules@^1.0.0: 339 | version "1.1.1" 340 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 341 | 342 | caller-path@^0.1.0: 343 | version "0.1.0" 344 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 345 | dependencies: 346 | callsites "^0.2.0" 347 | 348 | callsites@^0.2.0: 349 | version "0.2.0" 350 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 351 | 352 | callsites@^2.0.0: 353 | version "2.0.0" 354 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 355 | 356 | camelcase@^1.0.2: 357 | version "1.2.1" 358 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 359 | 360 | camelcase@^3.0.0: 361 | version "3.0.0" 362 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 363 | 364 | cardinal@^1.0.0: 365 | version "1.0.0" 366 | resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-1.0.0.tgz#50e21c1b0aa37729f9377def196b5a9cec932ee9" 367 | dependencies: 368 | ansicolors "~0.2.1" 369 | redeyed "~1.0.0" 370 | 371 | caseless@~0.11.0: 372 | version "0.11.0" 373 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 374 | 375 | center-align@^0.1.1: 376 | version "0.1.3" 377 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 378 | dependencies: 379 | align-text "^0.1.3" 380 | lazy-cache "^1.0.3" 381 | 382 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 383 | version "1.1.3" 384 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 385 | dependencies: 386 | ansi-styles "^2.2.1" 387 | escape-string-regexp "^1.0.2" 388 | has-ansi "^2.0.0" 389 | strip-ansi "^3.0.0" 390 | supports-color "^2.0.0" 391 | 392 | ci-info@^1.0.0: 393 | version "1.0.0" 394 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 395 | 396 | circular-json@^0.3.1: 397 | version "0.3.1" 398 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 399 | 400 | cli-cursor@^1.0.1: 401 | version "1.0.2" 402 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 403 | dependencies: 404 | restore-cursor "^1.0.1" 405 | 406 | cli-table@^0.3.1: 407 | version "0.3.1" 408 | resolved "https://registry.yarnpkg.com/cli-table/-/cli-table-0.3.1.tgz#f53b05266a8b1a0b934b3d0821e6e2dc5914ae23" 409 | dependencies: 410 | colors "1.0.3" 411 | 412 | cli-usage@^0.1.1: 413 | version "0.1.4" 414 | resolved "https://registry.yarnpkg.com/cli-usage/-/cli-usage-0.1.4.tgz#7c01e0dc706c234b39c933838c8e20b2175776e2" 415 | dependencies: 416 | marked "^0.3.6" 417 | marked-terminal "^1.6.2" 418 | 419 | cli-width@^2.0.0: 420 | version "2.1.0" 421 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 422 | 423 | cliui@^2.1.0: 424 | version "2.1.0" 425 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 426 | dependencies: 427 | center-align "^0.1.1" 428 | right-align "^0.1.1" 429 | wordwrap "0.0.2" 430 | 431 | cliui@^3.2.0: 432 | version "3.2.0" 433 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 434 | dependencies: 435 | string-width "^1.0.1" 436 | strip-ansi "^3.0.1" 437 | wrap-ansi "^2.0.0" 438 | 439 | co@^4.6.0: 440 | version "4.6.0" 441 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 442 | 443 | code-point-at@^1.0.0: 444 | version "1.1.0" 445 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 446 | 447 | colors@1.0.3: 448 | version "1.0.3" 449 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 450 | 451 | combined-stream@^1.0.5, combined-stream@~1.0.5: 452 | version "1.0.5" 453 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 454 | dependencies: 455 | delayed-stream "~1.0.0" 456 | 457 | commander@^2.9.0: 458 | version "2.9.0" 459 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 460 | dependencies: 461 | graceful-readlink ">= 1.0.0" 462 | 463 | concat-map@0.0.1: 464 | version "0.0.1" 465 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 466 | 467 | concat-stream@^1.5.2: 468 | version "1.6.0" 469 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 470 | dependencies: 471 | inherits "^2.0.3" 472 | readable-stream "^2.2.2" 473 | typedarray "^0.0.6" 474 | 475 | content-type-parser@^1.0.1: 476 | version "1.0.1" 477 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 478 | 479 | convert-source-map@^1.1.0: 480 | version "1.5.0" 481 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 482 | 483 | core-js@^2.4.0: 484 | version "2.4.1" 485 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 486 | 487 | core-util-is@~1.0.0: 488 | version "1.0.2" 489 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 490 | 491 | coveralls@^2.13.1: 492 | version "2.13.1" 493 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-2.13.1.tgz#d70bb9acc1835ec4f063ff9dac5423c17b11f178" 494 | dependencies: 495 | js-yaml "3.6.1" 496 | lcov-parse "0.0.10" 497 | log-driver "1.2.5" 498 | minimist "1.2.0" 499 | request "2.79.0" 500 | 501 | cryptiles@2.x.x: 502 | version "2.0.5" 503 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 504 | dependencies: 505 | boom "2.x.x" 506 | 507 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 508 | version "0.3.2" 509 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 510 | 511 | "cssstyle@>= 0.2.37 < 0.3.0": 512 | version "0.2.37" 513 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 514 | dependencies: 515 | cssom "0.3.x" 516 | 517 | d@1: 518 | version "1.0.0" 519 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 520 | dependencies: 521 | es5-ext "^0.10.9" 522 | 523 | dashdash@^1.12.0: 524 | version "1.14.1" 525 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 526 | dependencies: 527 | assert-plus "^1.0.0" 528 | 529 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3: 530 | version "2.6.6" 531 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.6.tgz#a9fa6fbe9ca43cf1e79f73b75c0189cbb7d6db5a" 532 | dependencies: 533 | ms "0.7.3" 534 | 535 | decamelize@^1.0.0, decamelize@^1.1.1: 536 | version "1.2.0" 537 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 538 | 539 | deep-is@~0.1.3: 540 | version "0.1.3" 541 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 542 | 543 | default-require-extensions@^1.0.0: 544 | version "1.0.0" 545 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 546 | dependencies: 547 | strip-bom "^2.0.0" 548 | 549 | del@^2.0.2: 550 | version "2.2.2" 551 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 552 | dependencies: 553 | globby "^5.0.0" 554 | is-path-cwd "^1.0.0" 555 | is-path-in-cwd "^1.0.0" 556 | object-assign "^4.0.1" 557 | pify "^2.0.0" 558 | pinkie-promise "^2.0.0" 559 | rimraf "^2.2.8" 560 | 561 | delayed-stream@~1.0.0: 562 | version "1.0.0" 563 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 564 | 565 | detect-indent@^4.0.0: 566 | version "4.0.0" 567 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 568 | dependencies: 569 | repeating "^2.0.0" 570 | 571 | diff@^3.0.0: 572 | version "3.2.0" 573 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 574 | 575 | doctrine@^2.0.0: 576 | version "2.0.0" 577 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 578 | dependencies: 579 | esutils "^2.0.2" 580 | isarray "^1.0.0" 581 | 582 | ecc-jsbn@~0.1.1: 583 | version "0.1.1" 584 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 585 | dependencies: 586 | jsbn "~0.1.0" 587 | 588 | "errno@>=0.1.1 <0.2.0-0": 589 | version "0.1.4" 590 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 591 | dependencies: 592 | prr "~0.0.0" 593 | 594 | error-ex@^1.2.0: 595 | version "1.3.1" 596 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 597 | dependencies: 598 | is-arrayish "^0.2.1" 599 | 600 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 601 | version "0.10.15" 602 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.15.tgz#c330a5934c1ee21284a7c081a86e5fd937c91ea6" 603 | dependencies: 604 | es6-iterator "2" 605 | es6-symbol "~3.1" 606 | 607 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 608 | version "2.0.1" 609 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 610 | dependencies: 611 | d "1" 612 | es5-ext "^0.10.14" 613 | es6-symbol "^3.1" 614 | 615 | es6-map@^0.1.3: 616 | version "0.1.5" 617 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 618 | dependencies: 619 | d "1" 620 | es5-ext "~0.10.14" 621 | es6-iterator "~2.0.1" 622 | es6-set "~0.1.5" 623 | es6-symbol "~3.1.1" 624 | event-emitter "~0.3.5" 625 | 626 | es6-set@~0.1.5: 627 | version "0.1.5" 628 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 629 | dependencies: 630 | d "1" 631 | es5-ext "~0.10.14" 632 | es6-iterator "~2.0.1" 633 | es6-symbol "3.1.1" 634 | event-emitter "~0.3.5" 635 | 636 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 637 | version "3.1.1" 638 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 639 | dependencies: 640 | d "1" 641 | es5-ext "~0.10.14" 642 | 643 | es6-weak-map@^2.0.1: 644 | version "2.0.2" 645 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 646 | dependencies: 647 | d "1" 648 | es5-ext "^0.10.14" 649 | es6-iterator "^2.0.1" 650 | es6-symbol "^3.1.1" 651 | 652 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 653 | version "1.0.5" 654 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 655 | 656 | escodegen@^1.6.1: 657 | version "1.8.1" 658 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 659 | dependencies: 660 | esprima "^2.7.1" 661 | estraverse "^1.9.1" 662 | esutils "^2.0.2" 663 | optionator "^0.8.1" 664 | optionalDependencies: 665 | source-map "~0.2.0" 666 | 667 | escope@^3.6.0: 668 | version "3.6.0" 669 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 670 | dependencies: 671 | es6-map "^0.1.3" 672 | es6-weak-map "^2.0.1" 673 | esrecurse "^4.1.0" 674 | estraverse "^4.1.1" 675 | 676 | eslint-config-postcss@^2.0.2: 677 | version "2.0.2" 678 | resolved "https://registry.yarnpkg.com/eslint-config-postcss/-/eslint-config-postcss-2.0.2.tgz#cae1c6093ced7850894a5b85fbe1d1e232b72afb" 679 | 680 | eslint@^3.12.2: 681 | version "3.19.0" 682 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 683 | dependencies: 684 | babel-code-frame "^6.16.0" 685 | chalk "^1.1.3" 686 | concat-stream "^1.5.2" 687 | debug "^2.1.1" 688 | doctrine "^2.0.0" 689 | escope "^3.6.0" 690 | espree "^3.4.0" 691 | esquery "^1.0.0" 692 | estraverse "^4.2.0" 693 | esutils "^2.0.2" 694 | file-entry-cache "^2.0.0" 695 | glob "^7.0.3" 696 | globals "^9.14.0" 697 | ignore "^3.2.0" 698 | imurmurhash "^0.1.4" 699 | inquirer "^0.12.0" 700 | is-my-json-valid "^2.10.0" 701 | is-resolvable "^1.0.0" 702 | js-yaml "^3.5.1" 703 | json-stable-stringify "^1.0.0" 704 | levn "^0.3.0" 705 | lodash "^4.0.0" 706 | mkdirp "^0.5.0" 707 | natural-compare "^1.4.0" 708 | optionator "^0.8.2" 709 | path-is-inside "^1.0.1" 710 | pluralize "^1.2.1" 711 | progress "^1.1.8" 712 | require-uncached "^1.0.2" 713 | shelljs "^0.7.5" 714 | strip-bom "^3.0.0" 715 | strip-json-comments "~2.0.1" 716 | table "^3.7.8" 717 | text-table "~0.2.0" 718 | user-home "^2.0.0" 719 | 720 | espree@^3.4.0: 721 | version "3.4.2" 722 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.2.tgz#38dbdedbedc95b8961a1fbf04734a8f6a9c8c592" 723 | dependencies: 724 | acorn "^5.0.1" 725 | acorn-jsx "^3.0.0" 726 | 727 | esprima@^2.6.0, esprima@^2.7.1: 728 | version "2.7.3" 729 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 730 | 731 | esprima@^3.1.1: 732 | version "3.1.3" 733 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 734 | 735 | esprima@~3.0.0: 736 | version "3.0.0" 737 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.0.0.tgz#53cf247acda77313e551c3aa2e73342d3fb4f7d9" 738 | 739 | esquery@^1.0.0: 740 | version "1.0.0" 741 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 742 | dependencies: 743 | estraverse "^4.0.0" 744 | 745 | esrecurse@^4.1.0: 746 | version "4.1.0" 747 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 748 | dependencies: 749 | estraverse "~4.1.0" 750 | object-assign "^4.0.1" 751 | 752 | estraverse@^1.9.1: 753 | version "1.9.3" 754 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 755 | 756 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 757 | version "4.2.0" 758 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 759 | 760 | estraverse@~4.1.0: 761 | version "4.1.1" 762 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 763 | 764 | esutils@^2.0.2: 765 | version "2.0.2" 766 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 767 | 768 | event-emitter@~0.3.5: 769 | version "0.3.5" 770 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 771 | dependencies: 772 | d "1" 773 | es5-ext "~0.10.14" 774 | 775 | exec-sh@^0.2.0: 776 | version "0.2.0" 777 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 778 | dependencies: 779 | merge "^1.1.3" 780 | 781 | exit-hook@^1.0.0: 782 | version "1.1.1" 783 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 784 | 785 | expand-brackets@^0.1.4: 786 | version "0.1.5" 787 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 788 | dependencies: 789 | is-posix-bracket "^0.1.0" 790 | 791 | expand-range@^1.8.1: 792 | version "1.8.2" 793 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 794 | dependencies: 795 | fill-range "^2.1.0" 796 | 797 | extend@~3.0.0: 798 | version "3.0.1" 799 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 800 | 801 | extglob@^0.3.1: 802 | version "0.3.2" 803 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 804 | dependencies: 805 | is-extglob "^1.0.0" 806 | 807 | extsprintf@1.0.2: 808 | version "1.0.2" 809 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 810 | 811 | fast-levenshtein@~2.0.4: 812 | version "2.0.6" 813 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 814 | 815 | fb-watchman@^1.8.0, fb-watchman@^1.9.0: 816 | version "1.9.2" 817 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 818 | dependencies: 819 | bser "1.0.2" 820 | 821 | figures@^1.3.5: 822 | version "1.7.0" 823 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 824 | dependencies: 825 | escape-string-regexp "^1.0.5" 826 | object-assign "^4.1.0" 827 | 828 | file-entry-cache@^2.0.0: 829 | version "2.0.0" 830 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 831 | dependencies: 832 | flat-cache "^1.2.1" 833 | object-assign "^4.0.1" 834 | 835 | filename-regex@^2.0.0: 836 | version "2.0.1" 837 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 838 | 839 | fileset@^2.0.2: 840 | version "2.0.3" 841 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 842 | dependencies: 843 | glob "^7.0.3" 844 | minimatch "^3.0.3" 845 | 846 | fill-range@^2.1.0: 847 | version "2.2.3" 848 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 849 | dependencies: 850 | is-number "^2.1.0" 851 | isobject "^2.0.0" 852 | randomatic "^1.1.3" 853 | repeat-element "^1.1.2" 854 | repeat-string "^1.5.2" 855 | 856 | find-up@^1.0.0, find-up@^1.1.2: 857 | version "1.1.2" 858 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 859 | dependencies: 860 | path-exists "^2.0.0" 861 | pinkie-promise "^2.0.0" 862 | 863 | flat-cache@^1.2.1: 864 | version "1.2.2" 865 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 866 | dependencies: 867 | circular-json "^0.3.1" 868 | del "^2.0.2" 869 | graceful-fs "^4.1.2" 870 | write "^0.2.1" 871 | 872 | for-in@^1.0.1: 873 | version "1.0.2" 874 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 875 | 876 | for-own@^0.1.4: 877 | version "0.1.5" 878 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 879 | dependencies: 880 | for-in "^1.0.1" 881 | 882 | forever-agent@~0.6.1: 883 | version "0.6.1" 884 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 885 | 886 | form-data@~2.1.1: 887 | version "2.1.4" 888 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 889 | dependencies: 890 | asynckit "^0.4.0" 891 | combined-stream "^1.0.5" 892 | mime-types "^2.1.12" 893 | 894 | fs.realpath@^1.0.0: 895 | version "1.0.0" 896 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 897 | 898 | generate-function@^2.0.0: 899 | version "2.0.0" 900 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 901 | 902 | generate-object-property@^1.1.0: 903 | version "1.2.0" 904 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 905 | dependencies: 906 | is-property "^1.0.0" 907 | 908 | get-caller-file@^1.0.1: 909 | version "1.0.2" 910 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 911 | 912 | getpass@^0.1.1: 913 | version "0.1.7" 914 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 915 | dependencies: 916 | assert-plus "^1.0.0" 917 | 918 | glob-base@^0.3.0: 919 | version "0.3.0" 920 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 921 | dependencies: 922 | glob-parent "^2.0.0" 923 | is-glob "^2.0.0" 924 | 925 | glob-parent@^2.0.0: 926 | version "2.0.0" 927 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 928 | dependencies: 929 | is-glob "^2.0.0" 930 | 931 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 932 | version "7.1.1" 933 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 934 | dependencies: 935 | fs.realpath "^1.0.0" 936 | inflight "^1.0.4" 937 | inherits "2" 938 | minimatch "^3.0.2" 939 | once "^1.3.0" 940 | path-is-absolute "^1.0.0" 941 | 942 | globals@^9.0.0, globals@^9.14.0: 943 | version "9.17.0" 944 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 945 | 946 | globby@^5.0.0: 947 | version "5.0.0" 948 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 949 | dependencies: 950 | array-union "^1.0.1" 951 | arrify "^1.0.0" 952 | glob "^7.0.3" 953 | object-assign "^4.0.1" 954 | pify "^2.0.0" 955 | pinkie-promise "^2.0.0" 956 | 957 | graceful-fs@^4.1.2, graceful-fs@^4.1.6: 958 | version "4.1.11" 959 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 960 | 961 | "graceful-readlink@>= 1.0.0": 962 | version "1.0.1" 963 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 964 | 965 | growly@^1.2.0: 966 | version "1.3.0" 967 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 968 | 969 | handlebars@^4.0.3: 970 | version "4.0.6" 971 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 972 | dependencies: 973 | async "^1.4.0" 974 | optimist "^0.6.1" 975 | source-map "^0.4.4" 976 | optionalDependencies: 977 | uglify-js "^2.6" 978 | 979 | har-validator@~2.0.6: 980 | version "2.0.6" 981 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 982 | dependencies: 983 | chalk "^1.1.1" 984 | commander "^2.9.0" 985 | is-my-json-valid "^2.12.4" 986 | pinkie-promise "^2.0.0" 987 | 988 | has-ansi@^2.0.0: 989 | version "2.0.0" 990 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 991 | dependencies: 992 | ansi-regex "^2.0.0" 993 | 994 | has-flag@^1.0.0: 995 | version "1.0.0" 996 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 997 | 998 | hawk@~3.1.3: 999 | version "3.1.3" 1000 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1001 | dependencies: 1002 | boom "2.x.x" 1003 | cryptiles "2.x.x" 1004 | hoek "2.x.x" 1005 | sntp "1.x.x" 1006 | 1007 | hoek@2.x.x: 1008 | version "2.16.3" 1009 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1010 | 1011 | home-or-tmp@^2.0.0: 1012 | version "2.0.0" 1013 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1014 | dependencies: 1015 | os-homedir "^1.0.0" 1016 | os-tmpdir "^1.0.1" 1017 | 1018 | hosted-git-info@^2.1.4: 1019 | version "2.4.2" 1020 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1021 | 1022 | html-encoding-sniffer@^1.0.1: 1023 | version "1.0.1" 1024 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1025 | dependencies: 1026 | whatwg-encoding "^1.0.1" 1027 | 1028 | http-signature@~1.1.0: 1029 | version "1.1.1" 1030 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1031 | dependencies: 1032 | assert-plus "^0.2.0" 1033 | jsprim "^1.2.2" 1034 | sshpk "^1.7.0" 1035 | 1036 | iconv-lite@0.4.13: 1037 | version "0.4.13" 1038 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1039 | 1040 | ignore@^3.2.0: 1041 | version "3.2.7" 1042 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.7.tgz#4810ca5f1d8eca5595213a34b94f2eb4ed926bbd" 1043 | 1044 | imurmurhash@^0.1.4: 1045 | version "0.1.4" 1046 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1047 | 1048 | inflight@^1.0.4: 1049 | version "1.0.6" 1050 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1051 | dependencies: 1052 | once "^1.3.0" 1053 | wrappy "1" 1054 | 1055 | inherits@2, inherits@^2.0.3, inherits@~2.0.1: 1056 | version "2.0.3" 1057 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1058 | 1059 | inquirer@^0.12.0: 1060 | version "0.12.0" 1061 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1062 | dependencies: 1063 | ansi-escapes "^1.1.0" 1064 | ansi-regex "^2.0.0" 1065 | chalk "^1.0.0" 1066 | cli-cursor "^1.0.1" 1067 | cli-width "^2.0.0" 1068 | figures "^1.3.5" 1069 | lodash "^4.3.0" 1070 | readline2 "^1.0.1" 1071 | run-async "^0.1.0" 1072 | rx-lite "^3.1.2" 1073 | string-width "^1.0.1" 1074 | strip-ansi "^3.0.0" 1075 | through "^2.3.6" 1076 | 1077 | interpret@^1.0.0: 1078 | version "1.0.3" 1079 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 1080 | 1081 | invariant@^2.2.0: 1082 | version "2.2.2" 1083 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1084 | dependencies: 1085 | loose-envify "^1.0.0" 1086 | 1087 | invert-kv@^1.0.0: 1088 | version "1.0.0" 1089 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1090 | 1091 | is-arrayish@^0.2.1: 1092 | version "0.2.1" 1093 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1094 | 1095 | is-buffer@^1.1.5: 1096 | version "1.1.5" 1097 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1098 | 1099 | is-builtin-module@^1.0.0: 1100 | version "1.0.0" 1101 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1102 | dependencies: 1103 | builtin-modules "^1.0.0" 1104 | 1105 | is-ci@^1.0.9: 1106 | version "1.0.10" 1107 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1108 | dependencies: 1109 | ci-info "^1.0.0" 1110 | 1111 | is-dotfile@^1.0.0: 1112 | version "1.0.2" 1113 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1114 | 1115 | is-equal-shallow@^0.1.3: 1116 | version "0.1.3" 1117 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1118 | dependencies: 1119 | is-primitive "^2.0.0" 1120 | 1121 | is-extendable@^0.1.1: 1122 | version "0.1.1" 1123 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1124 | 1125 | is-extglob@^1.0.0: 1126 | version "1.0.0" 1127 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1128 | 1129 | is-finite@^1.0.0: 1130 | version "1.0.2" 1131 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1132 | dependencies: 1133 | number-is-nan "^1.0.0" 1134 | 1135 | is-fullwidth-code-point@^1.0.0: 1136 | version "1.0.0" 1137 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1138 | dependencies: 1139 | number-is-nan "^1.0.0" 1140 | 1141 | is-fullwidth-code-point@^2.0.0: 1142 | version "2.0.0" 1143 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1144 | 1145 | is-glob@^2.0.0, is-glob@^2.0.1: 1146 | version "2.0.1" 1147 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1148 | dependencies: 1149 | is-extglob "^1.0.0" 1150 | 1151 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 1152 | version "2.16.0" 1153 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1154 | dependencies: 1155 | generate-function "^2.0.0" 1156 | generate-object-property "^1.1.0" 1157 | jsonpointer "^4.0.0" 1158 | xtend "^4.0.0" 1159 | 1160 | is-number@^2.0.2, is-number@^2.1.0: 1161 | version "2.1.0" 1162 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1163 | dependencies: 1164 | kind-of "^3.0.2" 1165 | 1166 | is-path-cwd@^1.0.0: 1167 | version "1.0.0" 1168 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1169 | 1170 | is-path-in-cwd@^1.0.0: 1171 | version "1.0.0" 1172 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1173 | dependencies: 1174 | is-path-inside "^1.0.0" 1175 | 1176 | is-path-inside@^1.0.0: 1177 | version "1.0.0" 1178 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1179 | dependencies: 1180 | path-is-inside "^1.0.1" 1181 | 1182 | is-posix-bracket@^0.1.0: 1183 | version "0.1.1" 1184 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1185 | 1186 | is-primitive@^2.0.0: 1187 | version "2.0.0" 1188 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1189 | 1190 | is-property@^1.0.0: 1191 | version "1.0.2" 1192 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1193 | 1194 | is-resolvable@^1.0.0: 1195 | version "1.0.0" 1196 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1197 | dependencies: 1198 | tryit "^1.0.1" 1199 | 1200 | is-typedarray@~1.0.0: 1201 | version "1.0.0" 1202 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1203 | 1204 | is-utf8@^0.2.0: 1205 | version "0.2.1" 1206 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1207 | 1208 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1209 | version "1.0.0" 1210 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1211 | 1212 | isexe@^2.0.0: 1213 | version "2.0.0" 1214 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1215 | 1216 | isobject@^2.0.0: 1217 | version "2.1.0" 1218 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1219 | dependencies: 1220 | isarray "1.0.0" 1221 | 1222 | isstream@~0.1.2: 1223 | version "0.1.2" 1224 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1225 | 1226 | istanbul-api@^1.1.0-alpha.1: 1227 | version "1.1.8" 1228 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.8.tgz#a844e55c6f9aeee292e7f42942196f60b23dc93e" 1229 | dependencies: 1230 | async "^2.1.4" 1231 | fileset "^2.0.2" 1232 | istanbul-lib-coverage "^1.1.0" 1233 | istanbul-lib-hook "^1.0.6" 1234 | istanbul-lib-instrument "^1.7.1" 1235 | istanbul-lib-report "^1.1.0" 1236 | istanbul-lib-source-maps "^1.2.0" 1237 | istanbul-reports "^1.1.0" 1238 | js-yaml "^3.7.0" 1239 | mkdirp "^0.5.1" 1240 | once "^1.4.0" 1241 | 1242 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.1.0: 1243 | version "1.1.0" 1244 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.0.tgz#caca19decaef3525b5d6331d701f3f3b7ad48528" 1245 | 1246 | istanbul-lib-hook@^1.0.6: 1247 | version "1.0.6" 1248 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.6.tgz#c0866d1e81cf2d5319249510131fc16dee49231f" 1249 | dependencies: 1250 | append-transform "^0.4.0" 1251 | 1252 | istanbul-lib-instrument@^1.1.1, istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.1: 1253 | version "1.7.1" 1254 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.1.tgz#169e31bc62c778851a99439dd99c3cc12184d360" 1255 | dependencies: 1256 | babel-generator "^6.18.0" 1257 | babel-template "^6.16.0" 1258 | babel-traverse "^6.18.0" 1259 | babel-types "^6.18.0" 1260 | babylon "^6.13.0" 1261 | istanbul-lib-coverage "^1.1.0" 1262 | semver "^5.3.0" 1263 | 1264 | istanbul-lib-report@^1.1.0: 1265 | version "1.1.0" 1266 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.0.tgz#444c4ecca9afa93cf584f56b10f195bf768c0770" 1267 | dependencies: 1268 | istanbul-lib-coverage "^1.1.0" 1269 | mkdirp "^0.5.1" 1270 | path-parse "^1.0.5" 1271 | supports-color "^3.1.2" 1272 | 1273 | istanbul-lib-source-maps@^1.2.0: 1274 | version "1.2.0" 1275 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.0.tgz#8c7706d497e26feeb6af3e0c28fd5b0669598d0e" 1276 | dependencies: 1277 | debug "^2.6.3" 1278 | istanbul-lib-coverage "^1.1.0" 1279 | mkdirp "^0.5.1" 1280 | rimraf "^2.6.1" 1281 | source-map "^0.5.3" 1282 | 1283 | istanbul-reports@^1.1.0: 1284 | version "1.1.0" 1285 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.0.tgz#1ef3b795889219cfb5fad16365f6ce108d5f8c66" 1286 | dependencies: 1287 | handlebars "^4.0.3" 1288 | 1289 | jest-changed-files@^17.0.2: 1290 | version "17.0.2" 1291 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-17.0.2.tgz#f5657758736996f590a51b87e5c9369d904ba7b7" 1292 | 1293 | jest-cli@^18.1.0: 1294 | version "18.1.0" 1295 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-18.1.0.tgz#5ead36ecad420817c2c9baa2aa7574f63257b3d6" 1296 | dependencies: 1297 | ansi-escapes "^1.4.0" 1298 | callsites "^2.0.0" 1299 | chalk "^1.1.1" 1300 | graceful-fs "^4.1.6" 1301 | is-ci "^1.0.9" 1302 | istanbul-api "^1.1.0-alpha.1" 1303 | istanbul-lib-coverage "^1.0.0" 1304 | istanbul-lib-instrument "^1.1.1" 1305 | jest-changed-files "^17.0.2" 1306 | jest-config "^18.1.0" 1307 | jest-environment-jsdom "^18.1.0" 1308 | jest-file-exists "^17.0.0" 1309 | jest-haste-map "^18.1.0" 1310 | jest-jasmine2 "^18.1.0" 1311 | jest-mock "^18.0.0" 1312 | jest-resolve "^18.1.0" 1313 | jest-resolve-dependencies "^18.1.0" 1314 | jest-runtime "^18.1.0" 1315 | jest-snapshot "^18.1.0" 1316 | jest-util "^18.1.0" 1317 | json-stable-stringify "^1.0.0" 1318 | node-notifier "^4.6.1" 1319 | sane "~1.4.1" 1320 | strip-ansi "^3.0.1" 1321 | throat "^3.0.0" 1322 | which "^1.1.1" 1323 | worker-farm "^1.3.1" 1324 | yargs "^6.3.0" 1325 | 1326 | jest-config@^18.1.0: 1327 | version "18.1.0" 1328 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-18.1.0.tgz#6111740a6d48aab86ff5a9e6ab0b98bd993b6ff4" 1329 | dependencies: 1330 | chalk "^1.1.1" 1331 | jest-environment-jsdom "^18.1.0" 1332 | jest-environment-node "^18.1.0" 1333 | jest-jasmine2 "^18.1.0" 1334 | jest-mock "^18.0.0" 1335 | jest-resolve "^18.1.0" 1336 | jest-util "^18.1.0" 1337 | json-stable-stringify "^1.0.0" 1338 | 1339 | jest-diff@^18.1.0: 1340 | version "18.1.0" 1341 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-18.1.0.tgz#4ff79e74dd988c139195b365dc65d87f606f4803" 1342 | dependencies: 1343 | chalk "^1.1.3" 1344 | diff "^3.0.0" 1345 | jest-matcher-utils "^18.1.0" 1346 | pretty-format "^18.1.0" 1347 | 1348 | jest-environment-jsdom@^18.1.0: 1349 | version "18.1.0" 1350 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-18.1.0.tgz#18b42f0c4ea2bae9f36cab3639b1e8f8c384e24e" 1351 | dependencies: 1352 | jest-mock "^18.0.0" 1353 | jest-util "^18.1.0" 1354 | jsdom "^9.9.1" 1355 | 1356 | jest-environment-node@^18.1.0: 1357 | version "18.1.0" 1358 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-18.1.0.tgz#4d6797572c8dda99acf5fae696eb62945547c779" 1359 | dependencies: 1360 | jest-mock "^18.0.0" 1361 | jest-util "^18.1.0" 1362 | 1363 | jest-file-exists@^17.0.0: 1364 | version "17.0.0" 1365 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-17.0.0.tgz#7f63eb73a1c43a13f461be261768b45af2cdd169" 1366 | 1367 | jest-haste-map@^18.1.0: 1368 | version "18.1.0" 1369 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-18.1.0.tgz#06839c74b770a40c1a106968851df8d281c08375" 1370 | dependencies: 1371 | fb-watchman "^1.9.0" 1372 | graceful-fs "^4.1.6" 1373 | micromatch "^2.3.11" 1374 | sane "~1.4.1" 1375 | worker-farm "^1.3.1" 1376 | 1377 | jest-jasmine2@^18.1.0: 1378 | version "18.1.0" 1379 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-18.1.0.tgz#094e104c2c189708766c77263bb2aecb5860a80b" 1380 | dependencies: 1381 | graceful-fs "^4.1.6" 1382 | jest-matcher-utils "^18.1.0" 1383 | jest-matchers "^18.1.0" 1384 | jest-snapshot "^18.1.0" 1385 | jest-util "^18.1.0" 1386 | 1387 | jest-matcher-utils@^18.1.0: 1388 | version "18.1.0" 1389 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-18.1.0.tgz#1ac4651955ee2a60cef1e7fcc98cdfd773c0f932" 1390 | dependencies: 1391 | chalk "^1.1.3" 1392 | pretty-format "^18.1.0" 1393 | 1394 | jest-matchers@^18.1.0: 1395 | version "18.1.0" 1396 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-18.1.0.tgz#0341484bf87a1fd0bac0a4d2c899e2b77a3f1ead" 1397 | dependencies: 1398 | jest-diff "^18.1.0" 1399 | jest-matcher-utils "^18.1.0" 1400 | jest-util "^18.1.0" 1401 | pretty-format "^18.1.0" 1402 | 1403 | jest-mock@^18.0.0: 1404 | version "18.0.0" 1405 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-18.0.0.tgz#5c248846ea33fa558b526f5312ab4a6765e489b3" 1406 | 1407 | jest-resolve-dependencies@^18.1.0: 1408 | version "18.1.0" 1409 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-18.1.0.tgz#8134fb5caf59c9ed842fe0152ab01c52711f1bbb" 1410 | dependencies: 1411 | jest-file-exists "^17.0.0" 1412 | jest-resolve "^18.1.0" 1413 | 1414 | jest-resolve@^18.1.0: 1415 | version "18.1.0" 1416 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-18.1.0.tgz#6800accb536658c906cd5e29de412b1ab9ac249b" 1417 | dependencies: 1418 | browser-resolve "^1.11.2" 1419 | jest-file-exists "^17.0.0" 1420 | jest-haste-map "^18.1.0" 1421 | resolve "^1.2.0" 1422 | 1423 | jest-runtime@^18.1.0: 1424 | version "18.1.0" 1425 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-18.1.0.tgz#3abfd687175b21fc3b85a2b8064399e997859922" 1426 | dependencies: 1427 | babel-core "^6.0.0" 1428 | babel-jest "^18.0.0" 1429 | babel-plugin-istanbul "^3.0.0" 1430 | chalk "^1.1.3" 1431 | graceful-fs "^4.1.6" 1432 | jest-config "^18.1.0" 1433 | jest-file-exists "^17.0.0" 1434 | jest-haste-map "^18.1.0" 1435 | jest-mock "^18.0.0" 1436 | jest-resolve "^18.1.0" 1437 | jest-snapshot "^18.1.0" 1438 | jest-util "^18.1.0" 1439 | json-stable-stringify "^1.0.0" 1440 | micromatch "^2.3.11" 1441 | yargs "^6.3.0" 1442 | 1443 | jest-snapshot@^18.1.0: 1444 | version "18.1.0" 1445 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-18.1.0.tgz#55b96d2ee639c9bce76f87f2a3fd40b71c7a5916" 1446 | dependencies: 1447 | jest-diff "^18.1.0" 1448 | jest-file-exists "^17.0.0" 1449 | jest-matcher-utils "^18.1.0" 1450 | jest-util "^18.1.0" 1451 | natural-compare "^1.4.0" 1452 | pretty-format "^18.1.0" 1453 | 1454 | jest-util@^18.1.0: 1455 | version "18.1.0" 1456 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-18.1.0.tgz#3a99c32114ab17f84be094382527006e6d4bfc6a" 1457 | dependencies: 1458 | chalk "^1.1.1" 1459 | diff "^3.0.0" 1460 | graceful-fs "^4.1.6" 1461 | jest-file-exists "^17.0.0" 1462 | jest-mock "^18.0.0" 1463 | mkdirp "^0.5.1" 1464 | 1465 | jest@^18.0.0: 1466 | version "18.1.0" 1467 | resolved "https://registry.yarnpkg.com/jest/-/jest-18.1.0.tgz#bcebf1e203dee5c2ad2091c805300a343d9e6c7d" 1468 | dependencies: 1469 | jest-cli "^18.1.0" 1470 | 1471 | jodid25519@^1.0.0: 1472 | version "1.0.2" 1473 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1474 | dependencies: 1475 | jsbn "~0.1.0" 1476 | 1477 | js-base64@^2.1.9: 1478 | version "2.1.9" 1479 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" 1480 | 1481 | js-tokens@^3.0.0: 1482 | version "3.0.1" 1483 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1484 | 1485 | js-yaml@3.6.1, js-yaml@^3.5.1: 1486 | version "3.6.1" 1487 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 1488 | dependencies: 1489 | argparse "^1.0.7" 1490 | esprima "^2.6.0" 1491 | 1492 | js-yaml@^3.7.0: 1493 | version "3.8.3" 1494 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.3.tgz#33a05ec481c850c8875929166fe1beb61c728766" 1495 | dependencies: 1496 | argparse "^1.0.7" 1497 | esprima "^3.1.1" 1498 | 1499 | jsbn@~0.1.0: 1500 | version "0.1.1" 1501 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1502 | 1503 | jsdom@^9.9.1: 1504 | version "9.12.0" 1505 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1506 | dependencies: 1507 | abab "^1.0.3" 1508 | acorn "^4.0.4" 1509 | acorn-globals "^3.1.0" 1510 | array-equal "^1.0.0" 1511 | content-type-parser "^1.0.1" 1512 | cssom ">= 0.3.2 < 0.4.0" 1513 | cssstyle ">= 0.2.37 < 0.3.0" 1514 | escodegen "^1.6.1" 1515 | html-encoding-sniffer "^1.0.1" 1516 | nwmatcher ">= 1.3.9 < 2.0.0" 1517 | parse5 "^1.5.1" 1518 | request "^2.79.0" 1519 | sax "^1.2.1" 1520 | symbol-tree "^3.2.1" 1521 | tough-cookie "^2.3.2" 1522 | webidl-conversions "^4.0.0" 1523 | whatwg-encoding "^1.0.1" 1524 | whatwg-url "^4.3.0" 1525 | xml-name-validator "^2.0.1" 1526 | 1527 | jsesc@^1.3.0: 1528 | version "1.3.0" 1529 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1530 | 1531 | json-schema@0.2.3: 1532 | version "0.2.3" 1533 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1534 | 1535 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1536 | version "1.0.1" 1537 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1538 | dependencies: 1539 | jsonify "~0.0.0" 1540 | 1541 | json-stringify-safe@~5.0.1: 1542 | version "5.0.1" 1543 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1544 | 1545 | json5@^0.5.0: 1546 | version "0.5.1" 1547 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1548 | 1549 | jsonify@~0.0.0: 1550 | version "0.0.0" 1551 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1552 | 1553 | jsonpointer@^4.0.0: 1554 | version "4.0.1" 1555 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1556 | 1557 | jsprim@^1.2.2: 1558 | version "1.4.0" 1559 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1560 | dependencies: 1561 | assert-plus "1.0.0" 1562 | extsprintf "1.0.2" 1563 | json-schema "0.2.3" 1564 | verror "1.3.6" 1565 | 1566 | kind-of@^3.0.2: 1567 | version "3.2.0" 1568 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.0.tgz#b58abe4d5c044ad33726a8c1525b48cf891bff07" 1569 | dependencies: 1570 | is-buffer "^1.1.5" 1571 | 1572 | lazy-cache@^1.0.3: 1573 | version "1.0.4" 1574 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1575 | 1576 | lcid@^1.0.0: 1577 | version "1.0.0" 1578 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1579 | dependencies: 1580 | invert-kv "^1.0.0" 1581 | 1582 | lcov-parse@0.0.10: 1583 | version "0.0.10" 1584 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 1585 | 1586 | levn@^0.3.0, levn@~0.3.0: 1587 | version "0.3.0" 1588 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1589 | dependencies: 1590 | prelude-ls "~1.1.2" 1591 | type-check "~0.3.2" 1592 | 1593 | load-json-file@^1.0.0: 1594 | version "1.1.0" 1595 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1596 | dependencies: 1597 | graceful-fs "^4.1.2" 1598 | parse-json "^2.2.0" 1599 | pify "^2.0.0" 1600 | pinkie-promise "^2.0.0" 1601 | strip-bom "^2.0.0" 1602 | 1603 | lodash._arraycopy@^3.0.0: 1604 | version "3.0.0" 1605 | resolved "https://registry.yarnpkg.com/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz#76e7b7c1f1fb92547374878a562ed06a3e50f6e1" 1606 | 1607 | lodash._arrayeach@^3.0.0: 1608 | version "3.0.0" 1609 | resolved "https://registry.yarnpkg.com/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz#bab156b2a90d3f1bbd5c653403349e5e5933ef9e" 1610 | 1611 | lodash._baseassign@^3.0.0: 1612 | version "3.2.0" 1613 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1614 | dependencies: 1615 | lodash._basecopy "^3.0.0" 1616 | lodash.keys "^3.0.0" 1617 | 1618 | lodash._baseclone@^3.0.0: 1619 | version "3.3.0" 1620 | resolved "https://registry.yarnpkg.com/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz#303519bf6393fe7e42f34d8b630ef7794e3542b7" 1621 | dependencies: 1622 | lodash._arraycopy "^3.0.0" 1623 | lodash._arrayeach "^3.0.0" 1624 | lodash._baseassign "^3.0.0" 1625 | lodash._basefor "^3.0.0" 1626 | lodash.isarray "^3.0.0" 1627 | lodash.keys "^3.0.0" 1628 | 1629 | lodash._basecopy@^3.0.0: 1630 | version "3.0.1" 1631 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1632 | 1633 | lodash._basefor@^3.0.0: 1634 | version "3.0.3" 1635 | resolved "https://registry.yarnpkg.com/lodash._basefor/-/lodash._basefor-3.0.3.tgz#7550b4e9218ef09fad24343b612021c79b4c20c2" 1636 | 1637 | lodash._bindcallback@^3.0.0: 1638 | version "3.0.1" 1639 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 1640 | 1641 | lodash._getnative@^3.0.0: 1642 | version "3.9.1" 1643 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1644 | 1645 | lodash.assign@^4.2.0: 1646 | version "4.2.0" 1647 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 1648 | 1649 | lodash.clonedeep@^3.0.0: 1650 | version "3.0.2" 1651 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz#a0a1e40d82a5ea89ff5b147b8444ed63d92827db" 1652 | dependencies: 1653 | lodash._baseclone "^3.0.0" 1654 | lodash._bindcallback "^3.0.0" 1655 | 1656 | lodash.isarguments@^3.0.0: 1657 | version "3.1.0" 1658 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1659 | 1660 | lodash.isarray@^3.0.0: 1661 | version "3.0.4" 1662 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1663 | 1664 | lodash.keys@^3.0.0: 1665 | version "3.1.2" 1666 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1667 | dependencies: 1668 | lodash._getnative "^3.0.0" 1669 | lodash.isarguments "^3.0.0" 1670 | lodash.isarray "^3.0.0" 1671 | 1672 | lodash@^4.0.0, lodash@^4.1.0, lodash@^4.14.0, lodash@^4.2.0, lodash@^4.3.0: 1673 | version "4.17.4" 1674 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1675 | 1676 | log-driver@1.2.5: 1677 | version "1.2.5" 1678 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056" 1679 | 1680 | log-symbols@^1.0.2: 1681 | version "1.0.2" 1682 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 1683 | dependencies: 1684 | chalk "^1.0.0" 1685 | 1686 | longest@^1.0.1: 1687 | version "1.0.1" 1688 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1689 | 1690 | loose-envify@^1.0.0: 1691 | version "1.3.1" 1692 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1693 | dependencies: 1694 | js-tokens "^3.0.0" 1695 | 1696 | makeerror@1.0.x: 1697 | version "1.0.11" 1698 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1699 | dependencies: 1700 | tmpl "1.0.x" 1701 | 1702 | marked-terminal@^1.6.2: 1703 | version "1.7.0" 1704 | resolved "https://registry.yarnpkg.com/marked-terminal/-/marked-terminal-1.7.0.tgz#c8c460881c772c7604b64367007ee5f77f125904" 1705 | dependencies: 1706 | cardinal "^1.0.0" 1707 | chalk "^1.1.3" 1708 | cli-table "^0.3.1" 1709 | lodash.assign "^4.2.0" 1710 | node-emoji "^1.4.1" 1711 | 1712 | marked@^0.3.6: 1713 | version "0.3.6" 1714 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.6.tgz#b2c6c618fccece4ef86c4fc6cb8a7cbf5aeda8d7" 1715 | 1716 | merge@^1.1.3: 1717 | version "1.2.0" 1718 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1719 | 1720 | micromatch@^2.3.11: 1721 | version "2.3.11" 1722 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1723 | dependencies: 1724 | arr-diff "^2.0.0" 1725 | array-unique "^0.2.1" 1726 | braces "^1.8.2" 1727 | expand-brackets "^0.1.4" 1728 | extglob "^0.3.1" 1729 | filename-regex "^2.0.0" 1730 | is-extglob "^1.0.0" 1731 | is-glob "^2.0.1" 1732 | kind-of "^3.0.2" 1733 | normalize-path "^2.0.1" 1734 | object.omit "^2.0.0" 1735 | parse-glob "^3.0.4" 1736 | regex-cache "^0.4.2" 1737 | 1738 | mime-db@~1.27.0: 1739 | version "1.27.0" 1740 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1741 | 1742 | mime-types@^2.1.12, mime-types@~2.1.7: 1743 | version "2.1.15" 1744 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1745 | dependencies: 1746 | mime-db "~1.27.0" 1747 | 1748 | minimatch@^3.0.2, minimatch@^3.0.3: 1749 | version "3.0.3" 1750 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1751 | dependencies: 1752 | brace-expansion "^1.0.0" 1753 | 1754 | minimist@0.0.8, minimist@~0.0.1: 1755 | version "0.0.8" 1756 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1757 | 1758 | minimist@1.2.0, minimist@^1.1.1: 1759 | version "1.2.0" 1760 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1761 | 1762 | mkdirp@^0.5.0, mkdirp@^0.5.1: 1763 | version "0.5.1" 1764 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1765 | dependencies: 1766 | minimist "0.0.8" 1767 | 1768 | ms@0.7.3: 1769 | version "0.7.3" 1770 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 1771 | 1772 | mute-stream@0.0.5: 1773 | version "0.0.5" 1774 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 1775 | 1776 | natural-compare@^1.4.0: 1777 | version "1.4.0" 1778 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1779 | 1780 | node-emoji@^1.4.1: 1781 | version "1.5.1" 1782 | resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.5.1.tgz#fd918e412769bf8c448051238233840b2aff16a1" 1783 | dependencies: 1784 | string.prototype.codepointat "^0.2.0" 1785 | 1786 | node-int64@^0.4.0: 1787 | version "0.4.0" 1788 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1789 | 1790 | node-notifier@^4.6.1: 1791 | version "4.6.1" 1792 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-4.6.1.tgz#056d14244f3dcc1ceadfe68af9cff0c5473a33f3" 1793 | dependencies: 1794 | cli-usage "^0.1.1" 1795 | growly "^1.2.0" 1796 | lodash.clonedeep "^3.0.0" 1797 | minimist "^1.1.1" 1798 | semver "^5.1.0" 1799 | shellwords "^0.1.0" 1800 | which "^1.0.5" 1801 | 1802 | normalize-package-data@^2.3.2: 1803 | version "2.3.8" 1804 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 1805 | dependencies: 1806 | hosted-git-info "^2.1.4" 1807 | is-builtin-module "^1.0.0" 1808 | semver "2 || 3 || 4 || 5" 1809 | validate-npm-package-license "^3.0.1" 1810 | 1811 | normalize-path@^2.0.1: 1812 | version "2.1.1" 1813 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1814 | dependencies: 1815 | remove-trailing-separator "^1.0.1" 1816 | 1817 | number-is-nan@^1.0.0: 1818 | version "1.0.1" 1819 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1820 | 1821 | "nwmatcher@>= 1.3.9 < 2.0.0": 1822 | version "1.3.9" 1823 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 1824 | 1825 | oauth-sign@~0.8.1: 1826 | version "0.8.2" 1827 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1828 | 1829 | object-assign@^4.0.1, object-assign@^4.1.0: 1830 | version "4.1.1" 1831 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1832 | 1833 | object.omit@^2.0.0: 1834 | version "2.0.1" 1835 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1836 | dependencies: 1837 | for-own "^0.1.4" 1838 | is-extendable "^0.1.1" 1839 | 1840 | once@^1.3.0, once@^1.4.0: 1841 | version "1.4.0" 1842 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1843 | dependencies: 1844 | wrappy "1" 1845 | 1846 | onetime@^1.0.0: 1847 | version "1.1.0" 1848 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 1849 | 1850 | optimist@^0.6.1: 1851 | version "0.6.1" 1852 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1853 | dependencies: 1854 | minimist "~0.0.1" 1855 | wordwrap "~0.0.2" 1856 | 1857 | optionator@^0.8.1, optionator@^0.8.2: 1858 | version "0.8.2" 1859 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1860 | dependencies: 1861 | deep-is "~0.1.3" 1862 | fast-levenshtein "~2.0.4" 1863 | levn "~0.3.0" 1864 | prelude-ls "~1.1.2" 1865 | type-check "~0.3.2" 1866 | wordwrap "~1.0.0" 1867 | 1868 | os-homedir@^1.0.0: 1869 | version "1.0.2" 1870 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1871 | 1872 | os-locale@^1.4.0: 1873 | version "1.4.0" 1874 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1875 | dependencies: 1876 | lcid "^1.0.0" 1877 | 1878 | os-tmpdir@^1.0.1: 1879 | version "1.0.2" 1880 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1881 | 1882 | parse-glob@^3.0.4: 1883 | version "3.0.4" 1884 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1885 | dependencies: 1886 | glob-base "^0.3.0" 1887 | is-dotfile "^1.0.0" 1888 | is-extglob "^1.0.0" 1889 | is-glob "^2.0.0" 1890 | 1891 | parse-json@^2.2.0: 1892 | version "2.2.0" 1893 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1894 | dependencies: 1895 | error-ex "^1.2.0" 1896 | 1897 | parse5@^1.5.1: 1898 | version "1.5.1" 1899 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 1900 | 1901 | path-exists@^2.0.0: 1902 | version "2.1.0" 1903 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1904 | dependencies: 1905 | pinkie-promise "^2.0.0" 1906 | 1907 | path-is-absolute@^1.0.0: 1908 | version "1.0.1" 1909 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1910 | 1911 | path-is-inside@^1.0.1: 1912 | version "1.0.2" 1913 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1914 | 1915 | path-parse@^1.0.5: 1916 | version "1.0.5" 1917 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1918 | 1919 | path-type@^1.0.0: 1920 | version "1.1.0" 1921 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1922 | dependencies: 1923 | graceful-fs "^4.1.2" 1924 | pify "^2.0.0" 1925 | pinkie-promise "^2.0.0" 1926 | 1927 | pify@^2.0.0: 1928 | version "2.3.0" 1929 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1930 | 1931 | pinkie-promise@^2.0.0: 1932 | version "2.0.1" 1933 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1934 | dependencies: 1935 | pinkie "^2.0.0" 1936 | 1937 | pinkie@^2.0.0: 1938 | version "2.0.4" 1939 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1940 | 1941 | pluralize@^1.2.1: 1942 | version "1.2.1" 1943 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 1944 | 1945 | postcss-reporter@3.x.x: 1946 | version "3.0.0" 1947 | resolved "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-3.0.0.tgz#09ea0f37a444c5693878606e09b018ebeff7cf8f" 1948 | dependencies: 1949 | chalk "^1.0.0" 1950 | lodash "^4.1.0" 1951 | log-symbols "^1.0.2" 1952 | postcss "^5.0.0" 1953 | 1954 | postcss@^5.0.0, postcss@^5.2.6: 1955 | version "5.2.17" 1956 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.17.tgz#cf4f597b864d65c8a492b2eabe9d706c879c388b" 1957 | dependencies: 1958 | chalk "^1.1.3" 1959 | js-base64 "^2.1.9" 1960 | source-map "^0.5.6" 1961 | supports-color "^3.2.3" 1962 | 1963 | prelude-ls@~1.1.2: 1964 | version "1.1.2" 1965 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1966 | 1967 | preserve@^0.2.0: 1968 | version "0.2.0" 1969 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1970 | 1971 | pretty-format@^18.1.0: 1972 | version "18.1.0" 1973 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-18.1.0.tgz#fb65a86f7a7f9194963eee91865c1bcf1039e284" 1974 | dependencies: 1975 | ansi-styles "^2.2.1" 1976 | 1977 | private@^0.1.6: 1978 | version "0.1.7" 1979 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1980 | 1981 | process-nextick-args@~1.0.6: 1982 | version "1.0.7" 1983 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1984 | 1985 | progress@^1.1.8: 1986 | version "1.1.8" 1987 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 1988 | 1989 | prr@~0.0.0: 1990 | version "0.0.0" 1991 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1992 | 1993 | punycode@^1.4.1: 1994 | version "1.4.1" 1995 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1996 | 1997 | qs@~6.3.0: 1998 | version "6.3.2" 1999 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 2000 | 2001 | randomatic@^1.1.3: 2002 | version "1.1.6" 2003 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2004 | dependencies: 2005 | is-number "^2.0.2" 2006 | kind-of "^3.0.2" 2007 | 2008 | read-pkg-up@^1.0.1: 2009 | version "1.0.1" 2010 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2011 | dependencies: 2012 | find-up "^1.0.0" 2013 | read-pkg "^1.0.0" 2014 | 2015 | read-pkg@^1.0.0: 2016 | version "1.1.0" 2017 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2018 | dependencies: 2019 | load-json-file "^1.0.0" 2020 | normalize-package-data "^2.3.2" 2021 | path-type "^1.0.0" 2022 | 2023 | readable-stream@^2.2.2: 2024 | version "2.2.9" 2025 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 2026 | dependencies: 2027 | buffer-shims "~1.0.0" 2028 | core-util-is "~1.0.0" 2029 | inherits "~2.0.1" 2030 | isarray "~1.0.0" 2031 | process-nextick-args "~1.0.6" 2032 | string_decoder "~1.0.0" 2033 | util-deprecate "~1.0.1" 2034 | 2035 | readline2@^1.0.1: 2036 | version "1.0.1" 2037 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2038 | dependencies: 2039 | code-point-at "^1.0.0" 2040 | is-fullwidth-code-point "^1.0.0" 2041 | mute-stream "0.0.5" 2042 | 2043 | rechoir@^0.6.2: 2044 | version "0.6.2" 2045 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2046 | dependencies: 2047 | resolve "^1.1.6" 2048 | 2049 | redeyed@~1.0.0: 2050 | version "1.0.1" 2051 | resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-1.0.1.tgz#e96c193b40c0816b00aec842698e61185e55498a" 2052 | dependencies: 2053 | esprima "~3.0.0" 2054 | 2055 | regenerator-runtime@^0.10.0: 2056 | version "0.10.5" 2057 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2058 | 2059 | regex-cache@^0.4.2: 2060 | version "0.4.3" 2061 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2062 | dependencies: 2063 | is-equal-shallow "^0.1.3" 2064 | is-primitive "^2.0.0" 2065 | 2066 | remove-trailing-separator@^1.0.1: 2067 | version "1.0.1" 2068 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 2069 | 2070 | repeat-element@^1.1.2: 2071 | version "1.1.2" 2072 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2073 | 2074 | repeat-string@^1.5.2: 2075 | version "1.6.1" 2076 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2077 | 2078 | repeating@^2.0.0: 2079 | version "2.0.1" 2080 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2081 | dependencies: 2082 | is-finite "^1.0.0" 2083 | 2084 | request@2.79.0, request@^2.79.0: 2085 | version "2.79.0" 2086 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 2087 | dependencies: 2088 | aws-sign2 "~0.6.0" 2089 | aws4 "^1.2.1" 2090 | caseless "~0.11.0" 2091 | combined-stream "~1.0.5" 2092 | extend "~3.0.0" 2093 | forever-agent "~0.6.1" 2094 | form-data "~2.1.1" 2095 | har-validator "~2.0.6" 2096 | hawk "~3.1.3" 2097 | http-signature "~1.1.0" 2098 | is-typedarray "~1.0.0" 2099 | isstream "~0.1.2" 2100 | json-stringify-safe "~5.0.1" 2101 | mime-types "~2.1.7" 2102 | oauth-sign "~0.8.1" 2103 | qs "~6.3.0" 2104 | stringstream "~0.0.4" 2105 | tough-cookie "~2.3.0" 2106 | tunnel-agent "~0.4.1" 2107 | uuid "^3.0.0" 2108 | 2109 | require-directory@^2.1.1: 2110 | version "2.1.1" 2111 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2112 | 2113 | require-main-filename@^1.0.1: 2114 | version "1.0.1" 2115 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2116 | 2117 | require-uncached@^1.0.2: 2118 | version "1.0.3" 2119 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2120 | dependencies: 2121 | caller-path "^0.1.0" 2122 | resolve-from "^1.0.0" 2123 | 2124 | resolve-from@^1.0.0: 2125 | version "1.0.1" 2126 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2127 | 2128 | resolve@1.1.7: 2129 | version "1.1.7" 2130 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2131 | 2132 | resolve@^1.1.6, resolve@^1.2.0: 2133 | version "1.3.3" 2134 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 2135 | dependencies: 2136 | path-parse "^1.0.5" 2137 | 2138 | restore-cursor@^1.0.1: 2139 | version "1.0.1" 2140 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2141 | dependencies: 2142 | exit-hook "^1.0.0" 2143 | onetime "^1.0.0" 2144 | 2145 | right-align@^0.1.1: 2146 | version "0.1.3" 2147 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2148 | dependencies: 2149 | align-text "^0.1.1" 2150 | 2151 | rimraf@^2.2.8, rimraf@^2.6.1: 2152 | version "2.6.1" 2153 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2154 | dependencies: 2155 | glob "^7.0.5" 2156 | 2157 | run-async@^0.1.0: 2158 | version "0.1.0" 2159 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2160 | dependencies: 2161 | once "^1.3.0" 2162 | 2163 | rx-lite@^3.1.2: 2164 | version "3.1.2" 2165 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2166 | 2167 | sane@~1.4.1: 2168 | version "1.4.1" 2169 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.4.1.tgz#88f763d74040f5f0c256b6163db399bf110ac715" 2170 | dependencies: 2171 | exec-sh "^0.2.0" 2172 | fb-watchman "^1.8.0" 2173 | minimatch "^3.0.2" 2174 | minimist "^1.1.1" 2175 | walker "~1.0.5" 2176 | watch "~0.10.0" 2177 | 2178 | sax@^1.2.1: 2179 | version "1.2.2" 2180 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 2181 | 2182 | "semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.3.0: 2183 | version "5.3.0" 2184 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2185 | 2186 | set-blocking@^2.0.0: 2187 | version "2.0.0" 2188 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2189 | 2190 | shelljs@^0.7.5: 2191 | version "0.7.7" 2192 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 2193 | dependencies: 2194 | glob "^7.0.0" 2195 | interpret "^1.0.0" 2196 | rechoir "^0.6.2" 2197 | 2198 | shellwords@^0.1.0: 2199 | version "0.1.0" 2200 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 2201 | 2202 | slash@^1.0.0: 2203 | version "1.0.0" 2204 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2205 | 2206 | slice-ansi@0.0.4: 2207 | version "0.0.4" 2208 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2209 | 2210 | sntp@1.x.x: 2211 | version "1.0.9" 2212 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2213 | dependencies: 2214 | hoek "2.x.x" 2215 | 2216 | source-map-support@^0.4.2: 2217 | version "0.4.15" 2218 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2219 | dependencies: 2220 | source-map "^0.5.6" 2221 | 2222 | source-map@^0.4.4: 2223 | version "0.4.4" 2224 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2225 | dependencies: 2226 | amdefine ">=0.0.4" 2227 | 2228 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2229 | version "0.5.6" 2230 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2231 | 2232 | source-map@~0.2.0: 2233 | version "0.2.0" 2234 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2235 | dependencies: 2236 | amdefine ">=0.0.4" 2237 | 2238 | spdx-correct@~1.0.0: 2239 | version "1.0.2" 2240 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2241 | dependencies: 2242 | spdx-license-ids "^1.0.2" 2243 | 2244 | spdx-expression-parse@~1.0.0: 2245 | version "1.0.4" 2246 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2247 | 2248 | spdx-license-ids@^1.0.2: 2249 | version "1.2.2" 2250 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2251 | 2252 | sprintf-js@~1.0.2: 2253 | version "1.0.3" 2254 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2255 | 2256 | sshpk@^1.7.0: 2257 | version "1.13.0" 2258 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 2259 | dependencies: 2260 | asn1 "~0.2.3" 2261 | assert-plus "^1.0.0" 2262 | dashdash "^1.12.0" 2263 | getpass "^0.1.1" 2264 | optionalDependencies: 2265 | bcrypt-pbkdf "^1.0.0" 2266 | ecc-jsbn "~0.1.1" 2267 | jodid25519 "^1.0.0" 2268 | jsbn "~0.1.0" 2269 | tweetnacl "~0.14.0" 2270 | 2271 | string-width@^1.0.1, string-width@^1.0.2: 2272 | version "1.0.2" 2273 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2274 | dependencies: 2275 | code-point-at "^1.0.0" 2276 | is-fullwidth-code-point "^1.0.0" 2277 | strip-ansi "^3.0.0" 2278 | 2279 | string-width@^2.0.0: 2280 | version "2.0.0" 2281 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 2282 | dependencies: 2283 | is-fullwidth-code-point "^2.0.0" 2284 | strip-ansi "^3.0.0" 2285 | 2286 | string.prototype.codepointat@^0.2.0: 2287 | version "0.2.0" 2288 | resolved "https://registry.yarnpkg.com/string.prototype.codepointat/-/string.prototype.codepointat-0.2.0.tgz#6b26e9bd3afcaa7be3b4269b526de1b82000ac78" 2289 | 2290 | string_decoder@~1.0.0: 2291 | version "1.0.0" 2292 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" 2293 | dependencies: 2294 | buffer-shims "~1.0.0" 2295 | 2296 | stringstream@~0.0.4: 2297 | version "0.0.5" 2298 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2299 | 2300 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2301 | version "3.0.1" 2302 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2303 | dependencies: 2304 | ansi-regex "^2.0.0" 2305 | 2306 | strip-bom@^2.0.0: 2307 | version "2.0.0" 2308 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2309 | dependencies: 2310 | is-utf8 "^0.2.0" 2311 | 2312 | strip-bom@^3.0.0: 2313 | version "3.0.0" 2314 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2315 | 2316 | strip-json-comments@~2.0.1: 2317 | version "2.0.1" 2318 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2319 | 2320 | supports-color@^2.0.0: 2321 | version "2.0.0" 2322 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2323 | 2324 | supports-color@^3.1.2, supports-color@^3.2.3: 2325 | version "3.2.3" 2326 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2327 | dependencies: 2328 | has-flag "^1.0.0" 2329 | 2330 | symbol-tree@^3.2.1: 2331 | version "3.2.2" 2332 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2333 | 2334 | table@^3.7.8: 2335 | version "3.8.3" 2336 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 2337 | dependencies: 2338 | ajv "^4.7.0" 2339 | ajv-keywords "^1.0.0" 2340 | chalk "^1.1.1" 2341 | lodash "^4.0.0" 2342 | slice-ansi "0.0.4" 2343 | string-width "^2.0.0" 2344 | 2345 | test-exclude@^3.3.0: 2346 | version "3.3.0" 2347 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-3.3.0.tgz#7a17ca1239988c98367b0621456dbb7d4bc38977" 2348 | dependencies: 2349 | arrify "^1.0.1" 2350 | micromatch "^2.3.11" 2351 | object-assign "^4.1.0" 2352 | read-pkg-up "^1.0.1" 2353 | require-main-filename "^1.0.1" 2354 | 2355 | text-table@~0.2.0: 2356 | version "0.2.0" 2357 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2358 | 2359 | throat@^3.0.0: 2360 | version "3.0.0" 2361 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 2362 | 2363 | through@^2.3.6: 2364 | version "2.3.8" 2365 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2366 | 2367 | tmpl@1.0.x: 2368 | version "1.0.4" 2369 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2370 | 2371 | to-fast-properties@^1.0.1: 2372 | version "1.0.2" 2373 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 2374 | 2375 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 2376 | version "2.3.2" 2377 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2378 | dependencies: 2379 | punycode "^1.4.1" 2380 | 2381 | tr46@~0.0.3: 2382 | version "0.0.3" 2383 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2384 | 2385 | trim-right@^1.0.1: 2386 | version "1.0.1" 2387 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2388 | 2389 | tryit@^1.0.1: 2390 | version "1.0.3" 2391 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 2392 | 2393 | tunnel-agent@~0.4.1: 2394 | version "0.4.3" 2395 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 2396 | 2397 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2398 | version "0.14.5" 2399 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2400 | 2401 | type-check@~0.3.2: 2402 | version "0.3.2" 2403 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2404 | dependencies: 2405 | prelude-ls "~1.1.2" 2406 | 2407 | typedarray@^0.0.6: 2408 | version "0.0.6" 2409 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2410 | 2411 | uglify-js@^2.6: 2412 | version "2.8.22" 2413 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.22.tgz#d54934778a8da14903fa29a326fb24c0ab51a1a0" 2414 | dependencies: 2415 | source-map "~0.5.1" 2416 | yargs "~3.10.0" 2417 | optionalDependencies: 2418 | uglify-to-browserify "~1.0.0" 2419 | 2420 | uglify-to-browserify@~1.0.0: 2421 | version "1.0.2" 2422 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2423 | 2424 | user-home@^2.0.0: 2425 | version "2.0.0" 2426 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 2427 | dependencies: 2428 | os-homedir "^1.0.0" 2429 | 2430 | util-deprecate@~1.0.1: 2431 | version "1.0.2" 2432 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2433 | 2434 | uuid@^3.0.0: 2435 | version "3.0.1" 2436 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 2437 | 2438 | validate-npm-package-license@^3.0.1: 2439 | version "3.0.1" 2440 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2441 | dependencies: 2442 | spdx-correct "~1.0.0" 2443 | spdx-expression-parse "~1.0.0" 2444 | 2445 | verror@1.3.6: 2446 | version "1.3.6" 2447 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2448 | dependencies: 2449 | extsprintf "1.0.2" 2450 | 2451 | walker@~1.0.5: 2452 | version "1.0.7" 2453 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2454 | dependencies: 2455 | makeerror "1.0.x" 2456 | 2457 | watch@~0.10.0: 2458 | version "0.10.0" 2459 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 2460 | 2461 | webidl-conversions@^3.0.0: 2462 | version "3.0.1" 2463 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2464 | 2465 | webidl-conversions@^4.0.0: 2466 | version "4.0.1" 2467 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 2468 | 2469 | whatwg-encoding@^1.0.1: 2470 | version "1.0.1" 2471 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 2472 | dependencies: 2473 | iconv-lite "0.4.13" 2474 | 2475 | whatwg-url@^4.3.0: 2476 | version "4.7.1" 2477 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.7.1.tgz#df4dc2e3f25a63b1fa5b32ed6d6c139577d690de" 2478 | dependencies: 2479 | tr46 "~0.0.3" 2480 | webidl-conversions "^3.0.0" 2481 | 2482 | which-module@^1.0.0: 2483 | version "1.0.0" 2484 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2485 | 2486 | which@^1.0.5, which@^1.1.1: 2487 | version "1.2.14" 2488 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 2489 | dependencies: 2490 | isexe "^2.0.0" 2491 | 2492 | window-size@0.1.0: 2493 | version "0.1.0" 2494 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2495 | 2496 | wordwrap@0.0.2: 2497 | version "0.0.2" 2498 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2499 | 2500 | wordwrap@~0.0.2: 2501 | version "0.0.3" 2502 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2503 | 2504 | wordwrap@~1.0.0: 2505 | version "1.0.0" 2506 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2507 | 2508 | worker-farm@^1.3.1: 2509 | version "1.3.1" 2510 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 2511 | dependencies: 2512 | errno ">=0.1.1 <0.2.0-0" 2513 | xtend ">=4.0.0 <4.1.0-0" 2514 | 2515 | wrap-ansi@^2.0.0: 2516 | version "2.1.0" 2517 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2518 | dependencies: 2519 | string-width "^1.0.1" 2520 | strip-ansi "^3.0.1" 2521 | 2522 | wrappy@1: 2523 | version "1.0.2" 2524 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2525 | 2526 | write@^0.2.1: 2527 | version "0.2.1" 2528 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2529 | dependencies: 2530 | mkdirp "^0.5.1" 2531 | 2532 | xml-name-validator@^2.0.1: 2533 | version "2.0.1" 2534 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2535 | 2536 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0: 2537 | version "4.0.1" 2538 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2539 | 2540 | y18n@^3.2.1: 2541 | version "3.2.1" 2542 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2543 | 2544 | yargs-parser@^4.2.0: 2545 | version "4.2.1" 2546 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 2547 | dependencies: 2548 | camelcase "^3.0.0" 2549 | 2550 | yargs@^6.3.0: 2551 | version "6.6.0" 2552 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 2553 | dependencies: 2554 | camelcase "^3.0.0" 2555 | cliui "^3.2.0" 2556 | decamelize "^1.1.1" 2557 | get-caller-file "^1.0.1" 2558 | os-locale "^1.4.0" 2559 | read-pkg-up "^1.0.1" 2560 | require-directory "^2.1.1" 2561 | require-main-filename "^1.0.1" 2562 | set-blocking "^2.0.0" 2563 | string-width "^1.0.2" 2564 | which-module "^1.0.0" 2565 | y18n "^3.2.1" 2566 | yargs-parser "^4.2.0" 2567 | 2568 | yargs@~3.10.0: 2569 | version "3.10.0" 2570 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2571 | dependencies: 2572 | camelcase "^1.0.2" 2573 | cliui "^2.1.0" 2574 | decamelize "^1.0.0" 2575 | window-size "0.1.0" 2576 | --------------------------------------------------------------------------------