├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src └── index.js ├── test └── test.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | lib 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "4" 4 | - "6" 5 | - "node" 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright 2015 Mark Dalgleish 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-icss-selectors [![Build Status][travis-img]][travis] 2 | 3 | [PostCSS]: https://github.com/postcss/postcss 4 | [travis-img]: https://travis-ci.org/css-modules/postcss-icss-selectors.svg 5 | [travis]: https://travis-ci.org/css-modules/postcss-icss-selectors 6 | 7 | PostCSS plugin for css modules to local-scope classes and ids 8 | 9 | ## Usage 10 | 11 | ```js 12 | postcss([ require('postcss-icss-selectors')(options) ]) 13 | ``` 14 | 15 | See [PostCSS] docs for examples for your environment. 16 | 17 | ### Options 18 | 19 | #### mode 20 | 21 | `local` by default or `global` 22 | 23 | In local mode 24 | 25 | ```css 26 | .foo { ... } /* => */ .file__foo---h63h { ... } 27 | 28 | .foo .bar { ... } /* => */ .file__foo----h63h .file__bar----h63h { ... } 29 | 30 | /* Shorthand global selector */ 31 | 32 | :global .foo .bar { ... } /* => */ .foo .bar { ... } 33 | 34 | .foo :global .bar { ... } /* => */ .file__foo----h63h .bar { ... } 35 | 36 | /* Targeted global selector */ 37 | 38 | :global(.foo) .bar { ... } /* => */ .foo .file__bar----h63h { ... } 39 | 40 | .foo:global(.bar) { ... } /* => */ .file__foo----h63h.bar { ... } 41 | 42 | .foo :global(.bar) .baz { ... } /* => */ .file__foo----h63h .bar .file__baz----h63h { ... } 43 | 44 | .foo:global(.bar) .baz { ... } /* => */ .file__foo----h63h.bar .file__baz----h63h { ... } 45 | ``` 46 | 47 | In global mode 48 | 49 | ```css 50 | .foo { ... } /* => */ .foo { ... } 51 | 52 | .foo .bar { ... } /* => */ .foo .bar { ... } 53 | 54 | /* Shorthand local selector */ 55 | 56 | :local .foo :global .bar { ... } /* => */ .file__foo----h63h .bar { ... } 57 | 58 | .foo :local .bar { ... } /* => */ .foo .file__foo----h63h { ... } 59 | 60 | /* Targeted local selector */ 61 | 62 | :local(.foo) .bar { ... } /* => */ .file__foo----h63h .bar { ... } 63 | 64 | .foo:local(.bar) { ... } /* => */ .foo.file__bar----h63h { ... } 65 | 66 | ``` 67 | 68 | #### generateScopeName(localName, filepath, css) 69 | 70 | Converts every new local name in #id or .class defintion to global alias. 71 | By default returns `[name]__[local]---[hash:base64:5]`. 72 | 73 | ### Messages 74 | 75 | postcss-icss-selectors passes result.messages for each local-scoped class or id 76 | 77 | ``` 78 | { 79 | plugin: 'postcss-icss-selectors', 80 | type: 'icss-scoped', 81 | name: string, // local-scoped identifier 82 | value: string // generated global identifier 83 | } 84 | ``` 85 | 86 | ## License 87 | 88 | MIT © Mark Dalgleish and Bogdan Chadkin, 2015 89 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "postcss-icss-selectors", 3 | "version": "2.0.3", 4 | "description": "PostCSS plugin for css modules to local-scope classes and ids", 5 | "keywords": [ 6 | "css-modules", 7 | "postcss", 8 | "css", 9 | "postcss-plugin" 10 | ], 11 | "main": "lib/index.js", 12 | "files": [ 13 | "lib" 14 | ], 15 | "scripts": { 16 | "build": "babel --out-dir lib src", 17 | "test": "jest --coverage", 18 | "precommit": "lint-staged", 19 | "prepublish": "yarn run test && yarn run build" 20 | }, 21 | "lint-staged": { 22 | "*.js": [ 23 | "eslint", 24 | "prettier --write", 25 | "git add" 26 | ] 27 | }, 28 | "eslintConfig": { 29 | "parserOptions": { 30 | "ecmaVersion": 6, 31 | "sourceType": "module" 32 | }, 33 | "env": { 34 | "es6": true 35 | }, 36 | "extends": "eslint:recommended" 37 | }, 38 | "babel": { 39 | "presets": [ 40 | [ 41 | "env", 42 | { 43 | "targets": { 44 | "node": 4 45 | } 46 | } 47 | ] 48 | ] 49 | }, 50 | "author": "Mark Dalgleish and Bogdan Chadkin", 51 | "license": "MIT", 52 | "repository": { 53 | "type": "git", 54 | "url": "https://github.com/css-modules/postcss-icss-selectors.git" 55 | }, 56 | "dependencies": { 57 | "css-selector-tokenizer": "^0.7.0", 58 | "generic-names": "^1.0.2", 59 | "icss-utils": "^3.0.1", 60 | "lodash": "^4.17.4", 61 | "postcss": "^6.0.2" 62 | }, 63 | "devDependencies": { 64 | "babel-cli": "^6.24.1", 65 | "babel-jest": "^20.0.3", 66 | "babel-preset-env": "^1.5.2", 67 | "eslint": "^4.0.0", 68 | "husky": "^0.13.4", 69 | "jest": "^20.0.4", 70 | "lint-staged": "^3.6.1", 71 | "prettier": "^1.4.4", 72 | "strip-indent": "^2.0.0" 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | /* eslint-env node */ 2 | import postcss from "postcss"; 3 | import Tokenizer from "css-selector-tokenizer"; 4 | import { extractICSS, createICSSRules } from "icss-utils"; 5 | import genericNames from "generic-names"; 6 | import fromPairs from "lodash/fromPairs"; 7 | 8 | const plugin = "postcss-icss-selectors"; 9 | 10 | const trimNodes = nodes => { 11 | const firstIndex = nodes.findIndex(node => node.type !== "spacing"); 12 | const lastIndex = nodes 13 | .slice() 14 | .reverse() 15 | .findIndex(node => node.type !== "spacing"); 16 | return nodes.slice(firstIndex, nodes.length - lastIndex); 17 | }; 18 | 19 | const isSpacing = node => node.type === "spacing" || node.type === "operator"; 20 | 21 | const isModifier = node => 22 | node.type === "pseudo-class" && 23 | (node.name === "local" || node.name === "global"); 24 | 25 | function localizeNode(node, { mode, inside, getAlias }) { 26 | const newNodes = node.nodes.reduce((acc, n, index, nodes) => { 27 | switch (n.type) { 28 | case "spacing": 29 | if (isModifier(nodes[index + 1])) { 30 | return [...acc, Object.assign({}, n, { value: "" })]; 31 | } 32 | return [...acc, n]; 33 | 34 | case "operator": 35 | if (isModifier(nodes[index + 1])) { 36 | return [...acc, Object.assign({}, n, { after: "" })]; 37 | } 38 | return [...acc, n]; 39 | 40 | case "pseudo-class": 41 | if (isModifier(n)) { 42 | if (inside) { 43 | throw Error( 44 | `A :${n.name} is not allowed inside of a :${inside}(...)` 45 | ); 46 | } 47 | if (index !== 0 && !isSpacing(nodes[index - 1])) { 48 | throw Error(`Missing whitespace before :${n.name}`); 49 | } 50 | if (index !== nodes.length - 1 && !isSpacing(nodes[index + 1])) { 51 | throw Error(`Missing whitespace after :${n.name}`); 52 | } 53 | // set mode 54 | mode = n.name; 55 | return acc; 56 | } 57 | return [...acc, n]; 58 | 59 | case "nested-pseudo-class": 60 | if (n.name === "local" || n.name === "global") { 61 | if (inside) { 62 | throw Error( 63 | `A :${n.name}(...) is not allowed inside of a :${inside}(...)` 64 | ); 65 | } 66 | return [ 67 | ...acc, 68 | ...localizeNode(n.nodes[0], { 69 | mode: n.name, 70 | inside: n.name, 71 | getAlias 72 | }).nodes 73 | ]; 74 | } else { 75 | return [ 76 | ...acc, 77 | Object.assign({}, n, { 78 | nodes: localizeNode(n.nodes[0], { mode, inside, getAlias }).nodes 79 | }) 80 | ]; 81 | } 82 | 83 | case "id": 84 | case "class": 85 | if (mode === "local") { 86 | return [...acc, Object.assign({}, n, { name: getAlias(n.name) })]; 87 | } 88 | return [...acc, n]; 89 | 90 | default: 91 | return [...acc, n]; 92 | } 93 | }, []); 94 | 95 | return Object.assign({}, node, { nodes: trimNodes(newNodes) }); 96 | } 97 | 98 | const localizeSelectors = (selectors, mode, getAlias) => { 99 | const node = Tokenizer.parse(selectors); 100 | return Tokenizer.stringify( 101 | Object.assign({}, node, { 102 | nodes: node.nodes.map(n => localizeNode(n, { mode, getAlias })) 103 | }) 104 | ); 105 | }; 106 | 107 | const walkRules = (css, callback) => { 108 | css.walkRules(rule => { 109 | if (rule.parent.type !== "atrule" || !/keyframes$/.test(rule.parent.name)) { 110 | callback(rule); 111 | } 112 | }); 113 | }; 114 | 115 | const getMessages = aliases => 116 | Object.keys(aliases).map(name => ({ 117 | plugin, 118 | type: "icss-scoped", 119 | name, 120 | value: aliases[name] 121 | })); 122 | 123 | const getValue = (messages, name) => 124 | messages.find(msg => msg.type === "icss-value" && msg.value === name); 125 | 126 | const isRedeclared = (messages, name) => 127 | messages.find(msg => msg.type === "icss-scoped" && msg.name === name); 128 | 129 | const flatten = array => array.reduce((acc, item) => [...acc, ...item], []); 130 | 131 | const getComposed = (name, messages, root) => [ 132 | name, 133 | ...flatten( 134 | messages 135 | .filter(msg => msg.name === name && msg.value !== root) 136 | .map(msg => getComposed(msg.value, messages, root)) 137 | ) 138 | ]; 139 | 140 | const composeAliases = (aliases, messages) => 141 | Object.keys(aliases).reduce( 142 | (acc, name) => 143 | Object.assign({}, acc, { 144 | [name]: getComposed(name, messages, name) 145 | .map(value => aliases[value] || value) 146 | .join(" ") 147 | }), 148 | {} 149 | ); 150 | 151 | const mapMessages = (messages, type) => 152 | fromPairs( 153 | messages.filter(msg => msg.type === type).map(msg => [msg.name, msg.value]) 154 | ); 155 | 156 | const composeExports = messages => { 157 | const composed = messages.filter(msg => msg.type === "icss-composed"); 158 | const values = mapMessages(messages, "icss-value"); 159 | const scoped = mapMessages(messages, "icss-scoped"); 160 | const aliases = Object.assign({}, scoped, values); 161 | return composeAliases(aliases, composed); 162 | }; 163 | 164 | module.exports = postcss.plugin(plugin, (options = {}) => (css, result) => { 165 | const { icssImports, icssExports } = extractICSS(css); 166 | const generateScopedName = 167 | options.generateScopedName || 168 | genericNames("[name]__[local]---[hash:base64:5]"); 169 | const input = (css && css.source && css.source.input) || {}; 170 | const aliases = {}; 171 | walkRules(css, rule => { 172 | const getAlias = name => { 173 | if (aliases[name]) { 174 | return aliases[name]; 175 | } 176 | // icss-value contract 177 | const valueMsg = getValue(result.messages, name); 178 | if (valueMsg) { 179 | aliases[valueMsg.name] = name; 180 | return name; 181 | } 182 | const alias = generateScopedName(name, input.from, input.css); 183 | aliases[name] = alias; 184 | // icss-scoped contract 185 | if (isRedeclared(result.messages, name)) { 186 | result.warn(`'${name}' already declared`, { node: rule }); 187 | } 188 | return alias; 189 | }; 190 | try { 191 | rule.selector = localizeSelectors( 192 | rule.selector, 193 | options.mode === "global" ? "global" : "local", 194 | getAlias 195 | ); 196 | } catch (e) { 197 | throw rule.error(e.message); 198 | } 199 | }); 200 | result.messages.push(...getMessages(aliases)); 201 | // contracts 202 | const composedExports = composeExports(result.messages); 203 | const exports = Object.assign({}, icssExports, composedExports); 204 | css.prepend(createICSSRules(icssImports, exports)); 205 | }); 206 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- 1 | /* eslint-env jest */ 2 | import postcss from "postcss"; 3 | import stripIndent from "strip-indent"; 4 | import plugin from "../src"; 5 | 6 | const strip = input => stripIndent(input).trim(); 7 | const compile = (input, options) => 8 | postcss([plugin(options)]) 9 | .process(input, options) 10 | .catch(e => Promise.reject(e.message)); 11 | const generateScopedName = name => `__scope__${name}`; 12 | const messagesPlugin = messages => (css, result) => { 13 | result.messages.push(...messages); 14 | }; 15 | 16 | const runCSS = ({ fixture, expected, options }) => { 17 | return expect( 18 | compile( 19 | strip(fixture), 20 | Object.assign({ generateScopedName }, options) 21 | ).then(result => result.css) 22 | ).resolves.toEqual(strip(expected)); 23 | }; 24 | 25 | const runError = ({ fixture, error, options }) => { 26 | return expect(compile(strip(fixture), options)).rejects.toMatch( 27 | RegExp(error) 28 | ); 29 | }; 30 | 31 | const runMessages = ({ 32 | fixture, 33 | inputMessages = [], 34 | outputMessages, 35 | warnings = [], 36 | expected 37 | }) => { 38 | const processor = postcss([ 39 | messagesPlugin(inputMessages), 40 | plugin({ generateScopedName }) 41 | ]).process(strip(fixture)); 42 | return processor.then(result => { 43 | if (expected) { 44 | expect(result.css).toEqual(strip(expected)); 45 | } 46 | expect(result.warnings().map(msg => msg.text)).toEqual(warnings); 47 | expect(result.messages.filter(msg => msg.type !== "warning")).toEqual( 48 | outputMessages 49 | ); 50 | }); 51 | }; 52 | 53 | const getMsg = (name, value) => ({ 54 | plugin: "postcss-icss-selectors", 55 | type: "icss-scoped", 56 | name, 57 | value 58 | }); 59 | 60 | test("scope selectors", () => { 61 | return runCSS({ 62 | fixture: ` 63 | .foobar {} 64 | `, 65 | expected: ` 66 | :export { 67 | foobar: __scope__foobar 68 | } 69 | .__scope__foobar {} 70 | ` 71 | }); 72 | }); 73 | 74 | test("scope ids", () => { 75 | return runCSS({ 76 | fixture: ` 77 | #foobar {} 78 | `, 79 | expected: ` 80 | :export { 81 | foobar: __scope__foobar 82 | } 83 | #__scope__foobar {} 84 | ` 85 | }); 86 | }); 87 | 88 | test("scope multiple selectors", () => { 89 | return runCSS({ 90 | fixture: ` 91 | .foo, .bar {} 92 | `, 93 | expected: ` 94 | :export { 95 | foo: __scope__foo; 96 | bar: __scope__bar 97 | } 98 | .__scope__foo, .__scope__bar {} 99 | ` 100 | }); 101 | }); 102 | 103 | test("scope sibling selectors", () => { 104 | return runCSS({ 105 | fixture: ` 106 | .foo ~ .bar {} 107 | `, 108 | expected: ` 109 | :export { 110 | foo: __scope__foo; 111 | bar: __scope__bar 112 | } 113 | .__scope__foo ~ .__scope__bar {} 114 | ` 115 | }); 116 | }); 117 | 118 | test("scope next sibling selectors", () => { 119 | return runCSS({ 120 | fixture: ` 121 | .foo + .bar {} 122 | `, 123 | expected: ` 124 | :export { 125 | foo: __scope__foo; 126 | bar: __scope__bar 127 | } 128 | .__scope__foo + .__scope__bar {} 129 | ` 130 | }); 131 | }); 132 | 133 | test("scope psuedo elements", () => { 134 | return runCSS({ 135 | fixture: ` 136 | .foo:after {} 137 | `, 138 | expected: ` 139 | :export { 140 | foo: __scope__foo 141 | } 142 | .__scope__foo:after {} 143 | ` 144 | }); 145 | }); 146 | 147 | test("scope media queries", () => { 148 | return runCSS({ 149 | fixture: ` 150 | @media only screen { .foo {} } 151 | `, 152 | expected: ` 153 | :export { 154 | foo: __scope__foo 155 | } @media only screen { .__scope__foo {} } 156 | ` 157 | }); 158 | }); 159 | 160 | test("allow narrow global selectors", () => { 161 | return runCSS({ 162 | fixture: ` 163 | :global(.foo .bar) {} 164 | `, 165 | expected: ` 166 | .foo .bar {} 167 | ` 168 | }); 169 | }); 170 | 171 | test("allow operators before :global", () => { 172 | return runCSS({ 173 | fixture: ` 174 | .foo > :global .bar {} 175 | `, 176 | expected: ` 177 | :export { 178 | foo: __scope__foo 179 | } 180 | .__scope__foo > .bar {} 181 | ` 182 | }); 183 | }); 184 | 185 | test("allow narrow local selectors", () => { 186 | return runCSS({ 187 | fixture: ` 188 | :local(.foo .bar) {} 189 | `, 190 | expected: ` 191 | :export { 192 | foo: __scope__foo; 193 | bar: __scope__bar 194 | } 195 | .__scope__foo .__scope__bar {} 196 | ` 197 | }); 198 | }); 199 | 200 | test("allow broad global selectors", () => { 201 | return runCSS({ 202 | fixture: ` 203 | :global .foo .bar {} 204 | `, 205 | expected: ` 206 | .foo .bar {} 207 | ` 208 | }); 209 | }); 210 | 211 | test("allow broad local selectors", () => { 212 | return runCSS({ 213 | fixture: ` 214 | :local .foo .bar {} 215 | `, 216 | expected: ` 217 | :export { 218 | foo: __scope__foo; 219 | bar: __scope__bar 220 | } 221 | .__scope__foo .__scope__bar {} 222 | ` 223 | }); 224 | }); 225 | 226 | test("allow multiple narrow global selectors", () => { 227 | return runCSS({ 228 | fixture: ` 229 | :global(.foo), :global(.bar) {} 230 | `, 231 | expected: ` 232 | .foo, .bar {} 233 | ` 234 | }); 235 | }); 236 | 237 | test("allow multiple broad global selectors", () => { 238 | return runCSS({ 239 | fixture: ` 240 | :global .foo, :global .bar {} 241 | `, 242 | expected: ` 243 | .foo, .bar {} 244 | ` 245 | }); 246 | }); 247 | 248 | test("allow multiple broad local selectors", () => { 249 | return runCSS({ 250 | fixture: ` 251 | :local .foo, :local .bar {} 252 | `, 253 | expected: ` 254 | :export { 255 | foo: __scope__foo; 256 | bar: __scope__bar 257 | } 258 | .__scope__foo, .__scope__bar {} 259 | ` 260 | }); 261 | }); 262 | 263 | test("allow narrow global selectors nested inside local styles", () => { 264 | return runCSS({ 265 | fixture: ` 266 | .foo :global(.foo .bar) {} 267 | `, 268 | expected: ` 269 | :export { 270 | foo: __scope__foo 271 | } 272 | .__scope__foo .foo .bar {} 273 | ` 274 | }); 275 | }); 276 | 277 | test("allow broad global selectors nested inside local styles", () => { 278 | return runCSS({ 279 | fixture: ` 280 | .foo :global .foo .bar {} 281 | `, 282 | expected: ` 283 | :export { 284 | foo: __scope__foo 285 | } 286 | .__scope__foo .foo .bar {} 287 | ` 288 | }); 289 | }); 290 | 291 | test("allow parentheses inside narrow global selectors", () => { 292 | return runCSS({ 293 | fixture: ` 294 | .foo :global(.foo:not(.bar)) {} 295 | `, 296 | expected: ` 297 | :export { 298 | foo: __scope__foo 299 | } 300 | .__scope__foo .foo:not(.bar) {} 301 | ` 302 | }); 303 | }); 304 | 305 | test("allow parentheses inside narrow local selectors", () => { 306 | return runCSS({ 307 | fixture: ` 308 | .foo :local(.foo:not(.bar)) {} 309 | `, 310 | expected: ` 311 | :export { 312 | foo: __scope__foo; 313 | bar: __scope__bar 314 | } 315 | .__scope__foo .__scope__foo:not(.__scope__bar) {} 316 | ` 317 | }); 318 | }); 319 | 320 | test("allow narrow global selectors appended to local styles", () => { 321 | return runCSS({ 322 | fixture: ` 323 | .foo:global(.foo.bar) {} 324 | `, 325 | expected: ` 326 | :export { 327 | foo: __scope__foo 328 | } 329 | .__scope__foo.foo.bar {} 330 | ` 331 | }); 332 | }); 333 | 334 | test("convert selectors with local nested pseudo class", () => { 335 | return runCSS({ 336 | fixture: ` 337 | :local(.foo) {} 338 | `, 339 | expected: ` 340 | :export { 341 | foo: __scope__foo 342 | } 343 | .__scope__foo {} 344 | ` 345 | }); 346 | }); 347 | 348 | test("convert nested selectors with local nested pseudo class", () => { 349 | return runCSS({ 350 | fixture: ` 351 | :local(.foo) :local(.bar) {} 352 | `, 353 | expected: ` 354 | :export { 355 | foo: __scope__foo; 356 | bar: __scope__bar 357 | } 358 | .__scope__foo .__scope__bar {} 359 | ` 360 | }); 361 | }); 362 | 363 | test("convert multiple selectors with local nested pseudo class", () => { 364 | return runCSS({ 365 | fixture: ` 366 | :local(.foo), :local(.bar) {} 367 | `, 368 | expected: ` 369 | :export { 370 | foo: __scope__foo; 371 | bar: __scope__bar 372 | } 373 | .__scope__foo, .__scope__bar {} 374 | ` 375 | }); 376 | }); 377 | 378 | test("convert sibling selectors with local nested pseudo class", () => { 379 | return runCSS({ 380 | fixture: ` 381 | :local(.foo) ~ :local(.bar) {} 382 | `, 383 | expected: ` 384 | :export { 385 | foo: __scope__foo; 386 | bar: __scope__bar 387 | } 388 | .__scope__foo ~ .__scope__bar {} 389 | ` 390 | }); 391 | }); 392 | 393 | test("convert psuedo elements with local nested pseudo class", () => { 394 | return runCSS({ 395 | fixture: ` 396 | :local(.foo):after {} 397 | `, 398 | expected: ` 399 | :export { 400 | foo: __scope__foo 401 | } 402 | .__scope__foo:after {} 403 | ` 404 | }); 405 | }); 406 | 407 | test("broad global should be limited to selector", () => { 408 | return runCSS({ 409 | fixture: ` 410 | :global .foo, .bar :global, .foobar :global {} 411 | `, 412 | expected: ` 413 | :export { 414 | bar: __scope__bar; 415 | foobar: __scope__foobar 416 | } 417 | .foo, .__scope__bar, .__scope__foobar {} 418 | ` 419 | }); 420 | }); 421 | 422 | test("broad global should be limited to nested selector", () => { 423 | return runCSS({ 424 | fixture: ` 425 | .foo:not(:global .bar).foobar {} 426 | `, 427 | expected: ` 428 | :export { 429 | foo: __scope__foo; 430 | foobar: __scope__foobar 431 | } 432 | .__scope__foo:not(.bar).__scope__foobar {} 433 | ` 434 | }); 435 | }); 436 | 437 | test("broad global and local should allow switching", () => { 438 | return runCSS({ 439 | fixture: ` 440 | .foo :global .bar :local .foobar :local .barfoo {} 441 | `, 442 | expected: ` 443 | :export { 444 | foo: __scope__foo; 445 | foobar: __scope__foobar; 446 | barfoo: __scope__barfoo 447 | } 448 | .__scope__foo .bar .__scope__foobar .__scope__barfoo {} 449 | ` 450 | }); 451 | }); 452 | 453 | test("default to global when mode provided", () => { 454 | return runCSS({ 455 | fixture: ` 456 | .foo {} 457 | `, 458 | options: { mode: "global" }, 459 | expected: ` 460 | .foo {} 461 | ` 462 | }); 463 | }); 464 | 465 | test("default to local when mode provided", () => { 466 | return runCSS({ 467 | fixture: ` 468 | .foo {} 469 | `, 470 | options: { mode: "local" }, 471 | expected: ` 472 | :export { 473 | foo: __scope__foo 474 | } 475 | .__scope__foo {} 476 | ` 477 | }); 478 | }); 479 | 480 | test("use correct spacing", () => { 481 | return runCSS({ 482 | fixture: ` 483 | .a :local .b {} 484 | .a:local(.b) {} 485 | .a:local( .b ) {} 486 | .a :local(.b) {} 487 | .a :local( .b ) {} 488 | :local(.a).b {} 489 | :local( .a ).b {} 490 | :local(.a) .b {} 491 | :local( .a ) .b {} 492 | `, 493 | options: { mode: "global" }, 494 | expected: ` 495 | :export { 496 | b: __scope__b; 497 | a: __scope__a 498 | } 499 | .a .__scope__b {} 500 | .a.__scope__b {} 501 | .a.__scope__b {} 502 | .a .__scope__b {} 503 | .a .__scope__b {} 504 | .__scope__a.b {} 505 | .__scope__a.b {} 506 | .__scope__a .b {} 507 | .__scope__a .b {} 508 | ` 509 | }); 510 | }); 511 | 512 | test("compile explict global element", () => { 513 | return runCSS({ 514 | fixture: ` 515 | :global(input) {} 516 | `, 517 | expected: ` 518 | input {} 519 | ` 520 | }); 521 | }); 522 | 523 | test("compile explict global attribute", () => { 524 | return runCSS({ 525 | fixture: ':global([type="radio"]), :not(:global [type="radio"]) {}', 526 | expected: '[type="radio"], :not([type="radio"]) {}' 527 | }); 528 | }); 529 | 530 | test("throw on nested :locals", () => { 531 | return runError({ 532 | fixture: ":local(:local(.foo)) {}", 533 | error: /is not allowed inside/ 534 | }); 535 | }); 536 | 537 | test("throw on nested :globals", () => { 538 | return runError({ 539 | fixture: ":global(:global(.foo)) {}", 540 | error: /is not allowed inside/ 541 | }); 542 | }); 543 | 544 | test("throw on nested mixed", () => { 545 | return runError({ 546 | fixture: ":local(:global(.foo)) {}", 547 | error: /is not allowed inside/ 548 | }); 549 | }); 550 | 551 | test("throw on nested broad :local", () => { 552 | return runError({ 553 | fixture: ":global(:local .foo) {}", 554 | error: /is not allowed inside/ 555 | }); 556 | }); 557 | 558 | test("throw on incorrect spacing with broad :global", () => { 559 | return runError({ 560 | fixture: ".foo :global.bar {}", 561 | error: /Missing whitespace after :global/ 562 | }); 563 | }); 564 | 565 | test("throw on incorrect spacing with broad :local", () => { 566 | return runError({ 567 | fixture: ".foo:local .bar {}", 568 | error: /Missing whitespace before :local/ 569 | }); 570 | }); 571 | 572 | test("throw on incorrect spacing with broad :local on both side", () => { 573 | return runError({ 574 | fixture: ".foo:local.bar {}", 575 | error: /Missing whitespace before :local/ 576 | }); 577 | }); 578 | 579 | test("throw on incorrect spacing with broad :global on both side", () => { 580 | return runError({ 581 | fixture: ".foo:global.bar {}", 582 | error: /Missing whitespace before :global/ 583 | }); 584 | }); 585 | 586 | test("pass through global element", () => { 587 | return runCSS({ 588 | fixture: "input {}", 589 | expected: "input {}" 590 | }); 591 | }); 592 | 593 | test("localise class and pass through element", () => { 594 | return runCSS({ 595 | fixture: ` 596 | .foo input {} 597 | `, 598 | expected: ` 599 | :export { 600 | foo: __scope__foo 601 | } 602 | .__scope__foo input {} 603 | ` 604 | }); 605 | }); 606 | 607 | test("pass through attribute selector", () => { 608 | return runCSS({ 609 | fixture: '[type="radio"] {}', 610 | expected: '[type="radio"] {}' 611 | }); 612 | }); 613 | 614 | test("not crash on atrule without nodes", () => { 615 | return runCSS({ 616 | fixture: '@charset "utf-8";', 617 | expected: '@charset "utf-8";' 618 | }); 619 | }); 620 | 621 | test("not crash on a rule without nodes", () => { 622 | const inner = postcss.rule({ selector: ".b", ruleWithoutBody: true }); 623 | const outer = postcss.rule({ selector: ".a" }).push(inner); 624 | const root = postcss.root().push(outer); 625 | inner.nodes = undefined; 626 | // postcss-less's stringify would honor `ruleWithoutBody` and omit the trailing `{}` 627 | return expect( 628 | compile(root, { generateScopedName }).then(result => result.css) 629 | ).resolves.toEqual( 630 | strip(` 631 | :export { 632 | a: __scope__a; 633 | b: __scope__b 634 | } 635 | .__scope__a { 636 | .__scope__b {} 637 | } 638 | `) 639 | ); 640 | }); 641 | 642 | test("not localize keyframes rules", () => { 643 | return runCSS({ 644 | fixture: "@keyframes foo { from {} to {} }", 645 | expected: "@keyframes foo { from {} to {} }" 646 | }); 647 | }); 648 | 649 | test("generates default scoped name", () => { 650 | return expect( 651 | compile(strip(".foo {}"), { from: "/path/to/file.css" }).then( 652 | result => result.css 653 | ) 654 | ).resolves.toMatch( 655 | /^:export \{\s+foo: file__foo---\w+\s+\}\s+.file__foo---\w+ \{\}$/ 656 | ); 657 | }); 658 | 659 | test("reuse :export statements", () => { 660 | return runCSS({ 661 | fixture: ` 662 | :export { 663 | foo: __foo 664 | } 665 | .bar {} 666 | `, 667 | expected: ` 668 | :export { 669 | foo: __foo; 670 | bar: __scope__bar 671 | } 672 | .__scope__bar {} 673 | ` 674 | }); 675 | }); 676 | 677 | test("save :import statemtents", () => { 678 | return runCSS({ 679 | fixture: ` 680 | :import("~/lol.css") { 681 | foo: __foo 682 | } 683 | `, 684 | expected: ` 685 | :import('~/lol.css') { 686 | foo: __foo 687 | } 688 | ` 689 | }); 690 | }); 691 | 692 | test("dispatch messages with all locals", () => { 693 | return runMessages({ 694 | fixture: ` 695 | .foo {} 696 | .foo .bar {} 697 | :global .baz :local(.zab) {} 698 | `, 699 | outputMessages: [ 700 | { 701 | plugin: "postcss-icss-selectors", 702 | type: "icss-scoped", 703 | name: "foo", 704 | value: "__scope__foo" 705 | }, 706 | { 707 | plugin: "postcss-icss-selectors", 708 | type: "icss-scoped", 709 | name: "bar", 710 | value: "__scope__bar" 711 | }, 712 | { 713 | plugin: "postcss-icss-selectors", 714 | type: "icss-scoped", 715 | name: "zab", 716 | value: "__scope__zab" 717 | } 718 | ] 719 | }); 720 | }); 721 | 722 | test("icss-scoped contract", () => { 723 | const inputMessages = [ 724 | { 725 | plugin: "previous-plugin", 726 | type: "icss-scoped", 727 | name: "foo", 728 | value: "__declared__foo" 729 | } 730 | ]; 731 | return runMessages({ 732 | fixture: ` 733 | :export { 734 | foo: __declared__foo 735 | } 736 | .foo {} 737 | .bar {} 738 | .foo {} 739 | `, 740 | expected: ` 741 | :export { 742 | foo: __scope__foo; 743 | bar: __scope__bar 744 | } 745 | .__scope__foo {} 746 | .__scope__bar {} 747 | .__scope__foo {} 748 | `, 749 | inputMessages, 750 | outputMessages: [ 751 | ...inputMessages, 752 | { 753 | plugin: "postcss-icss-selectors", 754 | type: "icss-scoped", 755 | name: "foo", 756 | value: "__scope__foo" 757 | }, 758 | { 759 | plugin: "postcss-icss-selectors", 760 | type: "icss-scoped", 761 | name: "bar", 762 | value: "__scope__bar" 763 | } 764 | ], 765 | warnings: [`'foo' already declared`] 766 | }); 767 | }); 768 | 769 | test("icss-composed contract", () => { 770 | const inputMessages = [ 771 | { type: "icss-composed", name: "foo", value: "__compose__foo1" }, 772 | { type: "icss-composed", name: "foo", value: "__compose__foo2" }, 773 | { type: "icss-composed", name: "bar", value: "__compose__bar" } 774 | ]; 775 | return runMessages({ 776 | fixture: ` 777 | :export { 778 | foo: __compose__foo; 779 | baz: __declared__baz 780 | } 781 | .foo {} 782 | .bar {} 783 | .baz {} 784 | `, 785 | expected: ` 786 | :export { 787 | foo: __scope__foo __compose__foo1 __compose__foo2; 788 | baz: __scope__baz; 789 | bar: __scope__bar __compose__bar 790 | } 791 | .__scope__foo {} 792 | .__scope__bar {} 793 | .__scope__baz {} 794 | `, 795 | inputMessages, 796 | outputMessages: [ 797 | ...inputMessages, 798 | getMsg("foo", "__scope__foo"), 799 | getMsg("bar", "__scope__bar"), 800 | getMsg("baz", "__scope__baz") 801 | ] 802 | }); 803 | }); 804 | 805 | test("icss-composed contract with local dependencies", () => { 806 | const inputMessages = [ 807 | { type: "icss-composed", name: "bar", value: "foo" }, 808 | { type: "icss-composed", name: "tar", value: "baz" }, 809 | { type: "icss-composed", name: "doo", value: "bar" }, 810 | { type: "icss-composed", name: "doo", value: "tar" } 811 | ]; 812 | return runMessages({ 813 | fixture: ` 814 | .foo {} 815 | .bar {} 816 | .baz {} 817 | .tar {} 818 | .doo {} 819 | `, 820 | expected: ` 821 | :export { 822 | foo: __scope__foo; 823 | bar: __scope__bar __scope__foo; 824 | baz: __scope__baz; 825 | tar: __scope__tar __scope__baz; 826 | doo: __scope__doo __scope__bar __scope__foo __scope__tar __scope__baz 827 | } 828 | .__scope__foo {} 829 | .__scope__bar {} 830 | .__scope__baz {} 831 | .__scope__tar {} 832 | .__scope__doo {} 833 | `, 834 | inputMessages, 835 | outputMessages: [ 836 | ...inputMessages, 837 | getMsg("foo", "__scope__foo"), 838 | getMsg("bar", "__scope__bar"), 839 | getMsg("baz", "__scope__baz"), 840 | getMsg("tar", "__scope__tar"), 841 | getMsg("doo", "__scope__doo") 842 | ] 843 | }); 844 | }); 845 | 846 | test("icss-composed contract with recursive local composition", () => { 847 | const inputMessages = [ 848 | { type: "icss-composed", name: "foo", value: "bar" }, 849 | { type: "icss-composed", name: "bar", value: "foo" } 850 | ]; 851 | return runMessages({ 852 | fixture: ` 853 | .foo {} 854 | .bar {} 855 | `, 856 | expected: ` 857 | :export { 858 | foo: __scope__foo __scope__bar; 859 | bar: __scope__bar __scope__foo 860 | } 861 | .__scope__foo {} 862 | .__scope__bar {} 863 | `, 864 | inputMessages, 865 | outputMessages: [ 866 | ...inputMessages, 867 | getMsg("foo", "__scope__foo"), 868 | getMsg("bar", "__scope__bar") 869 | ] 870 | }); 871 | }); 872 | 873 | test("icss-value contract", () => { 874 | const inputMessages = [ 875 | { type: "icss-value", name: "foo", value: "__declared__foo" }, 876 | { type: "icss-value", name: "bar", value: "__declared__bar" } 877 | ]; 878 | return runMessages({ 879 | fixture: ` 880 | :export { 881 | foo: __declared__foo 882 | } 883 | .__declared__foo {} 884 | .__declared__bar {} 885 | .baz {} 886 | `, 887 | expected: ` 888 | :export { 889 | foo: __declared__foo; 890 | bar: __declared__bar; 891 | baz: __scope__baz 892 | } 893 | .__declared__foo {} 894 | .__declared__bar {} 895 | .__scope__baz {} 896 | `, 897 | inputMessages, 898 | outputMessages: [ 899 | ...inputMessages, 900 | getMsg("foo", "__declared__foo"), 901 | getMsg("bar", "__declared__bar"), 902 | getMsg("baz", "__scope__baz") 903 | ] 904 | }); 905 | }); 906 | 907 | test("icss-value and icss-composed together", () => { 908 | const inputMessages = [ 909 | { type: "icss-composed", name: "bar", value: "foo" }, 910 | { type: "icss-value", name: "foo", value: "__value__foo" } 911 | ]; 912 | return runMessages({ 913 | fixture: ` 914 | :import('path') { 915 | foo: __value__foo 916 | } 917 | :export { 918 | foo: __value__foo 919 | } 920 | .__value__foo {} 921 | .bar {} 922 | `, 923 | expected: ` 924 | :import('path') { 925 | foo: __value__foo 926 | } 927 | :export { 928 | foo: __value__foo; 929 | bar: __scope__bar __value__foo 930 | } 931 | .__value__foo {} 932 | .__scope__bar {} 933 | `, 934 | inputMessages, 935 | outputMessages: [ 936 | ...inputMessages, 937 | getMsg("foo", "__value__foo"), 938 | getMsg("bar", "__scope__bar") 939 | ] 940 | }); 941 | }); 942 | -------------------------------------------------------------------------------- /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 | abbrev@1: 10 | version "1.0.9" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 12 | 13 | acorn-globals@^3.1.0: 14 | version "3.1.0" 15 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 16 | dependencies: 17 | acorn "^4.0.4" 18 | 19 | acorn-jsx@^3.0.0: 20 | version "3.0.1" 21 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 22 | dependencies: 23 | acorn "^3.0.4" 24 | 25 | acorn@^3.0.4: 26 | version "3.3.0" 27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 28 | 29 | acorn@^4.0.4: 30 | version "4.0.11" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 32 | 33 | acorn@^5.0.1: 34 | version "5.0.3" 35 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 36 | 37 | ajv-keywords@^1.0.0: 38 | version "1.5.1" 39 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 40 | 41 | ajv@^4.7.0, ajv@^4.9.1: 42 | version "4.11.8" 43 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 44 | dependencies: 45 | co "^4.6.0" 46 | json-stable-stringify "^1.0.1" 47 | 48 | align-text@^0.1.1, align-text@^0.1.3: 49 | version "0.1.4" 50 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 51 | dependencies: 52 | kind-of "^3.0.2" 53 | longest "^1.0.1" 54 | repeat-string "^1.5.2" 55 | 56 | amdefine@>=0.0.4: 57 | version "1.0.1" 58 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 59 | 60 | ansi-escapes@^1.0.0, ansi-escapes@^1.4.0: 61 | version "1.4.0" 62 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 63 | 64 | ansi-escapes@^2.0.0: 65 | version "2.0.0" 66 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" 67 | 68 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 69 | version "2.1.1" 70 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 71 | 72 | ansi-styles@^2.2.1: 73 | version "2.2.1" 74 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 75 | 76 | ansi-styles@^3.0.0: 77 | version "3.0.0" 78 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1" 79 | dependencies: 80 | color-convert "^1.0.0" 81 | 82 | anymatch@^1.3.0: 83 | version "1.3.0" 84 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 85 | dependencies: 86 | arrify "^1.0.0" 87 | micromatch "^2.1.5" 88 | 89 | app-root-path@^2.0.0: 90 | version "2.0.1" 91 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" 92 | 93 | append-transform@^0.4.0: 94 | version "0.4.0" 95 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 96 | dependencies: 97 | default-require-extensions "^1.0.0" 98 | 99 | aproba@^1.0.3: 100 | version "1.1.1" 101 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 102 | 103 | are-we-there-yet@~1.1.2: 104 | version "1.1.4" 105 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 106 | dependencies: 107 | delegates "^1.0.0" 108 | readable-stream "^2.0.6" 109 | 110 | argparse@^1.0.7: 111 | version "1.0.9" 112 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 113 | dependencies: 114 | sprintf-js "~1.0.2" 115 | 116 | arr-diff@^2.0.0: 117 | version "2.0.0" 118 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 119 | dependencies: 120 | arr-flatten "^1.0.1" 121 | 122 | arr-flatten@^1.0.1: 123 | version "1.0.3" 124 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 125 | 126 | array-equal@^1.0.0: 127 | version "1.0.0" 128 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 129 | 130 | array-union@^1.0.1: 131 | version "1.0.2" 132 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 133 | dependencies: 134 | array-uniq "^1.0.1" 135 | 136 | array-uniq@^1.0.1: 137 | version "1.0.3" 138 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 139 | 140 | array-unique@^0.2.1: 141 | version "0.2.1" 142 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 143 | 144 | arrify@^1.0.0, arrify@^1.0.1: 145 | version "1.0.1" 146 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 147 | 148 | asn1@~0.2.3: 149 | version "0.2.3" 150 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 151 | 152 | assert-plus@1.0.0, assert-plus@^1.0.0: 153 | version "1.0.0" 154 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 155 | 156 | assert-plus@^0.2.0: 157 | version "0.2.0" 158 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 159 | 160 | async-each@^1.0.0: 161 | version "1.0.1" 162 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 163 | 164 | async@^1.4.0: 165 | version "1.5.2" 166 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 167 | 168 | async@^2.1.4: 169 | version "2.4.1" 170 | resolved "https://registry.yarnpkg.com/async/-/async-2.4.1.tgz#62a56b279c98a11d0987096a01cc3eeb8eb7bbd7" 171 | dependencies: 172 | lodash "^4.14.0" 173 | 174 | asynckit@^0.4.0: 175 | version "0.4.0" 176 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 177 | 178 | aws-sign2@~0.6.0: 179 | version "0.6.0" 180 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 181 | 182 | aws4@^1.2.1: 183 | version "1.6.0" 184 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 185 | 186 | babel-cli@^6.24.1: 187 | version "6.24.1" 188 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 189 | dependencies: 190 | babel-core "^6.24.1" 191 | babel-polyfill "^6.23.0" 192 | babel-register "^6.24.1" 193 | babel-runtime "^6.22.0" 194 | commander "^2.8.1" 195 | convert-source-map "^1.1.0" 196 | fs-readdir-recursive "^1.0.0" 197 | glob "^7.0.0" 198 | lodash "^4.2.0" 199 | output-file-sync "^1.1.0" 200 | path-is-absolute "^1.0.0" 201 | slash "^1.0.0" 202 | source-map "^0.5.0" 203 | v8flags "^2.0.10" 204 | optionalDependencies: 205 | chokidar "^1.6.1" 206 | 207 | babel-code-frame@^6.22.0: 208 | version "6.22.0" 209 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 210 | dependencies: 211 | chalk "^1.1.0" 212 | esutils "^2.0.2" 213 | js-tokens "^3.0.0" 214 | 215 | babel-core@^6.0.0, babel-core@^6.24.1: 216 | version "6.24.1" 217 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 218 | dependencies: 219 | babel-code-frame "^6.22.0" 220 | babel-generator "^6.24.1" 221 | babel-helpers "^6.24.1" 222 | babel-messages "^6.23.0" 223 | babel-register "^6.24.1" 224 | babel-runtime "^6.22.0" 225 | babel-template "^6.24.1" 226 | babel-traverse "^6.24.1" 227 | babel-types "^6.24.1" 228 | babylon "^6.11.0" 229 | convert-source-map "^1.1.0" 230 | debug "^2.1.1" 231 | json5 "^0.5.0" 232 | lodash "^4.2.0" 233 | minimatch "^3.0.2" 234 | path-is-absolute "^1.0.0" 235 | private "^0.1.6" 236 | slash "^1.0.0" 237 | source-map "^0.5.0" 238 | 239 | babel-generator@^6.18.0, babel-generator@^6.24.1: 240 | version "6.24.1" 241 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 242 | dependencies: 243 | babel-messages "^6.23.0" 244 | babel-runtime "^6.22.0" 245 | babel-types "^6.24.1" 246 | detect-indent "^4.0.0" 247 | jsesc "^1.3.0" 248 | lodash "^4.2.0" 249 | source-map "^0.5.0" 250 | trim-right "^1.0.1" 251 | 252 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 253 | version "6.24.1" 254 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 255 | dependencies: 256 | babel-helper-explode-assignable-expression "^6.24.1" 257 | babel-runtime "^6.22.0" 258 | babel-types "^6.24.1" 259 | 260 | babel-helper-call-delegate@^6.24.1: 261 | version "6.24.1" 262 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 263 | dependencies: 264 | babel-helper-hoist-variables "^6.24.1" 265 | babel-runtime "^6.22.0" 266 | babel-traverse "^6.24.1" 267 | babel-types "^6.24.1" 268 | 269 | babel-helper-define-map@^6.24.1: 270 | version "6.24.1" 271 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 272 | dependencies: 273 | babel-helper-function-name "^6.24.1" 274 | babel-runtime "^6.22.0" 275 | babel-types "^6.24.1" 276 | lodash "^4.2.0" 277 | 278 | babel-helper-explode-assignable-expression@^6.24.1: 279 | version "6.24.1" 280 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 281 | dependencies: 282 | babel-runtime "^6.22.0" 283 | babel-traverse "^6.24.1" 284 | babel-types "^6.24.1" 285 | 286 | babel-helper-function-name@^6.24.1: 287 | version "6.24.1" 288 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 289 | dependencies: 290 | babel-helper-get-function-arity "^6.24.1" 291 | babel-runtime "^6.22.0" 292 | babel-template "^6.24.1" 293 | babel-traverse "^6.24.1" 294 | babel-types "^6.24.1" 295 | 296 | babel-helper-get-function-arity@^6.24.1: 297 | version "6.24.1" 298 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 299 | dependencies: 300 | babel-runtime "^6.22.0" 301 | babel-types "^6.24.1" 302 | 303 | babel-helper-hoist-variables@^6.24.1: 304 | version "6.24.1" 305 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 306 | dependencies: 307 | babel-runtime "^6.22.0" 308 | babel-types "^6.24.1" 309 | 310 | babel-helper-optimise-call-expression@^6.24.1: 311 | version "6.24.1" 312 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 313 | dependencies: 314 | babel-runtime "^6.22.0" 315 | babel-types "^6.24.1" 316 | 317 | babel-helper-regex@^6.24.1: 318 | version "6.24.1" 319 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 320 | dependencies: 321 | babel-runtime "^6.22.0" 322 | babel-types "^6.24.1" 323 | lodash "^4.2.0" 324 | 325 | babel-helper-remap-async-to-generator@^6.24.1: 326 | version "6.24.1" 327 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 328 | dependencies: 329 | babel-helper-function-name "^6.24.1" 330 | babel-runtime "^6.22.0" 331 | babel-template "^6.24.1" 332 | babel-traverse "^6.24.1" 333 | babel-types "^6.24.1" 334 | 335 | babel-helper-replace-supers@^6.24.1: 336 | version "6.24.1" 337 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 338 | dependencies: 339 | babel-helper-optimise-call-expression "^6.24.1" 340 | babel-messages "^6.23.0" 341 | babel-runtime "^6.22.0" 342 | babel-template "^6.24.1" 343 | babel-traverse "^6.24.1" 344 | babel-types "^6.24.1" 345 | 346 | babel-helpers@^6.24.1: 347 | version "6.24.1" 348 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 349 | dependencies: 350 | babel-runtime "^6.22.0" 351 | babel-template "^6.24.1" 352 | 353 | babel-jest@^20.0.3: 354 | version "20.0.3" 355 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 356 | dependencies: 357 | babel-core "^6.0.0" 358 | babel-plugin-istanbul "^4.0.0" 359 | babel-preset-jest "^20.0.3" 360 | 361 | babel-messages@^6.23.0: 362 | version "6.23.0" 363 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 364 | dependencies: 365 | babel-runtime "^6.22.0" 366 | 367 | babel-plugin-check-es2015-constants@^6.22.0: 368 | version "6.22.0" 369 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 370 | dependencies: 371 | babel-runtime "^6.22.0" 372 | 373 | babel-plugin-istanbul@^4.0.0: 374 | version "4.1.3" 375 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.3.tgz#6ee6280410dcf59c7747518c3dfd98680958f102" 376 | dependencies: 377 | find-up "^2.1.0" 378 | istanbul-lib-instrument "^1.7.1" 379 | test-exclude "^4.1.0" 380 | 381 | babel-plugin-jest-hoist@^20.0.3: 382 | version "20.0.3" 383 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 384 | 385 | babel-plugin-syntax-async-functions@^6.8.0: 386 | version "6.13.0" 387 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 388 | 389 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 390 | version "6.13.0" 391 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 392 | 393 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 394 | version "6.22.0" 395 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 396 | 397 | babel-plugin-transform-async-to-generator@^6.22.0: 398 | version "6.24.1" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 400 | dependencies: 401 | babel-helper-remap-async-to-generator "^6.24.1" 402 | babel-plugin-syntax-async-functions "^6.8.0" 403 | babel-runtime "^6.22.0" 404 | 405 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 406 | version "6.22.0" 407 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 408 | dependencies: 409 | babel-runtime "^6.22.0" 410 | 411 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 412 | version "6.22.0" 413 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 414 | dependencies: 415 | babel-runtime "^6.22.0" 416 | 417 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 418 | version "6.24.1" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 420 | dependencies: 421 | babel-runtime "^6.22.0" 422 | babel-template "^6.24.1" 423 | babel-traverse "^6.24.1" 424 | babel-types "^6.24.1" 425 | lodash "^4.2.0" 426 | 427 | babel-plugin-transform-es2015-classes@^6.23.0: 428 | version "6.24.1" 429 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 430 | dependencies: 431 | babel-helper-define-map "^6.24.1" 432 | babel-helper-function-name "^6.24.1" 433 | babel-helper-optimise-call-expression "^6.24.1" 434 | babel-helper-replace-supers "^6.24.1" 435 | babel-messages "^6.23.0" 436 | babel-runtime "^6.22.0" 437 | babel-template "^6.24.1" 438 | babel-traverse "^6.24.1" 439 | babel-types "^6.24.1" 440 | 441 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 442 | version "6.24.1" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 444 | dependencies: 445 | babel-runtime "^6.22.0" 446 | babel-template "^6.24.1" 447 | 448 | babel-plugin-transform-es2015-destructuring@^6.23.0: 449 | version "6.23.0" 450 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 451 | dependencies: 452 | babel-runtime "^6.22.0" 453 | 454 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 455 | version "6.24.1" 456 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 457 | dependencies: 458 | babel-runtime "^6.22.0" 459 | babel-types "^6.24.1" 460 | 461 | babel-plugin-transform-es2015-for-of@^6.23.0: 462 | version "6.23.0" 463 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 464 | dependencies: 465 | babel-runtime "^6.22.0" 466 | 467 | babel-plugin-transform-es2015-function-name@^6.22.0: 468 | version "6.24.1" 469 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 470 | dependencies: 471 | babel-helper-function-name "^6.24.1" 472 | babel-runtime "^6.22.0" 473 | babel-types "^6.24.1" 474 | 475 | babel-plugin-transform-es2015-literals@^6.22.0: 476 | version "6.22.0" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 478 | dependencies: 479 | babel-runtime "^6.22.0" 480 | 481 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 482 | version "6.24.1" 483 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 484 | dependencies: 485 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 486 | babel-runtime "^6.22.0" 487 | babel-template "^6.24.1" 488 | 489 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 490 | version "6.24.1" 491 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 492 | dependencies: 493 | babel-plugin-transform-strict-mode "^6.24.1" 494 | babel-runtime "^6.22.0" 495 | babel-template "^6.24.1" 496 | babel-types "^6.24.1" 497 | 498 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 499 | version "6.24.1" 500 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 501 | dependencies: 502 | babel-helper-hoist-variables "^6.24.1" 503 | babel-runtime "^6.22.0" 504 | babel-template "^6.24.1" 505 | 506 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 507 | version "6.24.1" 508 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 509 | dependencies: 510 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 511 | babel-runtime "^6.22.0" 512 | babel-template "^6.24.1" 513 | 514 | babel-plugin-transform-es2015-object-super@^6.22.0: 515 | version "6.24.1" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 517 | dependencies: 518 | babel-helper-replace-supers "^6.24.1" 519 | babel-runtime "^6.22.0" 520 | 521 | babel-plugin-transform-es2015-parameters@^6.23.0: 522 | version "6.24.1" 523 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 524 | dependencies: 525 | babel-helper-call-delegate "^6.24.1" 526 | babel-helper-get-function-arity "^6.24.1" 527 | babel-runtime "^6.22.0" 528 | babel-template "^6.24.1" 529 | babel-traverse "^6.24.1" 530 | babel-types "^6.24.1" 531 | 532 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 533 | version "6.24.1" 534 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 535 | dependencies: 536 | babel-runtime "^6.22.0" 537 | babel-types "^6.24.1" 538 | 539 | babel-plugin-transform-es2015-spread@^6.22.0: 540 | version "6.22.0" 541 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 542 | dependencies: 543 | babel-runtime "^6.22.0" 544 | 545 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 546 | version "6.24.1" 547 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 548 | dependencies: 549 | babel-helper-regex "^6.24.1" 550 | babel-runtime "^6.22.0" 551 | babel-types "^6.24.1" 552 | 553 | babel-plugin-transform-es2015-template-literals@^6.22.0: 554 | version "6.22.0" 555 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 556 | dependencies: 557 | babel-runtime "^6.22.0" 558 | 559 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 560 | version "6.23.0" 561 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 562 | dependencies: 563 | babel-runtime "^6.22.0" 564 | 565 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 566 | version "6.24.1" 567 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 568 | dependencies: 569 | babel-helper-regex "^6.24.1" 570 | babel-runtime "^6.22.0" 571 | regexpu-core "^2.0.0" 572 | 573 | babel-plugin-transform-exponentiation-operator@^6.22.0: 574 | version "6.24.1" 575 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 576 | dependencies: 577 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 578 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 579 | babel-runtime "^6.22.0" 580 | 581 | babel-plugin-transform-regenerator@^6.22.0: 582 | version "6.24.1" 583 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 584 | dependencies: 585 | regenerator-transform "0.9.11" 586 | 587 | babel-plugin-transform-strict-mode@^6.24.1: 588 | version "6.24.1" 589 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 590 | dependencies: 591 | babel-runtime "^6.22.0" 592 | babel-types "^6.24.1" 593 | 594 | babel-polyfill@^6.23.0: 595 | version "6.23.0" 596 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 597 | dependencies: 598 | babel-runtime "^6.22.0" 599 | core-js "^2.4.0" 600 | regenerator-runtime "^0.10.0" 601 | 602 | babel-preset-env@^1.5.2: 603 | version "1.5.2" 604 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.5.2.tgz#cd4ae90a6e94b709f97374b33e5f8b983556adef" 605 | dependencies: 606 | babel-plugin-check-es2015-constants "^6.22.0" 607 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 608 | babel-plugin-transform-async-to-generator "^6.22.0" 609 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 610 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 611 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 612 | babel-plugin-transform-es2015-classes "^6.23.0" 613 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 614 | babel-plugin-transform-es2015-destructuring "^6.23.0" 615 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 616 | babel-plugin-transform-es2015-for-of "^6.23.0" 617 | babel-plugin-transform-es2015-function-name "^6.22.0" 618 | babel-plugin-transform-es2015-literals "^6.22.0" 619 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 620 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 621 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 622 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 623 | babel-plugin-transform-es2015-object-super "^6.22.0" 624 | babel-plugin-transform-es2015-parameters "^6.23.0" 625 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 626 | babel-plugin-transform-es2015-spread "^6.22.0" 627 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 628 | babel-plugin-transform-es2015-template-literals "^6.22.0" 629 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 630 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 631 | babel-plugin-transform-exponentiation-operator "^6.22.0" 632 | babel-plugin-transform-regenerator "^6.22.0" 633 | browserslist "^2.1.2" 634 | invariant "^2.2.2" 635 | semver "^5.3.0" 636 | 637 | babel-preset-jest@^20.0.3: 638 | version "20.0.3" 639 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 640 | dependencies: 641 | babel-plugin-jest-hoist "^20.0.3" 642 | 643 | babel-register@^6.24.1: 644 | version "6.24.1" 645 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 646 | dependencies: 647 | babel-core "^6.24.1" 648 | babel-runtime "^6.22.0" 649 | core-js "^2.4.0" 650 | home-or-tmp "^2.0.0" 651 | lodash "^4.2.0" 652 | mkdirp "^0.5.1" 653 | source-map-support "^0.4.2" 654 | 655 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 656 | version "6.23.0" 657 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 658 | dependencies: 659 | core-js "^2.4.0" 660 | regenerator-runtime "^0.10.0" 661 | 662 | babel-template@^6.16.0, babel-template@^6.24.1: 663 | version "6.24.1" 664 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 665 | dependencies: 666 | babel-runtime "^6.22.0" 667 | babel-traverse "^6.24.1" 668 | babel-types "^6.24.1" 669 | babylon "^6.11.0" 670 | lodash "^4.2.0" 671 | 672 | babel-traverse@^6.18.0, babel-traverse@^6.24.1: 673 | version "6.24.1" 674 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 675 | dependencies: 676 | babel-code-frame "^6.22.0" 677 | babel-messages "^6.23.0" 678 | babel-runtime "^6.22.0" 679 | babel-types "^6.24.1" 680 | babylon "^6.15.0" 681 | debug "^2.2.0" 682 | globals "^9.0.0" 683 | invariant "^2.2.0" 684 | lodash "^4.2.0" 685 | 686 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1: 687 | version "6.24.1" 688 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 689 | dependencies: 690 | babel-runtime "^6.22.0" 691 | esutils "^2.0.2" 692 | lodash "^4.2.0" 693 | to-fast-properties "^1.0.1" 694 | 695 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 696 | version "6.17.1" 697 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f" 698 | 699 | balanced-match@^0.4.1: 700 | version "0.4.2" 701 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 702 | 703 | bcrypt-pbkdf@^1.0.0: 704 | version "1.0.1" 705 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 706 | dependencies: 707 | tweetnacl "^0.14.3" 708 | 709 | big.js@^3.1.3: 710 | version "3.1.3" 711 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 712 | 713 | binary-extensions@^1.0.0: 714 | version "1.8.0" 715 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 716 | 717 | block-stream@*: 718 | version "0.0.9" 719 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 720 | dependencies: 721 | inherits "~2.0.0" 722 | 723 | boom@2.x.x: 724 | version "2.10.1" 725 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 726 | dependencies: 727 | hoek "2.x.x" 728 | 729 | brace-expansion@^1.1.7: 730 | version "1.1.7" 731 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 732 | dependencies: 733 | balanced-match "^0.4.1" 734 | concat-map "0.0.1" 735 | 736 | braces@^1.8.2: 737 | version "1.8.5" 738 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 739 | dependencies: 740 | expand-range "^1.8.1" 741 | preserve "^0.2.0" 742 | repeat-element "^1.1.2" 743 | 744 | browser-resolve@^1.11.2: 745 | version "1.11.2" 746 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 747 | dependencies: 748 | resolve "1.1.7" 749 | 750 | browserslist@^2.1.2: 751 | version "2.1.4" 752 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.1.4.tgz#cc526af4a1312b7d2e05653e56d0c8ab70c0e053" 753 | dependencies: 754 | caniuse-lite "^1.0.30000670" 755 | electron-to-chromium "^1.3.11" 756 | 757 | bser@1.0.2: 758 | version "1.0.2" 759 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 760 | dependencies: 761 | node-int64 "^0.4.0" 762 | 763 | bser@^2.0.0: 764 | version "2.0.0" 765 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 766 | dependencies: 767 | node-int64 "^0.4.0" 768 | 769 | buffer-shims@~1.0.0: 770 | version "1.0.0" 771 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 772 | 773 | builtin-modules@^1.0.0: 774 | version "1.1.1" 775 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 776 | 777 | caller-path@^0.1.0: 778 | version "0.1.0" 779 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 780 | dependencies: 781 | callsites "^0.2.0" 782 | 783 | callsites@^0.2.0: 784 | version "0.2.0" 785 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 786 | 787 | callsites@^2.0.0: 788 | version "2.0.0" 789 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 790 | 791 | camelcase@^1.0.2: 792 | version "1.2.1" 793 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 794 | 795 | camelcase@^3.0.0: 796 | version "3.0.0" 797 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 798 | 799 | caniuse-lite@^1.0.30000670: 800 | version "1.0.30000670" 801 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000670.tgz#c94f7dbf0b68eaadc46d3d203f46e82e7801135e" 802 | 803 | caseless@~0.12.0: 804 | version "0.12.0" 805 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 806 | 807 | center-align@^0.1.1: 808 | version "0.1.3" 809 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 810 | dependencies: 811 | align-text "^0.1.3" 812 | lazy-cache "^1.0.3" 813 | 814 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 815 | version "1.1.3" 816 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 817 | dependencies: 818 | ansi-styles "^2.2.1" 819 | escape-string-regexp "^1.0.2" 820 | has-ansi "^2.0.0" 821 | strip-ansi "^3.0.0" 822 | supports-color "^2.0.0" 823 | 824 | chokidar@^1.6.1: 825 | version "1.7.0" 826 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 827 | dependencies: 828 | anymatch "^1.3.0" 829 | async-each "^1.0.0" 830 | glob-parent "^2.0.0" 831 | inherits "^2.0.1" 832 | is-binary-path "^1.0.0" 833 | is-glob "^2.0.0" 834 | path-is-absolute "^1.0.0" 835 | readdirp "^2.0.0" 836 | optionalDependencies: 837 | fsevents "^1.0.0" 838 | 839 | ci-info@^1.0.0: 840 | version "1.0.0" 841 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 842 | 843 | circular-json@^0.3.1: 844 | version "0.3.1" 845 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 846 | 847 | cli-cursor@^1.0.2: 848 | version "1.0.2" 849 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 850 | dependencies: 851 | restore-cursor "^1.0.1" 852 | 853 | cli-cursor@^2.1.0: 854 | version "2.1.0" 855 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 856 | dependencies: 857 | restore-cursor "^2.0.0" 858 | 859 | cli-spinners@^0.1.2: 860 | version "0.1.2" 861 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 862 | 863 | cli-truncate@^0.2.1: 864 | version "0.2.1" 865 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 866 | dependencies: 867 | slice-ansi "0.0.4" 868 | string-width "^1.0.1" 869 | 870 | cli-width@^2.0.0: 871 | version "2.1.0" 872 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 873 | 874 | cliui@^2.1.0: 875 | version "2.1.0" 876 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 877 | dependencies: 878 | center-align "^0.1.1" 879 | right-align "^0.1.1" 880 | wordwrap "0.0.2" 881 | 882 | cliui@^3.2.0: 883 | version "3.2.0" 884 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 885 | dependencies: 886 | string-width "^1.0.1" 887 | strip-ansi "^3.0.1" 888 | wrap-ansi "^2.0.0" 889 | 890 | co@^4.6.0: 891 | version "4.6.0" 892 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 893 | 894 | code-point-at@^1.0.0: 895 | version "1.1.0" 896 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 897 | 898 | color-convert@^1.0.0: 899 | version "1.9.0" 900 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 901 | dependencies: 902 | color-name "^1.1.1" 903 | 904 | color-name@^1.1.1: 905 | version "1.1.2" 906 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 907 | 908 | combined-stream@^1.0.5, combined-stream@~1.0.5: 909 | version "1.0.5" 910 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 911 | dependencies: 912 | delayed-stream "~1.0.0" 913 | 914 | commander@^2.8.1, commander@^2.9.0: 915 | version "2.9.0" 916 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 917 | dependencies: 918 | graceful-readlink ">= 1.0.0" 919 | 920 | concat-map@0.0.1: 921 | version "0.0.1" 922 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 923 | 924 | concat-stream@^1.6.0: 925 | version "1.6.0" 926 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 927 | dependencies: 928 | inherits "^2.0.3" 929 | readable-stream "^2.2.2" 930 | typedarray "^0.0.6" 931 | 932 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 933 | version "1.1.0" 934 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 935 | 936 | content-type-parser@^1.0.1: 937 | version "1.0.1" 938 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 939 | 940 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 941 | version "1.5.0" 942 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 943 | 944 | core-js@^2.4.0: 945 | version "2.4.1" 946 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 947 | 948 | core-util-is@~1.0.0: 949 | version "1.0.2" 950 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 951 | 952 | cosmiconfig@^1.1.0: 953 | version "1.1.0" 954 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-1.1.0.tgz#0dea0f9804efdfb929fbb1b188e25553ea053d37" 955 | dependencies: 956 | graceful-fs "^4.1.2" 957 | js-yaml "^3.4.3" 958 | minimist "^1.2.0" 959 | object-assign "^4.0.1" 960 | os-homedir "^1.0.1" 961 | parse-json "^2.2.0" 962 | pinkie-promise "^2.0.0" 963 | require-from-string "^1.1.0" 964 | 965 | cross-spawn@^5.0.1: 966 | version "5.1.0" 967 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 968 | dependencies: 969 | lru-cache "^4.0.1" 970 | shebang-command "^1.2.0" 971 | which "^1.2.9" 972 | 973 | cryptiles@2.x.x: 974 | version "2.0.5" 975 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 976 | dependencies: 977 | boom "2.x.x" 978 | 979 | css-selector-tokenizer@^0.7.0: 980 | version "0.7.0" 981 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" 982 | dependencies: 983 | cssesc "^0.1.0" 984 | fastparse "^1.1.1" 985 | regexpu-core "^1.0.0" 986 | 987 | cssesc@^0.1.0: 988 | version "0.1.0" 989 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" 990 | 991 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 992 | version "0.3.2" 993 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 994 | 995 | "cssstyle@>= 0.2.37 < 0.3.0": 996 | version "0.2.37" 997 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 998 | dependencies: 999 | cssom "0.3.x" 1000 | 1001 | dashdash@^1.12.0: 1002 | version "1.14.1" 1003 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1004 | dependencies: 1005 | assert-plus "^1.0.0" 1006 | 1007 | date-fns@^1.27.2: 1008 | version "1.28.5" 1009 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.28.5.tgz#257cfc45d322df45ef5658665967ee841cd73faf" 1010 | 1011 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 1012 | version "2.6.8" 1013 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1014 | dependencies: 1015 | ms "2.0.0" 1016 | 1017 | decamelize@^1.0.0, decamelize@^1.1.1: 1018 | version "1.2.0" 1019 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1020 | 1021 | deep-extend@~0.4.0: 1022 | version "0.4.2" 1023 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1024 | 1025 | deep-is@~0.1.3: 1026 | version "0.1.3" 1027 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1028 | 1029 | default-require-extensions@^1.0.0: 1030 | version "1.0.0" 1031 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1032 | dependencies: 1033 | strip-bom "^2.0.0" 1034 | 1035 | del@^2.0.2: 1036 | version "2.2.2" 1037 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1038 | dependencies: 1039 | globby "^5.0.0" 1040 | is-path-cwd "^1.0.0" 1041 | is-path-in-cwd "^1.0.0" 1042 | object-assign "^4.0.1" 1043 | pify "^2.0.0" 1044 | pinkie-promise "^2.0.0" 1045 | rimraf "^2.2.8" 1046 | 1047 | delayed-stream@~1.0.0: 1048 | version "1.0.0" 1049 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1050 | 1051 | delegates@^1.0.0: 1052 | version "1.0.0" 1053 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1054 | 1055 | detect-indent@^4.0.0: 1056 | version "4.0.0" 1057 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1058 | dependencies: 1059 | repeating "^2.0.0" 1060 | 1061 | diff@^3.2.0: 1062 | version "3.2.0" 1063 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1064 | 1065 | doctrine@^2.0.0: 1066 | version "2.0.0" 1067 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1068 | dependencies: 1069 | esutils "^2.0.2" 1070 | isarray "^1.0.0" 1071 | 1072 | ecc-jsbn@~0.1.1: 1073 | version "0.1.1" 1074 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1075 | dependencies: 1076 | jsbn "~0.1.0" 1077 | 1078 | electron-to-chromium@^1.3.11: 1079 | version "1.3.11" 1080 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.11.tgz#744761df1d67b492b322ce9aa0aba5393260eb61" 1081 | 1082 | elegant-spinner@^1.0.1: 1083 | version "1.0.1" 1084 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 1085 | 1086 | emojis-list@^2.0.0: 1087 | version "2.1.0" 1088 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1089 | 1090 | "errno@>=0.1.1 <0.2.0-0": 1091 | version "0.1.4" 1092 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1093 | dependencies: 1094 | prr "~0.0.0" 1095 | 1096 | error-ex@^1.2.0: 1097 | version "1.3.1" 1098 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1099 | dependencies: 1100 | is-arrayish "^0.2.1" 1101 | 1102 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1103 | version "1.0.5" 1104 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1105 | 1106 | escodegen@^1.6.1: 1107 | version "1.8.1" 1108 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1109 | dependencies: 1110 | esprima "^2.7.1" 1111 | estraverse "^1.9.1" 1112 | esutils "^2.0.2" 1113 | optionator "^0.8.1" 1114 | optionalDependencies: 1115 | source-map "~0.2.0" 1116 | 1117 | eslint-scope@^3.7.1: 1118 | version "3.7.1" 1119 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1120 | dependencies: 1121 | esrecurse "^4.1.0" 1122 | estraverse "^4.1.1" 1123 | 1124 | eslint@^4.0.0: 1125 | version "4.0.0" 1126 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.0.0.tgz#7277c01437fdf41dccd168d5aa0e49b75ca1f260" 1127 | dependencies: 1128 | babel-code-frame "^6.22.0" 1129 | chalk "^1.1.3" 1130 | concat-stream "^1.6.0" 1131 | debug "^2.6.8" 1132 | doctrine "^2.0.0" 1133 | eslint-scope "^3.7.1" 1134 | espree "^3.4.3" 1135 | esquery "^1.0.0" 1136 | estraverse "^4.2.0" 1137 | esutils "^2.0.2" 1138 | file-entry-cache "^2.0.0" 1139 | glob "^7.1.2" 1140 | globals "^9.17.0" 1141 | ignore "^3.3.3" 1142 | imurmurhash "^0.1.4" 1143 | inquirer "^3.0.6" 1144 | is-my-json-valid "^2.16.0" 1145 | is-resolvable "^1.0.0" 1146 | js-yaml "^3.8.4" 1147 | json-stable-stringify "^1.0.1" 1148 | levn "^0.3.0" 1149 | lodash "^4.17.4" 1150 | mkdirp "^0.5.1" 1151 | natural-compare "^1.4.0" 1152 | optionator "^0.8.2" 1153 | path-is-inside "^1.0.2" 1154 | pluralize "^4.0.0" 1155 | progress "^2.0.0" 1156 | require-uncached "^1.0.3" 1157 | strip-json-comments "~2.0.1" 1158 | table "^4.0.1" 1159 | text-table "~0.2.0" 1160 | 1161 | espree@^3.4.3: 1162 | version "3.4.3" 1163 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 1164 | dependencies: 1165 | acorn "^5.0.1" 1166 | acorn-jsx "^3.0.0" 1167 | 1168 | esprima@^2.7.1: 1169 | version "2.7.3" 1170 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1171 | 1172 | esprima@^3.1.1: 1173 | version "3.1.3" 1174 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1175 | 1176 | esquery@^1.0.0: 1177 | version "1.0.0" 1178 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1179 | dependencies: 1180 | estraverse "^4.0.0" 1181 | 1182 | esrecurse@^4.1.0: 1183 | version "4.1.0" 1184 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1185 | dependencies: 1186 | estraverse "~4.1.0" 1187 | object-assign "^4.0.1" 1188 | 1189 | estraverse@^1.9.1: 1190 | version "1.9.3" 1191 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1192 | 1193 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1194 | version "4.2.0" 1195 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1196 | 1197 | estraverse@~4.1.0: 1198 | version "4.1.1" 1199 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1200 | 1201 | esutils@^2.0.2: 1202 | version "2.0.2" 1203 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1204 | 1205 | exec-sh@^0.2.0: 1206 | version "0.2.0" 1207 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1208 | dependencies: 1209 | merge "^1.1.3" 1210 | 1211 | execa@^0.7.0: 1212 | version "0.7.0" 1213 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1214 | dependencies: 1215 | cross-spawn "^5.0.1" 1216 | get-stream "^3.0.0" 1217 | is-stream "^1.1.0" 1218 | npm-run-path "^2.0.0" 1219 | p-finally "^1.0.0" 1220 | signal-exit "^3.0.0" 1221 | strip-eof "^1.0.0" 1222 | 1223 | exit-hook@^1.0.0: 1224 | version "1.1.1" 1225 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1226 | 1227 | expand-brackets@^0.1.4: 1228 | version "0.1.5" 1229 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1230 | dependencies: 1231 | is-posix-bracket "^0.1.0" 1232 | 1233 | expand-range@^1.8.1: 1234 | version "1.8.2" 1235 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1236 | dependencies: 1237 | fill-range "^2.1.0" 1238 | 1239 | extend@~3.0.0: 1240 | version "3.0.1" 1241 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1242 | 1243 | external-editor@^2.0.4: 1244 | version "2.0.4" 1245 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 1246 | dependencies: 1247 | iconv-lite "^0.4.17" 1248 | jschardet "^1.4.2" 1249 | tmp "^0.0.31" 1250 | 1251 | extglob@^0.3.1: 1252 | version "0.3.2" 1253 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1254 | dependencies: 1255 | is-extglob "^1.0.0" 1256 | 1257 | extsprintf@1.0.2: 1258 | version "1.0.2" 1259 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1260 | 1261 | fast-levenshtein@~2.0.4: 1262 | version "2.0.6" 1263 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1264 | 1265 | fastparse@^1.1.1: 1266 | version "1.1.1" 1267 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" 1268 | 1269 | fb-watchman@^1.8.0: 1270 | version "1.9.2" 1271 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1272 | dependencies: 1273 | bser "1.0.2" 1274 | 1275 | fb-watchman@^2.0.0: 1276 | version "2.0.0" 1277 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1278 | dependencies: 1279 | bser "^2.0.0" 1280 | 1281 | figures@^1.7.0: 1282 | version "1.7.0" 1283 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1284 | dependencies: 1285 | escape-string-regexp "^1.0.5" 1286 | object-assign "^4.1.0" 1287 | 1288 | figures@^2.0.0: 1289 | version "2.0.0" 1290 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1291 | dependencies: 1292 | escape-string-regexp "^1.0.5" 1293 | 1294 | file-entry-cache@^2.0.0: 1295 | version "2.0.0" 1296 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1297 | dependencies: 1298 | flat-cache "^1.2.1" 1299 | object-assign "^4.0.1" 1300 | 1301 | filename-regex@^2.0.0: 1302 | version "2.0.1" 1303 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1304 | 1305 | fileset@^2.0.2: 1306 | version "2.0.3" 1307 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1308 | dependencies: 1309 | glob "^7.0.3" 1310 | minimatch "^3.0.3" 1311 | 1312 | fill-range@^2.1.0: 1313 | version "2.2.3" 1314 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1315 | dependencies: 1316 | is-number "^2.1.0" 1317 | isobject "^2.0.0" 1318 | randomatic "^1.1.3" 1319 | repeat-element "^1.1.2" 1320 | repeat-string "^1.5.2" 1321 | 1322 | find-parent-dir@^0.3.0: 1323 | version "0.3.0" 1324 | resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" 1325 | 1326 | find-up@^1.0.0: 1327 | version "1.1.2" 1328 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1329 | dependencies: 1330 | path-exists "^2.0.0" 1331 | pinkie-promise "^2.0.0" 1332 | 1333 | find-up@^2.1.0: 1334 | version "2.1.0" 1335 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1336 | dependencies: 1337 | locate-path "^2.0.0" 1338 | 1339 | flat-cache@^1.2.1: 1340 | version "1.2.2" 1341 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1342 | dependencies: 1343 | circular-json "^0.3.1" 1344 | del "^2.0.2" 1345 | graceful-fs "^4.1.2" 1346 | write "^0.2.1" 1347 | 1348 | for-in@^1.0.1: 1349 | version "1.0.2" 1350 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1351 | 1352 | for-own@^0.1.4: 1353 | version "0.1.5" 1354 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1355 | dependencies: 1356 | for-in "^1.0.1" 1357 | 1358 | forever-agent@~0.6.1: 1359 | version "0.6.1" 1360 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1361 | 1362 | form-data@~2.1.1: 1363 | version "2.1.4" 1364 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1365 | dependencies: 1366 | asynckit "^0.4.0" 1367 | combined-stream "^1.0.5" 1368 | mime-types "^2.1.12" 1369 | 1370 | fs-readdir-recursive@^1.0.0: 1371 | version "1.0.0" 1372 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1373 | 1374 | fs.realpath@^1.0.0: 1375 | version "1.0.0" 1376 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1377 | 1378 | fsevents@^1.0.0: 1379 | version "1.1.1" 1380 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1381 | dependencies: 1382 | nan "^2.3.0" 1383 | node-pre-gyp "^0.6.29" 1384 | 1385 | fstream-ignore@^1.0.5: 1386 | version "1.0.5" 1387 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1388 | dependencies: 1389 | fstream "^1.0.0" 1390 | inherits "2" 1391 | minimatch "^3.0.0" 1392 | 1393 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1394 | version "1.0.11" 1395 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1396 | dependencies: 1397 | graceful-fs "^4.1.2" 1398 | inherits "~2.0.0" 1399 | mkdirp ">=0.5 0" 1400 | rimraf "2" 1401 | 1402 | gauge@~2.7.3: 1403 | version "2.7.4" 1404 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1405 | dependencies: 1406 | aproba "^1.0.3" 1407 | console-control-strings "^1.0.0" 1408 | has-unicode "^2.0.0" 1409 | object-assign "^4.1.0" 1410 | signal-exit "^3.0.0" 1411 | string-width "^1.0.1" 1412 | strip-ansi "^3.0.1" 1413 | wide-align "^1.1.0" 1414 | 1415 | generate-function@^2.0.0: 1416 | version "2.0.0" 1417 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1418 | 1419 | generate-object-property@^1.1.0: 1420 | version "1.2.0" 1421 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1422 | dependencies: 1423 | is-property "^1.0.0" 1424 | 1425 | generic-names@^1.0.2: 1426 | version "1.0.2" 1427 | resolved "https://registry.yarnpkg.com/generic-names/-/generic-names-1.0.2.tgz#e25b7feceb5b5a8f28f5f972a7ccfe57e562adcd" 1428 | dependencies: 1429 | loader-utils "^0.2.16" 1430 | 1431 | get-caller-file@^1.0.1: 1432 | version "1.0.2" 1433 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1434 | 1435 | get-stream@^3.0.0: 1436 | version "3.0.0" 1437 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1438 | 1439 | getpass@^0.1.1: 1440 | version "0.1.7" 1441 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1442 | dependencies: 1443 | assert-plus "^1.0.0" 1444 | 1445 | glob-base@^0.3.0: 1446 | version "0.3.0" 1447 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1448 | dependencies: 1449 | glob-parent "^2.0.0" 1450 | is-glob "^2.0.0" 1451 | 1452 | glob-parent@^2.0.0: 1453 | version "2.0.0" 1454 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1455 | dependencies: 1456 | is-glob "^2.0.0" 1457 | 1458 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1459 | version "7.1.2" 1460 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1461 | dependencies: 1462 | fs.realpath "^1.0.0" 1463 | inflight "^1.0.4" 1464 | inherits "2" 1465 | minimatch "^3.0.4" 1466 | once "^1.3.0" 1467 | path-is-absolute "^1.0.0" 1468 | 1469 | globals@^9.0.0, globals@^9.17.0: 1470 | version "9.17.0" 1471 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1472 | 1473 | globby@^5.0.0: 1474 | version "5.0.0" 1475 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1476 | dependencies: 1477 | array-union "^1.0.1" 1478 | arrify "^1.0.0" 1479 | glob "^7.0.3" 1480 | object-assign "^4.0.1" 1481 | pify "^2.0.0" 1482 | pinkie-promise "^2.0.0" 1483 | 1484 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1485 | version "4.1.11" 1486 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1487 | 1488 | "graceful-readlink@>= 1.0.0": 1489 | version "1.0.1" 1490 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1491 | 1492 | growly@^1.3.0: 1493 | version "1.3.0" 1494 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1495 | 1496 | handlebars@^4.0.3: 1497 | version "4.0.10" 1498 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1499 | dependencies: 1500 | async "^1.4.0" 1501 | optimist "^0.6.1" 1502 | source-map "^0.4.4" 1503 | optionalDependencies: 1504 | uglify-js "^2.6" 1505 | 1506 | har-schema@^1.0.5: 1507 | version "1.0.5" 1508 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1509 | 1510 | har-validator@~4.2.1: 1511 | version "4.2.1" 1512 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1513 | dependencies: 1514 | ajv "^4.9.1" 1515 | har-schema "^1.0.5" 1516 | 1517 | has-ansi@^2.0.0: 1518 | version "2.0.0" 1519 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1520 | dependencies: 1521 | ansi-regex "^2.0.0" 1522 | 1523 | has-flag@^1.0.0: 1524 | version "1.0.0" 1525 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1526 | 1527 | has-unicode@^2.0.0: 1528 | version "2.0.1" 1529 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1530 | 1531 | hawk@~3.1.3: 1532 | version "3.1.3" 1533 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1534 | dependencies: 1535 | boom "2.x.x" 1536 | cryptiles "2.x.x" 1537 | hoek "2.x.x" 1538 | sntp "1.x.x" 1539 | 1540 | hoek@2.x.x: 1541 | version "2.16.3" 1542 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1543 | 1544 | home-or-tmp@^2.0.0: 1545 | version "2.0.0" 1546 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1547 | dependencies: 1548 | os-homedir "^1.0.0" 1549 | os-tmpdir "^1.0.1" 1550 | 1551 | hosted-git-info@^2.1.4: 1552 | version "2.4.2" 1553 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1554 | 1555 | html-encoding-sniffer@^1.0.1: 1556 | version "1.0.1" 1557 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1558 | dependencies: 1559 | whatwg-encoding "^1.0.1" 1560 | 1561 | http-signature@~1.1.0: 1562 | version "1.1.1" 1563 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1564 | dependencies: 1565 | assert-plus "^0.2.0" 1566 | jsprim "^1.2.2" 1567 | sshpk "^1.7.0" 1568 | 1569 | husky@^0.13.4: 1570 | version "0.13.4" 1571 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.13.4.tgz#48785c5028de3452a51c48c12c4f94b2124a1407" 1572 | dependencies: 1573 | chalk "^1.1.3" 1574 | find-parent-dir "^0.3.0" 1575 | is-ci "^1.0.9" 1576 | normalize-path "^1.0.0" 1577 | 1578 | iconv-lite@0.4.13: 1579 | version "0.4.13" 1580 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1581 | 1582 | iconv-lite@^0.4.17: 1583 | version "0.4.18" 1584 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" 1585 | 1586 | icss-utils@^3.0.1: 1587 | version "3.0.1" 1588 | resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-3.0.1.tgz#ee70d3ae8cac38c6be5ed91e851b27eed343ad0f" 1589 | dependencies: 1590 | postcss "^6.0.2" 1591 | 1592 | ignore@^3.3.3: 1593 | version "3.3.3" 1594 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 1595 | 1596 | imurmurhash@^0.1.4: 1597 | version "0.1.4" 1598 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1599 | 1600 | indent-string@^2.1.0: 1601 | version "2.1.0" 1602 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1603 | dependencies: 1604 | repeating "^2.0.0" 1605 | 1606 | indent-string@^3.0.0: 1607 | version "3.1.0" 1608 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.1.0.tgz#08ff4334603388399b329e6b9538dc7a3cf5de7d" 1609 | 1610 | inflight@^1.0.4: 1611 | version "1.0.6" 1612 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1613 | dependencies: 1614 | once "^1.3.0" 1615 | wrappy "1" 1616 | 1617 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1618 | version "2.0.3" 1619 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1620 | 1621 | ini@~1.3.0: 1622 | version "1.3.4" 1623 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1624 | 1625 | inquirer@^3.0.6: 1626 | version "3.1.0" 1627 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.1.0.tgz#e05400d48b94937c2d3caa7038663ba9189aab01" 1628 | dependencies: 1629 | ansi-escapes "^2.0.0" 1630 | chalk "^1.0.0" 1631 | cli-cursor "^2.1.0" 1632 | cli-width "^2.0.0" 1633 | external-editor "^2.0.4" 1634 | figures "^2.0.0" 1635 | lodash "^4.3.0" 1636 | mute-stream "0.0.7" 1637 | run-async "^2.2.0" 1638 | rx-lite "^4.0.8" 1639 | rx-lite-aggregates "^4.0.8" 1640 | string-width "^2.0.0" 1641 | strip-ansi "^3.0.0" 1642 | through "^2.3.6" 1643 | 1644 | invariant@^2.2.0, invariant@^2.2.2: 1645 | version "2.2.2" 1646 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1647 | dependencies: 1648 | loose-envify "^1.0.0" 1649 | 1650 | invert-kv@^1.0.0: 1651 | version "1.0.0" 1652 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1653 | 1654 | is-arrayish@^0.2.1: 1655 | version "0.2.1" 1656 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1657 | 1658 | is-binary-path@^1.0.0: 1659 | version "1.0.1" 1660 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1661 | dependencies: 1662 | binary-extensions "^1.0.0" 1663 | 1664 | is-buffer@^1.1.5: 1665 | version "1.1.5" 1666 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1667 | 1668 | is-builtin-module@^1.0.0: 1669 | version "1.0.0" 1670 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1671 | dependencies: 1672 | builtin-modules "^1.0.0" 1673 | 1674 | is-ci@^1.0.10, is-ci@^1.0.9: 1675 | version "1.0.10" 1676 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1677 | dependencies: 1678 | ci-info "^1.0.0" 1679 | 1680 | is-dotfile@^1.0.0: 1681 | version "1.0.2" 1682 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1683 | 1684 | is-equal-shallow@^0.1.3: 1685 | version "0.1.3" 1686 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1687 | dependencies: 1688 | is-primitive "^2.0.0" 1689 | 1690 | is-extendable@^0.1.1: 1691 | version "0.1.1" 1692 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1693 | 1694 | is-extglob@^1.0.0: 1695 | version "1.0.0" 1696 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1697 | 1698 | is-finite@^1.0.0: 1699 | version "1.0.2" 1700 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1701 | dependencies: 1702 | number-is-nan "^1.0.0" 1703 | 1704 | is-fullwidth-code-point@^1.0.0: 1705 | version "1.0.0" 1706 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1707 | dependencies: 1708 | number-is-nan "^1.0.0" 1709 | 1710 | is-fullwidth-code-point@^2.0.0: 1711 | version "2.0.0" 1712 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1713 | 1714 | is-glob@^2.0.0, is-glob@^2.0.1: 1715 | version "2.0.1" 1716 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1717 | dependencies: 1718 | is-extglob "^1.0.0" 1719 | 1720 | is-my-json-valid@^2.16.0: 1721 | version "2.16.0" 1722 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1723 | dependencies: 1724 | generate-function "^2.0.0" 1725 | generate-object-property "^1.1.0" 1726 | jsonpointer "^4.0.0" 1727 | xtend "^4.0.0" 1728 | 1729 | is-number@^2.0.2, is-number@^2.1.0: 1730 | version "2.1.0" 1731 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1732 | dependencies: 1733 | kind-of "^3.0.2" 1734 | 1735 | is-path-cwd@^1.0.0: 1736 | version "1.0.0" 1737 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1738 | 1739 | is-path-in-cwd@^1.0.0: 1740 | version "1.0.0" 1741 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1742 | dependencies: 1743 | is-path-inside "^1.0.0" 1744 | 1745 | is-path-inside@^1.0.0: 1746 | version "1.0.0" 1747 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1748 | dependencies: 1749 | path-is-inside "^1.0.1" 1750 | 1751 | is-posix-bracket@^0.1.0: 1752 | version "0.1.1" 1753 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1754 | 1755 | is-primitive@^2.0.0: 1756 | version "2.0.0" 1757 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1758 | 1759 | is-promise@^2.1.0: 1760 | version "2.1.0" 1761 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1762 | 1763 | is-property@^1.0.0: 1764 | version "1.0.2" 1765 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1766 | 1767 | is-resolvable@^1.0.0: 1768 | version "1.0.0" 1769 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1770 | dependencies: 1771 | tryit "^1.0.1" 1772 | 1773 | is-stream@^1.1.0: 1774 | version "1.1.0" 1775 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1776 | 1777 | is-typedarray@~1.0.0: 1778 | version "1.0.0" 1779 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1780 | 1781 | is-utf8@^0.2.0: 1782 | version "0.2.1" 1783 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1784 | 1785 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1786 | version "1.0.0" 1787 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1788 | 1789 | isexe@^2.0.0: 1790 | version "2.0.0" 1791 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1792 | 1793 | isobject@^2.0.0: 1794 | version "2.1.0" 1795 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1796 | dependencies: 1797 | isarray "1.0.0" 1798 | 1799 | isstream@~0.1.2: 1800 | version "0.1.2" 1801 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1802 | 1803 | istanbul-api@^1.1.1: 1804 | version "1.1.8" 1805 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.8.tgz#a844e55c6f9aeee292e7f42942196f60b23dc93e" 1806 | dependencies: 1807 | async "^2.1.4" 1808 | fileset "^2.0.2" 1809 | istanbul-lib-coverage "^1.1.0" 1810 | istanbul-lib-hook "^1.0.6" 1811 | istanbul-lib-instrument "^1.7.1" 1812 | istanbul-lib-report "^1.1.0" 1813 | istanbul-lib-source-maps "^1.2.0" 1814 | istanbul-reports "^1.1.0" 1815 | js-yaml "^3.7.0" 1816 | mkdirp "^0.5.1" 1817 | once "^1.4.0" 1818 | 1819 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.0: 1820 | version "1.1.0" 1821 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.0.tgz#caca19decaef3525b5d6331d701f3f3b7ad48528" 1822 | 1823 | istanbul-lib-hook@^1.0.6: 1824 | version "1.0.6" 1825 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.6.tgz#c0866d1e81cf2d5319249510131fc16dee49231f" 1826 | dependencies: 1827 | append-transform "^0.4.0" 1828 | 1829 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.1: 1830 | version "1.7.1" 1831 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.1.tgz#169e31bc62c778851a99439dd99c3cc12184d360" 1832 | dependencies: 1833 | babel-generator "^6.18.0" 1834 | babel-template "^6.16.0" 1835 | babel-traverse "^6.18.0" 1836 | babel-types "^6.18.0" 1837 | babylon "^6.13.0" 1838 | istanbul-lib-coverage "^1.1.0" 1839 | semver "^5.3.0" 1840 | 1841 | istanbul-lib-report@^1.1.0: 1842 | version "1.1.0" 1843 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.0.tgz#444c4ecca9afa93cf584f56b10f195bf768c0770" 1844 | dependencies: 1845 | istanbul-lib-coverage "^1.1.0" 1846 | mkdirp "^0.5.1" 1847 | path-parse "^1.0.5" 1848 | supports-color "^3.1.2" 1849 | 1850 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.0: 1851 | version "1.2.0" 1852 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.0.tgz#8c7706d497e26feeb6af3e0c28fd5b0669598d0e" 1853 | dependencies: 1854 | debug "^2.6.3" 1855 | istanbul-lib-coverage "^1.1.0" 1856 | mkdirp "^0.5.1" 1857 | rimraf "^2.6.1" 1858 | source-map "^0.5.3" 1859 | 1860 | istanbul-reports@^1.1.0: 1861 | version "1.1.0" 1862 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.0.tgz#1ef3b795889219cfb5fad16365f6ce108d5f8c66" 1863 | dependencies: 1864 | handlebars "^4.0.3" 1865 | 1866 | jest-changed-files@^20.0.3: 1867 | version "20.0.3" 1868 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 1869 | 1870 | jest-cli@^20.0.4: 1871 | version "20.0.4" 1872 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 1873 | dependencies: 1874 | ansi-escapes "^1.4.0" 1875 | callsites "^2.0.0" 1876 | chalk "^1.1.3" 1877 | graceful-fs "^4.1.11" 1878 | is-ci "^1.0.10" 1879 | istanbul-api "^1.1.1" 1880 | istanbul-lib-coverage "^1.0.1" 1881 | istanbul-lib-instrument "^1.4.2" 1882 | istanbul-lib-source-maps "^1.1.0" 1883 | jest-changed-files "^20.0.3" 1884 | jest-config "^20.0.4" 1885 | jest-docblock "^20.0.3" 1886 | jest-environment-jsdom "^20.0.3" 1887 | jest-haste-map "^20.0.4" 1888 | jest-jasmine2 "^20.0.4" 1889 | jest-message-util "^20.0.3" 1890 | jest-regex-util "^20.0.3" 1891 | jest-resolve-dependencies "^20.0.3" 1892 | jest-runtime "^20.0.4" 1893 | jest-snapshot "^20.0.3" 1894 | jest-util "^20.0.3" 1895 | micromatch "^2.3.11" 1896 | node-notifier "^5.0.2" 1897 | pify "^2.3.0" 1898 | slash "^1.0.0" 1899 | string-length "^1.0.1" 1900 | throat "^3.0.0" 1901 | which "^1.2.12" 1902 | worker-farm "^1.3.1" 1903 | yargs "^7.0.2" 1904 | 1905 | jest-config@^20.0.4: 1906 | version "20.0.4" 1907 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 1908 | dependencies: 1909 | chalk "^1.1.3" 1910 | glob "^7.1.1" 1911 | jest-environment-jsdom "^20.0.3" 1912 | jest-environment-node "^20.0.3" 1913 | jest-jasmine2 "^20.0.4" 1914 | jest-matcher-utils "^20.0.3" 1915 | jest-regex-util "^20.0.3" 1916 | jest-resolve "^20.0.4" 1917 | jest-validate "^20.0.3" 1918 | pretty-format "^20.0.3" 1919 | 1920 | jest-diff@^20.0.3: 1921 | version "20.0.3" 1922 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 1923 | dependencies: 1924 | chalk "^1.1.3" 1925 | diff "^3.2.0" 1926 | jest-matcher-utils "^20.0.3" 1927 | pretty-format "^20.0.3" 1928 | 1929 | jest-docblock@^20.0.3: 1930 | version "20.0.3" 1931 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 1932 | 1933 | jest-environment-jsdom@^20.0.3: 1934 | version "20.0.3" 1935 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 1936 | dependencies: 1937 | jest-mock "^20.0.3" 1938 | jest-util "^20.0.3" 1939 | jsdom "^9.12.0" 1940 | 1941 | jest-environment-node@^20.0.3: 1942 | version "20.0.3" 1943 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 1944 | dependencies: 1945 | jest-mock "^20.0.3" 1946 | jest-util "^20.0.3" 1947 | 1948 | jest-haste-map@^20.0.4: 1949 | version "20.0.4" 1950 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.4.tgz#653eb55c889ce3c021f7b94693f20a4159badf03" 1951 | dependencies: 1952 | fb-watchman "^2.0.0" 1953 | graceful-fs "^4.1.11" 1954 | jest-docblock "^20.0.3" 1955 | micromatch "^2.3.11" 1956 | sane "~1.6.0" 1957 | worker-farm "^1.3.1" 1958 | 1959 | jest-jasmine2@^20.0.4: 1960 | version "20.0.4" 1961 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 1962 | dependencies: 1963 | chalk "^1.1.3" 1964 | graceful-fs "^4.1.11" 1965 | jest-diff "^20.0.3" 1966 | jest-matcher-utils "^20.0.3" 1967 | jest-matchers "^20.0.3" 1968 | jest-message-util "^20.0.3" 1969 | jest-snapshot "^20.0.3" 1970 | once "^1.4.0" 1971 | p-map "^1.1.1" 1972 | 1973 | jest-matcher-utils@^20.0.3: 1974 | version "20.0.3" 1975 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 1976 | dependencies: 1977 | chalk "^1.1.3" 1978 | pretty-format "^20.0.3" 1979 | 1980 | jest-matchers@^20.0.3: 1981 | version "20.0.3" 1982 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 1983 | dependencies: 1984 | jest-diff "^20.0.3" 1985 | jest-matcher-utils "^20.0.3" 1986 | jest-message-util "^20.0.3" 1987 | jest-regex-util "^20.0.3" 1988 | 1989 | jest-message-util@^20.0.3: 1990 | version "20.0.3" 1991 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 1992 | dependencies: 1993 | chalk "^1.1.3" 1994 | micromatch "^2.3.11" 1995 | slash "^1.0.0" 1996 | 1997 | jest-mock@^20.0.3: 1998 | version "20.0.3" 1999 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 2000 | 2001 | jest-regex-util@^20.0.3: 2002 | version "20.0.3" 2003 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 2004 | 2005 | jest-resolve-dependencies@^20.0.3: 2006 | version "20.0.3" 2007 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 2008 | dependencies: 2009 | jest-regex-util "^20.0.3" 2010 | 2011 | jest-resolve@^20.0.4: 2012 | version "20.0.4" 2013 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 2014 | dependencies: 2015 | browser-resolve "^1.11.2" 2016 | is-builtin-module "^1.0.0" 2017 | resolve "^1.3.2" 2018 | 2019 | jest-runtime@^20.0.4: 2020 | version "20.0.4" 2021 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 2022 | dependencies: 2023 | babel-core "^6.0.0" 2024 | babel-jest "^20.0.3" 2025 | babel-plugin-istanbul "^4.0.0" 2026 | chalk "^1.1.3" 2027 | convert-source-map "^1.4.0" 2028 | graceful-fs "^4.1.11" 2029 | jest-config "^20.0.4" 2030 | jest-haste-map "^20.0.4" 2031 | jest-regex-util "^20.0.3" 2032 | jest-resolve "^20.0.4" 2033 | jest-util "^20.0.3" 2034 | json-stable-stringify "^1.0.1" 2035 | micromatch "^2.3.11" 2036 | strip-bom "3.0.0" 2037 | yargs "^7.0.2" 2038 | 2039 | jest-snapshot@^20.0.3: 2040 | version "20.0.3" 2041 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 2042 | dependencies: 2043 | chalk "^1.1.3" 2044 | jest-diff "^20.0.3" 2045 | jest-matcher-utils "^20.0.3" 2046 | jest-util "^20.0.3" 2047 | natural-compare "^1.4.0" 2048 | pretty-format "^20.0.3" 2049 | 2050 | jest-util@^20.0.3: 2051 | version "20.0.3" 2052 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 2053 | dependencies: 2054 | chalk "^1.1.3" 2055 | graceful-fs "^4.1.11" 2056 | jest-message-util "^20.0.3" 2057 | jest-mock "^20.0.3" 2058 | jest-validate "^20.0.3" 2059 | leven "^2.1.0" 2060 | mkdirp "^0.5.1" 2061 | 2062 | jest-validate@^20.0.3: 2063 | version "20.0.3" 2064 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 2065 | dependencies: 2066 | chalk "^1.1.3" 2067 | jest-matcher-utils "^20.0.3" 2068 | leven "^2.1.0" 2069 | pretty-format "^20.0.3" 2070 | 2071 | jest@^20.0.4: 2072 | version "20.0.4" 2073 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 2074 | dependencies: 2075 | jest-cli "^20.0.4" 2076 | 2077 | jodid25519@^1.0.0: 2078 | version "1.0.2" 2079 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2080 | dependencies: 2081 | jsbn "~0.1.0" 2082 | 2083 | js-tokens@^3.0.0: 2084 | version "3.0.1" 2085 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2086 | 2087 | js-yaml@^3.4.3, js-yaml@^3.7.0, js-yaml@^3.8.4: 2088 | version "3.8.4" 2089 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 2090 | dependencies: 2091 | argparse "^1.0.7" 2092 | esprima "^3.1.1" 2093 | 2094 | jsbn@~0.1.0: 2095 | version "0.1.1" 2096 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2097 | 2098 | jschardet@^1.4.2: 2099 | version "1.4.2" 2100 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.4.2.tgz#2aa107f142af4121d145659d44f50830961e699a" 2101 | 2102 | jsdom@^9.12.0: 2103 | version "9.12.0" 2104 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2105 | dependencies: 2106 | abab "^1.0.3" 2107 | acorn "^4.0.4" 2108 | acorn-globals "^3.1.0" 2109 | array-equal "^1.0.0" 2110 | content-type-parser "^1.0.1" 2111 | cssom ">= 0.3.2 < 0.4.0" 2112 | cssstyle ">= 0.2.37 < 0.3.0" 2113 | escodegen "^1.6.1" 2114 | html-encoding-sniffer "^1.0.1" 2115 | nwmatcher ">= 1.3.9 < 2.0.0" 2116 | parse5 "^1.5.1" 2117 | request "^2.79.0" 2118 | sax "^1.2.1" 2119 | symbol-tree "^3.2.1" 2120 | tough-cookie "^2.3.2" 2121 | webidl-conversions "^4.0.0" 2122 | whatwg-encoding "^1.0.1" 2123 | whatwg-url "^4.3.0" 2124 | xml-name-validator "^2.0.1" 2125 | 2126 | jsesc@^1.3.0: 2127 | version "1.3.0" 2128 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2129 | 2130 | jsesc@~0.5.0: 2131 | version "0.5.0" 2132 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2133 | 2134 | json-schema@0.2.3: 2135 | version "0.2.3" 2136 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2137 | 2138 | json-stable-stringify@^1.0.1: 2139 | version "1.0.1" 2140 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2141 | dependencies: 2142 | jsonify "~0.0.0" 2143 | 2144 | json-stringify-safe@~5.0.1: 2145 | version "5.0.1" 2146 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2147 | 2148 | json5@^0.5.0: 2149 | version "0.5.1" 2150 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2151 | 2152 | jsonify@~0.0.0: 2153 | version "0.0.0" 2154 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2155 | 2156 | jsonpointer@^4.0.0: 2157 | version "4.0.1" 2158 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2159 | 2160 | jsprim@^1.2.2: 2161 | version "1.4.0" 2162 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2163 | dependencies: 2164 | assert-plus "1.0.0" 2165 | extsprintf "1.0.2" 2166 | json-schema "0.2.3" 2167 | verror "1.3.6" 2168 | 2169 | kind-of@^3.0.2: 2170 | version "3.2.2" 2171 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2172 | dependencies: 2173 | is-buffer "^1.1.5" 2174 | 2175 | lazy-cache@^1.0.3: 2176 | version "1.0.4" 2177 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2178 | 2179 | lcid@^1.0.0: 2180 | version "1.0.0" 2181 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2182 | dependencies: 2183 | invert-kv "^1.0.0" 2184 | 2185 | leven@^2.1.0: 2186 | version "2.1.0" 2187 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2188 | 2189 | levn@^0.3.0, levn@~0.3.0: 2190 | version "0.3.0" 2191 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2192 | dependencies: 2193 | prelude-ls "~1.1.2" 2194 | type-check "~0.3.2" 2195 | 2196 | lint-staged@^3.6.1: 2197 | version "3.6.1" 2198 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-3.6.1.tgz#24423c8b7bd99d96e15acd1ac8cb392a78e58582" 2199 | dependencies: 2200 | app-root-path "^2.0.0" 2201 | cosmiconfig "^1.1.0" 2202 | execa "^0.7.0" 2203 | listr "^0.12.0" 2204 | lodash.chunk "^4.2.0" 2205 | minimatch "^3.0.0" 2206 | npm-which "^3.0.1" 2207 | p-map "^1.1.1" 2208 | staged-git-files "0.0.4" 2209 | 2210 | listr-silent-renderer@^1.1.1: 2211 | version "1.1.1" 2212 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 2213 | 2214 | listr-update-renderer@^0.2.0: 2215 | version "0.2.0" 2216 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.2.0.tgz#ca80e1779b4e70266807e8eed1ad6abe398550f9" 2217 | dependencies: 2218 | chalk "^1.1.3" 2219 | cli-truncate "^0.2.1" 2220 | elegant-spinner "^1.0.1" 2221 | figures "^1.7.0" 2222 | indent-string "^3.0.0" 2223 | log-symbols "^1.0.2" 2224 | log-update "^1.0.2" 2225 | strip-ansi "^3.0.1" 2226 | 2227 | listr-verbose-renderer@^0.4.0: 2228 | version "0.4.0" 2229 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.0.tgz#44dc01bb0c34a03c572154d4d08cde9b1dc5620f" 2230 | dependencies: 2231 | chalk "^1.1.3" 2232 | cli-cursor "^1.0.2" 2233 | date-fns "^1.27.2" 2234 | figures "^1.7.0" 2235 | 2236 | listr@^0.12.0: 2237 | version "0.12.0" 2238 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.12.0.tgz#6bce2c0f5603fa49580ea17cd6a00cc0e5fa451a" 2239 | dependencies: 2240 | chalk "^1.1.3" 2241 | cli-truncate "^0.2.1" 2242 | figures "^1.7.0" 2243 | indent-string "^2.1.0" 2244 | is-promise "^2.1.0" 2245 | is-stream "^1.1.0" 2246 | listr-silent-renderer "^1.1.1" 2247 | listr-update-renderer "^0.2.0" 2248 | listr-verbose-renderer "^0.4.0" 2249 | log-symbols "^1.0.2" 2250 | log-update "^1.0.2" 2251 | ora "^0.2.3" 2252 | p-map "^1.1.1" 2253 | rxjs "^5.0.0-beta.11" 2254 | stream-to-observable "^0.1.0" 2255 | strip-ansi "^3.0.1" 2256 | 2257 | load-json-file@^1.0.0: 2258 | version "1.1.0" 2259 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2260 | dependencies: 2261 | graceful-fs "^4.1.2" 2262 | parse-json "^2.2.0" 2263 | pify "^2.0.0" 2264 | pinkie-promise "^2.0.0" 2265 | strip-bom "^2.0.0" 2266 | 2267 | loader-utils@^0.2.16: 2268 | version "0.2.17" 2269 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" 2270 | dependencies: 2271 | big.js "^3.1.3" 2272 | emojis-list "^2.0.0" 2273 | json5 "^0.5.0" 2274 | object-assign "^4.0.1" 2275 | 2276 | locate-path@^2.0.0: 2277 | version "2.0.0" 2278 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2279 | dependencies: 2280 | p-locate "^2.0.0" 2281 | path-exists "^3.0.0" 2282 | 2283 | lodash.chunk@^4.2.0: 2284 | version "4.2.0" 2285 | resolved "https://registry.yarnpkg.com/lodash.chunk/-/lodash.chunk-4.2.0.tgz#66e5ce1f76ed27b4303d8c6512e8d1216e8106bc" 2286 | 2287 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 2288 | version "4.17.4" 2289 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2290 | 2291 | log-symbols@^1.0.2: 2292 | version "1.0.2" 2293 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2294 | dependencies: 2295 | chalk "^1.0.0" 2296 | 2297 | log-update@^1.0.2: 2298 | version "1.0.2" 2299 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 2300 | dependencies: 2301 | ansi-escapes "^1.0.0" 2302 | cli-cursor "^1.0.2" 2303 | 2304 | longest@^1.0.1: 2305 | version "1.0.1" 2306 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2307 | 2308 | loose-envify@^1.0.0: 2309 | version "1.3.1" 2310 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2311 | dependencies: 2312 | js-tokens "^3.0.0" 2313 | 2314 | lru-cache@^4.0.1: 2315 | version "4.0.2" 2316 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2317 | dependencies: 2318 | pseudomap "^1.0.1" 2319 | yallist "^2.0.0" 2320 | 2321 | makeerror@1.0.x: 2322 | version "1.0.11" 2323 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2324 | dependencies: 2325 | tmpl "1.0.x" 2326 | 2327 | merge@^1.1.3: 2328 | version "1.2.0" 2329 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2330 | 2331 | micromatch@^2.1.5, micromatch@^2.3.11: 2332 | version "2.3.11" 2333 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2334 | dependencies: 2335 | arr-diff "^2.0.0" 2336 | array-unique "^0.2.1" 2337 | braces "^1.8.2" 2338 | expand-brackets "^0.1.4" 2339 | extglob "^0.3.1" 2340 | filename-regex "^2.0.0" 2341 | is-extglob "^1.0.0" 2342 | is-glob "^2.0.1" 2343 | kind-of "^3.0.2" 2344 | normalize-path "^2.0.1" 2345 | object.omit "^2.0.0" 2346 | parse-glob "^3.0.4" 2347 | regex-cache "^0.4.2" 2348 | 2349 | mime-db@~1.27.0: 2350 | version "1.27.0" 2351 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2352 | 2353 | mime-types@^2.1.12, mime-types@~2.1.7: 2354 | version "2.1.15" 2355 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2356 | dependencies: 2357 | mime-db "~1.27.0" 2358 | 2359 | mimic-fn@^1.0.0: 2360 | version "1.1.0" 2361 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2362 | 2363 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2364 | version "3.0.4" 2365 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2366 | dependencies: 2367 | brace-expansion "^1.1.7" 2368 | 2369 | minimist@0.0.8, minimist@~0.0.1: 2370 | version "0.0.8" 2371 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2372 | 2373 | minimist@^1.1.1, minimist@^1.2.0: 2374 | version "1.2.0" 2375 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2376 | 2377 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2378 | version "0.5.1" 2379 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2380 | dependencies: 2381 | minimist "0.0.8" 2382 | 2383 | ms@2.0.0: 2384 | version "2.0.0" 2385 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2386 | 2387 | mute-stream@0.0.7: 2388 | version "0.0.7" 2389 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2390 | 2391 | nan@^2.3.0: 2392 | version "2.6.2" 2393 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2394 | 2395 | natural-compare@^1.4.0: 2396 | version "1.4.0" 2397 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2398 | 2399 | node-int64@^0.4.0: 2400 | version "0.4.0" 2401 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2402 | 2403 | node-notifier@^5.0.2: 2404 | version "5.1.2" 2405 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2406 | dependencies: 2407 | growly "^1.3.0" 2408 | semver "^5.3.0" 2409 | shellwords "^0.1.0" 2410 | which "^1.2.12" 2411 | 2412 | node-pre-gyp@^0.6.29: 2413 | version "0.6.34" 2414 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2415 | dependencies: 2416 | mkdirp "^0.5.1" 2417 | nopt "^4.0.1" 2418 | npmlog "^4.0.2" 2419 | rc "^1.1.7" 2420 | request "^2.81.0" 2421 | rimraf "^2.6.1" 2422 | semver "^5.3.0" 2423 | tar "^2.2.1" 2424 | tar-pack "^3.4.0" 2425 | 2426 | nopt@^4.0.1: 2427 | version "4.0.1" 2428 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2429 | dependencies: 2430 | abbrev "1" 2431 | osenv "^0.1.4" 2432 | 2433 | normalize-package-data@^2.3.2: 2434 | version "2.3.8" 2435 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2436 | dependencies: 2437 | hosted-git-info "^2.1.4" 2438 | is-builtin-module "^1.0.0" 2439 | semver "2 || 3 || 4 || 5" 2440 | validate-npm-package-license "^3.0.1" 2441 | 2442 | normalize-path@^1.0.0: 2443 | version "1.0.0" 2444 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" 2445 | 2446 | normalize-path@^2.0.1: 2447 | version "2.1.1" 2448 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2449 | dependencies: 2450 | remove-trailing-separator "^1.0.1" 2451 | 2452 | npm-path@^2.0.2: 2453 | version "2.0.3" 2454 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.3.tgz#15cff4e1c89a38da77f56f6055b24f975dfb2bbe" 2455 | dependencies: 2456 | which "^1.2.10" 2457 | 2458 | npm-run-path@^2.0.0: 2459 | version "2.0.2" 2460 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2461 | dependencies: 2462 | path-key "^2.0.0" 2463 | 2464 | npm-which@^3.0.1: 2465 | version "3.0.1" 2466 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" 2467 | dependencies: 2468 | commander "^2.9.0" 2469 | npm-path "^2.0.2" 2470 | which "^1.2.10" 2471 | 2472 | npmlog@^4.0.2: 2473 | version "4.1.0" 2474 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 2475 | dependencies: 2476 | are-we-there-yet "~1.1.2" 2477 | console-control-strings "~1.1.0" 2478 | gauge "~2.7.3" 2479 | set-blocking "~2.0.0" 2480 | 2481 | number-is-nan@^1.0.0: 2482 | version "1.0.1" 2483 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2484 | 2485 | "nwmatcher@>= 1.3.9 < 2.0.0": 2486 | version "1.4.0" 2487 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.0.tgz#b4389362170e7ef9798c3c7716d80ebc0106fccf" 2488 | 2489 | oauth-sign@~0.8.1: 2490 | version "0.8.2" 2491 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2492 | 2493 | object-assign@^4.0.1, object-assign@^4.1.0: 2494 | version "4.1.1" 2495 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2496 | 2497 | object.omit@^2.0.0: 2498 | version "2.0.1" 2499 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2500 | dependencies: 2501 | for-own "^0.1.4" 2502 | is-extendable "^0.1.1" 2503 | 2504 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2505 | version "1.4.0" 2506 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2507 | dependencies: 2508 | wrappy "1" 2509 | 2510 | onetime@^1.0.0: 2511 | version "1.1.0" 2512 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2513 | 2514 | onetime@^2.0.0: 2515 | version "2.0.1" 2516 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2517 | dependencies: 2518 | mimic-fn "^1.0.0" 2519 | 2520 | optimist@^0.6.1: 2521 | version "0.6.1" 2522 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2523 | dependencies: 2524 | minimist "~0.0.1" 2525 | wordwrap "~0.0.2" 2526 | 2527 | optionator@^0.8.1, optionator@^0.8.2: 2528 | version "0.8.2" 2529 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2530 | dependencies: 2531 | deep-is "~0.1.3" 2532 | fast-levenshtein "~2.0.4" 2533 | levn "~0.3.0" 2534 | prelude-ls "~1.1.2" 2535 | type-check "~0.3.2" 2536 | wordwrap "~1.0.0" 2537 | 2538 | ora@^0.2.3: 2539 | version "0.2.3" 2540 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 2541 | dependencies: 2542 | chalk "^1.1.1" 2543 | cli-cursor "^1.0.2" 2544 | cli-spinners "^0.1.2" 2545 | object-assign "^4.0.1" 2546 | 2547 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2548 | version "1.0.2" 2549 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2550 | 2551 | os-locale@^1.4.0: 2552 | version "1.4.0" 2553 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2554 | dependencies: 2555 | lcid "^1.0.0" 2556 | 2557 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 2558 | version "1.0.2" 2559 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2560 | 2561 | osenv@^0.1.4: 2562 | version "0.1.4" 2563 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2564 | dependencies: 2565 | os-homedir "^1.0.0" 2566 | os-tmpdir "^1.0.0" 2567 | 2568 | output-file-sync@^1.1.0: 2569 | version "1.1.2" 2570 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2571 | dependencies: 2572 | graceful-fs "^4.1.4" 2573 | mkdirp "^0.5.1" 2574 | object-assign "^4.1.0" 2575 | 2576 | p-finally@^1.0.0: 2577 | version "1.0.0" 2578 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2579 | 2580 | p-limit@^1.1.0: 2581 | version "1.1.0" 2582 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2583 | 2584 | p-locate@^2.0.0: 2585 | version "2.0.0" 2586 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2587 | dependencies: 2588 | p-limit "^1.1.0" 2589 | 2590 | p-map@^1.1.1: 2591 | version "1.1.1" 2592 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 2593 | 2594 | parse-glob@^3.0.4: 2595 | version "3.0.4" 2596 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2597 | dependencies: 2598 | glob-base "^0.3.0" 2599 | is-dotfile "^1.0.0" 2600 | is-extglob "^1.0.0" 2601 | is-glob "^2.0.0" 2602 | 2603 | parse-json@^2.2.0: 2604 | version "2.2.0" 2605 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2606 | dependencies: 2607 | error-ex "^1.2.0" 2608 | 2609 | parse5@^1.5.1: 2610 | version "1.5.1" 2611 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2612 | 2613 | path-exists@^2.0.0: 2614 | version "2.1.0" 2615 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2616 | dependencies: 2617 | pinkie-promise "^2.0.0" 2618 | 2619 | path-exists@^3.0.0: 2620 | version "3.0.0" 2621 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2622 | 2623 | path-is-absolute@^1.0.0: 2624 | version "1.0.1" 2625 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2626 | 2627 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2628 | version "1.0.2" 2629 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2630 | 2631 | path-key@^2.0.0: 2632 | version "2.0.1" 2633 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2634 | 2635 | path-parse@^1.0.5: 2636 | version "1.0.5" 2637 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2638 | 2639 | path-type@^1.0.0: 2640 | version "1.1.0" 2641 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2642 | dependencies: 2643 | graceful-fs "^4.1.2" 2644 | pify "^2.0.0" 2645 | pinkie-promise "^2.0.0" 2646 | 2647 | performance-now@^0.2.0: 2648 | version "0.2.0" 2649 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2650 | 2651 | pify@^2.0.0, pify@^2.3.0: 2652 | version "2.3.0" 2653 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2654 | 2655 | pinkie-promise@^2.0.0: 2656 | version "2.0.1" 2657 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2658 | dependencies: 2659 | pinkie "^2.0.0" 2660 | 2661 | pinkie@^2.0.0: 2662 | version "2.0.4" 2663 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2664 | 2665 | pluralize@^4.0.0: 2666 | version "4.0.0" 2667 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762" 2668 | 2669 | postcss@^6.0.2: 2670 | version "6.0.2" 2671 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.2.tgz#5c4fea589f0ac3b00caa75b1cbc3a284195b7e5d" 2672 | dependencies: 2673 | chalk "^1.1.3" 2674 | source-map "^0.5.6" 2675 | supports-color "^3.2.3" 2676 | 2677 | prelude-ls@~1.1.2: 2678 | version "1.1.2" 2679 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2680 | 2681 | preserve@^0.2.0: 2682 | version "0.2.0" 2683 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2684 | 2685 | prettier@^1.4.4: 2686 | version "1.4.4" 2687 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.4.4.tgz#a8d1447b14c9bf67e6d420dcadd10fb9a4fad65a" 2688 | 2689 | pretty-format@^20.0.3: 2690 | version "20.0.3" 2691 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 2692 | dependencies: 2693 | ansi-regex "^2.1.1" 2694 | ansi-styles "^3.0.0" 2695 | 2696 | private@^0.1.6: 2697 | version "0.1.7" 2698 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2699 | 2700 | process-nextick-args@~1.0.6: 2701 | version "1.0.7" 2702 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2703 | 2704 | progress@^2.0.0: 2705 | version "2.0.0" 2706 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2707 | 2708 | prr@~0.0.0: 2709 | version "0.0.0" 2710 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2711 | 2712 | pseudomap@^1.0.1: 2713 | version "1.0.2" 2714 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2715 | 2716 | punycode@^1.4.1: 2717 | version "1.4.1" 2718 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2719 | 2720 | qs@~6.4.0: 2721 | version "6.4.0" 2722 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2723 | 2724 | randomatic@^1.1.3: 2725 | version "1.1.6" 2726 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2727 | dependencies: 2728 | is-number "^2.0.2" 2729 | kind-of "^3.0.2" 2730 | 2731 | rc@^1.1.7: 2732 | version "1.2.1" 2733 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2734 | dependencies: 2735 | deep-extend "~0.4.0" 2736 | ini "~1.3.0" 2737 | minimist "^1.2.0" 2738 | strip-json-comments "~2.0.1" 2739 | 2740 | read-pkg-up@^1.0.1: 2741 | version "1.0.1" 2742 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2743 | dependencies: 2744 | find-up "^1.0.0" 2745 | read-pkg "^1.0.0" 2746 | 2747 | read-pkg@^1.0.0: 2748 | version "1.1.0" 2749 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2750 | dependencies: 2751 | load-json-file "^1.0.0" 2752 | normalize-package-data "^2.3.2" 2753 | path-type "^1.0.0" 2754 | 2755 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 2756 | version "2.2.9" 2757 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 2758 | dependencies: 2759 | buffer-shims "~1.0.0" 2760 | core-util-is "~1.0.0" 2761 | inherits "~2.0.1" 2762 | isarray "~1.0.0" 2763 | process-nextick-args "~1.0.6" 2764 | string_decoder "~1.0.0" 2765 | util-deprecate "~1.0.1" 2766 | 2767 | readdirp@^2.0.0: 2768 | version "2.1.0" 2769 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2770 | dependencies: 2771 | graceful-fs "^4.1.2" 2772 | minimatch "^3.0.2" 2773 | readable-stream "^2.0.2" 2774 | set-immediate-shim "^1.0.1" 2775 | 2776 | regenerate@^1.2.1: 2777 | version "1.3.2" 2778 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2779 | 2780 | regenerator-runtime@^0.10.0: 2781 | version "0.10.5" 2782 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2783 | 2784 | regenerator-transform@0.9.11: 2785 | version "0.9.11" 2786 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 2787 | dependencies: 2788 | babel-runtime "^6.18.0" 2789 | babel-types "^6.19.0" 2790 | private "^0.1.6" 2791 | 2792 | regex-cache@^0.4.2: 2793 | version "0.4.3" 2794 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2795 | dependencies: 2796 | is-equal-shallow "^0.1.3" 2797 | is-primitive "^2.0.0" 2798 | 2799 | regexpu-core@^1.0.0: 2800 | version "1.0.0" 2801 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" 2802 | dependencies: 2803 | regenerate "^1.2.1" 2804 | regjsgen "^0.2.0" 2805 | regjsparser "^0.1.4" 2806 | 2807 | regexpu-core@^2.0.0: 2808 | version "2.0.0" 2809 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2810 | dependencies: 2811 | regenerate "^1.2.1" 2812 | regjsgen "^0.2.0" 2813 | regjsparser "^0.1.4" 2814 | 2815 | regjsgen@^0.2.0: 2816 | version "0.2.0" 2817 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2818 | 2819 | regjsparser@^0.1.4: 2820 | version "0.1.5" 2821 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2822 | dependencies: 2823 | jsesc "~0.5.0" 2824 | 2825 | remove-trailing-separator@^1.0.1: 2826 | version "1.0.1" 2827 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 2828 | 2829 | repeat-element@^1.1.2: 2830 | version "1.1.2" 2831 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2832 | 2833 | repeat-string@^1.5.2: 2834 | version "1.6.1" 2835 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2836 | 2837 | repeating@^2.0.0: 2838 | version "2.0.1" 2839 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2840 | dependencies: 2841 | is-finite "^1.0.0" 2842 | 2843 | request@^2.79.0, request@^2.81.0: 2844 | version "2.81.0" 2845 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2846 | dependencies: 2847 | aws-sign2 "~0.6.0" 2848 | aws4 "^1.2.1" 2849 | caseless "~0.12.0" 2850 | combined-stream "~1.0.5" 2851 | extend "~3.0.0" 2852 | forever-agent "~0.6.1" 2853 | form-data "~2.1.1" 2854 | har-validator "~4.2.1" 2855 | hawk "~3.1.3" 2856 | http-signature "~1.1.0" 2857 | is-typedarray "~1.0.0" 2858 | isstream "~0.1.2" 2859 | json-stringify-safe "~5.0.1" 2860 | mime-types "~2.1.7" 2861 | oauth-sign "~0.8.1" 2862 | performance-now "^0.2.0" 2863 | qs "~6.4.0" 2864 | safe-buffer "^5.0.1" 2865 | stringstream "~0.0.4" 2866 | tough-cookie "~2.3.0" 2867 | tunnel-agent "^0.6.0" 2868 | uuid "^3.0.0" 2869 | 2870 | require-directory@^2.1.1: 2871 | version "2.1.1" 2872 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2873 | 2874 | require-from-string@^1.1.0: 2875 | version "1.2.1" 2876 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" 2877 | 2878 | require-main-filename@^1.0.1: 2879 | version "1.0.1" 2880 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2881 | 2882 | require-uncached@^1.0.3: 2883 | version "1.0.3" 2884 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2885 | dependencies: 2886 | caller-path "^0.1.0" 2887 | resolve-from "^1.0.0" 2888 | 2889 | resolve-from@^1.0.0: 2890 | version "1.0.1" 2891 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2892 | 2893 | resolve@1.1.7: 2894 | version "1.1.7" 2895 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2896 | 2897 | resolve@^1.3.2: 2898 | version "1.3.3" 2899 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 2900 | dependencies: 2901 | path-parse "^1.0.5" 2902 | 2903 | restore-cursor@^1.0.1: 2904 | version "1.0.1" 2905 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2906 | dependencies: 2907 | exit-hook "^1.0.0" 2908 | onetime "^1.0.0" 2909 | 2910 | restore-cursor@^2.0.0: 2911 | version "2.0.0" 2912 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2913 | dependencies: 2914 | onetime "^2.0.0" 2915 | signal-exit "^3.0.2" 2916 | 2917 | right-align@^0.1.1: 2918 | version "0.1.3" 2919 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2920 | dependencies: 2921 | align-text "^0.1.1" 2922 | 2923 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2924 | version "2.6.1" 2925 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2926 | dependencies: 2927 | glob "^7.0.5" 2928 | 2929 | run-async@^2.2.0: 2930 | version "2.3.0" 2931 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2932 | dependencies: 2933 | is-promise "^2.1.0" 2934 | 2935 | rx-lite-aggregates@^4.0.8: 2936 | version "4.0.8" 2937 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2938 | dependencies: 2939 | rx-lite "*" 2940 | 2941 | rx-lite@*, rx-lite@^4.0.8: 2942 | version "4.0.8" 2943 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2944 | 2945 | rxjs@^5.0.0-beta.11: 2946 | version "5.4.0" 2947 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.4.0.tgz#a7db14ab157f9d7aac6a56e655e7a3860d39bf26" 2948 | dependencies: 2949 | symbol-observable "^1.0.1" 2950 | 2951 | safe-buffer@^5.0.1: 2952 | version "5.0.1" 2953 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 2954 | 2955 | sane@~1.6.0: 2956 | version "1.6.0" 2957 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 2958 | dependencies: 2959 | anymatch "^1.3.0" 2960 | exec-sh "^0.2.0" 2961 | fb-watchman "^1.8.0" 2962 | minimatch "^3.0.2" 2963 | minimist "^1.1.1" 2964 | walker "~1.0.5" 2965 | watch "~0.10.0" 2966 | 2967 | sax@^1.2.1: 2968 | version "1.2.2" 2969 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 2970 | 2971 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2972 | version "5.3.0" 2973 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2974 | 2975 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2976 | version "2.0.0" 2977 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2978 | 2979 | set-immediate-shim@^1.0.1: 2980 | version "1.0.1" 2981 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2982 | 2983 | shebang-command@^1.2.0: 2984 | version "1.2.0" 2985 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2986 | dependencies: 2987 | shebang-regex "^1.0.0" 2988 | 2989 | shebang-regex@^1.0.0: 2990 | version "1.0.0" 2991 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2992 | 2993 | shellwords@^0.1.0: 2994 | version "0.1.0" 2995 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 2996 | 2997 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2998 | version "3.0.2" 2999 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3000 | 3001 | slash@^1.0.0: 3002 | version "1.0.0" 3003 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3004 | 3005 | slice-ansi@0.0.4: 3006 | version "0.0.4" 3007 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3008 | 3009 | sntp@1.x.x: 3010 | version "1.0.9" 3011 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3012 | dependencies: 3013 | hoek "2.x.x" 3014 | 3015 | source-map-support@^0.4.2: 3016 | version "0.4.15" 3017 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 3018 | dependencies: 3019 | source-map "^0.5.6" 3020 | 3021 | source-map@^0.4.4: 3022 | version "0.4.4" 3023 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3024 | dependencies: 3025 | amdefine ">=0.0.4" 3026 | 3027 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 3028 | version "0.5.6" 3029 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3030 | 3031 | source-map@~0.2.0: 3032 | version "0.2.0" 3033 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3034 | dependencies: 3035 | amdefine ">=0.0.4" 3036 | 3037 | spdx-correct@~1.0.0: 3038 | version "1.0.2" 3039 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3040 | dependencies: 3041 | spdx-license-ids "^1.0.2" 3042 | 3043 | spdx-expression-parse@~1.0.0: 3044 | version "1.0.4" 3045 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3046 | 3047 | spdx-license-ids@^1.0.2: 3048 | version "1.2.2" 3049 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3050 | 3051 | sprintf-js@~1.0.2: 3052 | version "1.0.3" 3053 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3054 | 3055 | sshpk@^1.7.0: 3056 | version "1.13.0" 3057 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 3058 | dependencies: 3059 | asn1 "~0.2.3" 3060 | assert-plus "^1.0.0" 3061 | dashdash "^1.12.0" 3062 | getpass "^0.1.1" 3063 | optionalDependencies: 3064 | bcrypt-pbkdf "^1.0.0" 3065 | ecc-jsbn "~0.1.1" 3066 | jodid25519 "^1.0.0" 3067 | jsbn "~0.1.0" 3068 | tweetnacl "~0.14.0" 3069 | 3070 | staged-git-files@0.0.4: 3071 | version "0.0.4" 3072 | resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" 3073 | 3074 | stream-to-observable@^0.1.0: 3075 | version "0.1.0" 3076 | resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.1.0.tgz#45bf1d9f2d7dc09bed81f1c307c430e68b84cffe" 3077 | 3078 | string-length@^1.0.1: 3079 | version "1.0.1" 3080 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 3081 | dependencies: 3082 | strip-ansi "^3.0.0" 3083 | 3084 | string-width@^1.0.1, string-width@^1.0.2: 3085 | version "1.0.2" 3086 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3087 | dependencies: 3088 | code-point-at "^1.0.0" 3089 | is-fullwidth-code-point "^1.0.0" 3090 | strip-ansi "^3.0.0" 3091 | 3092 | string-width@^2.0.0: 3093 | version "2.0.0" 3094 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3095 | dependencies: 3096 | is-fullwidth-code-point "^2.0.0" 3097 | strip-ansi "^3.0.0" 3098 | 3099 | string_decoder@~1.0.0: 3100 | version "1.0.1" 3101 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.1.tgz#62e200f039955a6810d8df0a33ffc0f013662d98" 3102 | dependencies: 3103 | safe-buffer "^5.0.1" 3104 | 3105 | stringstream@~0.0.4: 3106 | version "0.0.5" 3107 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3108 | 3109 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3110 | version "3.0.1" 3111 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3112 | dependencies: 3113 | ansi-regex "^2.0.0" 3114 | 3115 | strip-bom@3.0.0: 3116 | version "3.0.0" 3117 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3118 | 3119 | strip-bom@^2.0.0: 3120 | version "2.0.0" 3121 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3122 | dependencies: 3123 | is-utf8 "^0.2.0" 3124 | 3125 | strip-eof@^1.0.0: 3126 | version "1.0.0" 3127 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3128 | 3129 | strip-indent@^2.0.0: 3130 | version "2.0.0" 3131 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 3132 | 3133 | strip-json-comments@~2.0.1: 3134 | version "2.0.1" 3135 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3136 | 3137 | supports-color@^2.0.0: 3138 | version "2.0.0" 3139 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3140 | 3141 | supports-color@^3.1.2, supports-color@^3.2.3: 3142 | version "3.2.3" 3143 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3144 | dependencies: 3145 | has-flag "^1.0.0" 3146 | 3147 | symbol-observable@^1.0.1: 3148 | version "1.0.4" 3149 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3150 | 3151 | symbol-tree@^3.2.1: 3152 | version "3.2.2" 3153 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3154 | 3155 | table@^4.0.1: 3156 | version "4.0.1" 3157 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" 3158 | dependencies: 3159 | ajv "^4.7.0" 3160 | ajv-keywords "^1.0.0" 3161 | chalk "^1.1.1" 3162 | lodash "^4.0.0" 3163 | slice-ansi "0.0.4" 3164 | string-width "^2.0.0" 3165 | 3166 | tar-pack@^3.4.0: 3167 | version "3.4.0" 3168 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3169 | dependencies: 3170 | debug "^2.2.0" 3171 | fstream "^1.0.10" 3172 | fstream-ignore "^1.0.5" 3173 | once "^1.3.3" 3174 | readable-stream "^2.1.4" 3175 | rimraf "^2.5.1" 3176 | tar "^2.2.1" 3177 | uid-number "^0.0.6" 3178 | 3179 | tar@^2.2.1: 3180 | version "2.2.1" 3181 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3182 | dependencies: 3183 | block-stream "*" 3184 | fstream "^1.0.2" 3185 | inherits "2" 3186 | 3187 | test-exclude@^4.1.0: 3188 | version "4.1.0" 3189 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.0.tgz#04ca70b7390dd38c98d4a003a173806ca7991c91" 3190 | dependencies: 3191 | arrify "^1.0.1" 3192 | micromatch "^2.3.11" 3193 | object-assign "^4.1.0" 3194 | read-pkg-up "^1.0.1" 3195 | require-main-filename "^1.0.1" 3196 | 3197 | text-table@~0.2.0: 3198 | version "0.2.0" 3199 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3200 | 3201 | throat@^3.0.0: 3202 | version "3.0.0" 3203 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 3204 | 3205 | through@^2.3.6: 3206 | version "2.3.8" 3207 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3208 | 3209 | tmp@^0.0.31: 3210 | version "0.0.31" 3211 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 3212 | dependencies: 3213 | os-tmpdir "~1.0.1" 3214 | 3215 | tmpl@1.0.x: 3216 | version "1.0.4" 3217 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3218 | 3219 | to-fast-properties@^1.0.1: 3220 | version "1.0.3" 3221 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3222 | 3223 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3224 | version "2.3.2" 3225 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3226 | dependencies: 3227 | punycode "^1.4.1" 3228 | 3229 | tr46@~0.0.3: 3230 | version "0.0.3" 3231 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3232 | 3233 | trim-right@^1.0.1: 3234 | version "1.0.1" 3235 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3236 | 3237 | tryit@^1.0.1: 3238 | version "1.0.3" 3239 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3240 | 3241 | tunnel-agent@^0.6.0: 3242 | version "0.6.0" 3243 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3244 | dependencies: 3245 | safe-buffer "^5.0.1" 3246 | 3247 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3248 | version "0.14.5" 3249 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3250 | 3251 | type-check@~0.3.2: 3252 | version "0.3.2" 3253 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3254 | dependencies: 3255 | prelude-ls "~1.1.2" 3256 | 3257 | typedarray@^0.0.6: 3258 | version "0.0.6" 3259 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3260 | 3261 | uglify-js@^2.6: 3262 | version "2.8.27" 3263 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.27.tgz#47787f912b0f242e5b984343be8e35e95f694c9c" 3264 | dependencies: 3265 | source-map "~0.5.1" 3266 | yargs "~3.10.0" 3267 | optionalDependencies: 3268 | uglify-to-browserify "~1.0.0" 3269 | 3270 | uglify-to-browserify@~1.0.0: 3271 | version "1.0.2" 3272 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3273 | 3274 | uid-number@^0.0.6: 3275 | version "0.0.6" 3276 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3277 | 3278 | user-home@^1.1.1: 3279 | version "1.1.1" 3280 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3281 | 3282 | util-deprecate@~1.0.1: 3283 | version "1.0.2" 3284 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3285 | 3286 | uuid@^3.0.0: 3287 | version "3.0.1" 3288 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3289 | 3290 | v8flags@^2.0.10: 3291 | version "2.1.1" 3292 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3293 | dependencies: 3294 | user-home "^1.1.1" 3295 | 3296 | validate-npm-package-license@^3.0.1: 3297 | version "3.0.1" 3298 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3299 | dependencies: 3300 | spdx-correct "~1.0.0" 3301 | spdx-expression-parse "~1.0.0" 3302 | 3303 | verror@1.3.6: 3304 | version "1.3.6" 3305 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3306 | dependencies: 3307 | extsprintf "1.0.2" 3308 | 3309 | walker@~1.0.5: 3310 | version "1.0.7" 3311 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3312 | dependencies: 3313 | makeerror "1.0.x" 3314 | 3315 | watch@~0.10.0: 3316 | version "0.10.0" 3317 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3318 | 3319 | webidl-conversions@^3.0.0: 3320 | version "3.0.1" 3321 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3322 | 3323 | webidl-conversions@^4.0.0: 3324 | version "4.0.1" 3325 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 3326 | 3327 | whatwg-encoding@^1.0.1: 3328 | version "1.0.1" 3329 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3330 | dependencies: 3331 | iconv-lite "0.4.13" 3332 | 3333 | whatwg-url@^4.3.0: 3334 | version "4.8.0" 3335 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 3336 | dependencies: 3337 | tr46 "~0.0.3" 3338 | webidl-conversions "^3.0.0" 3339 | 3340 | which-module@^1.0.0: 3341 | version "1.0.0" 3342 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3343 | 3344 | which@^1.2.10, which@^1.2.12, which@^1.2.9: 3345 | version "1.2.14" 3346 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3347 | dependencies: 3348 | isexe "^2.0.0" 3349 | 3350 | wide-align@^1.1.0: 3351 | version "1.1.2" 3352 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3353 | dependencies: 3354 | string-width "^1.0.2" 3355 | 3356 | window-size@0.1.0: 3357 | version "0.1.0" 3358 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3359 | 3360 | wordwrap@0.0.2: 3361 | version "0.0.2" 3362 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3363 | 3364 | wordwrap@~0.0.2: 3365 | version "0.0.3" 3366 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3367 | 3368 | wordwrap@~1.0.0: 3369 | version "1.0.0" 3370 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3371 | 3372 | worker-farm@^1.3.1: 3373 | version "1.3.1" 3374 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 3375 | dependencies: 3376 | errno ">=0.1.1 <0.2.0-0" 3377 | xtend ">=4.0.0 <4.1.0-0" 3378 | 3379 | wrap-ansi@^2.0.0: 3380 | version "2.1.0" 3381 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3382 | dependencies: 3383 | string-width "^1.0.1" 3384 | strip-ansi "^3.0.1" 3385 | 3386 | wrappy@1: 3387 | version "1.0.2" 3388 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3389 | 3390 | write@^0.2.1: 3391 | version "0.2.1" 3392 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3393 | dependencies: 3394 | mkdirp "^0.5.1" 3395 | 3396 | xml-name-validator@^2.0.1: 3397 | version "2.0.1" 3398 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3399 | 3400 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0: 3401 | version "4.0.1" 3402 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3403 | 3404 | y18n@^3.2.1: 3405 | version "3.2.1" 3406 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3407 | 3408 | yallist@^2.0.0: 3409 | version "2.1.2" 3410 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3411 | 3412 | yargs-parser@^5.0.0: 3413 | version "5.0.0" 3414 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 3415 | dependencies: 3416 | camelcase "^3.0.0" 3417 | 3418 | yargs@^7.0.2: 3419 | version "7.1.0" 3420 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 3421 | dependencies: 3422 | camelcase "^3.0.0" 3423 | cliui "^3.2.0" 3424 | decamelize "^1.1.1" 3425 | get-caller-file "^1.0.1" 3426 | os-locale "^1.4.0" 3427 | read-pkg-up "^1.0.1" 3428 | require-directory "^2.1.1" 3429 | require-main-filename "^1.0.1" 3430 | set-blocking "^2.0.0" 3431 | string-width "^1.0.2" 3432 | which-module "^1.0.0" 3433 | y18n "^3.2.1" 3434 | yargs-parser "^5.0.0" 3435 | 3436 | yargs@~3.10.0: 3437 | version "3.10.0" 3438 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3439 | dependencies: 3440 | camelcase "^1.0.2" 3441 | cliui "^2.1.0" 3442 | decamelize "^1.0.0" 3443 | window-size "0.1.0" 3444 | --------------------------------------------------------------------------------