├── .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 | Copyright 2015 Glen Maddern and Bogdan Chadkin 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # postcss-icss-values [![Build Status][travis-img]][travis] 2 | 3 | [PostCSS]: https://github.com/postcss/postcss 4 | [travis-img]: https://travis-ci.org/css-modules/postcss-icss-values.svg 5 | [travis]: https://travis-ci.org/css-modules/postcss-icss-values 6 | 7 | PostCSS plugin for css modules to pass arbitrary values between your module files. 8 | 9 | ## Usage 10 | 11 | ```js 12 | postcss([ require('postcss-icss-values') ]) 13 | ``` 14 | 15 | See [PostCSS] docs for examples for your environment. 16 | 17 | ### Export value 18 | 19 | ```css 20 | /* colors.css */ 21 | 22 | @value primary: #BF4040; 23 | /* or without colon for preprocessors */ 24 | @value secondary #1F4F7F; 25 | 26 | .panel { 27 | background: primary; 28 | } 29 | 30 | /* transforms to */ 31 | 32 | :export { 33 | primary: #BF4040; 34 | secondary: #1F4F7F 35 | } 36 | 37 | .panel { 38 | background: #BF4040; 39 | } 40 | ``` 41 | 42 | **If you are using Sass** along with this PostCSS plugin, do not use the colon `:` in your `@value` definitions. It will cause Sass to crash. 43 | 44 | Note also you can _import_ multiple values at once but can only _define_ one value per line. 45 | 46 | ```css 47 | @value a: b, c: d; /* defines a as "b, c: d" */ 48 | ``` 49 | 50 | ### Importing value 51 | 52 | ```css 53 | @value primary, secondary from './colors.css'; 54 | 55 | .panel { 56 | background: secondary; 57 | } 58 | 59 | /* transforms to similar exports */ 60 | 61 | :import('./colors.css') { 62 | __value__primary__0: primary; 63 | __value__secondary__1: secondary 64 | } 65 | :export { 66 | primary: __value__primary__0; /* this long names will be mapped to imports by your loader */ 67 | secondary: __value__secondary__1 68 | } 69 | 70 | .panel { 71 | background: __value__secondary__1; 72 | } 73 | ``` 74 | 75 | ### Importing value in JS 76 | 77 | ```css 78 | import { primary } from './colors.css'; 79 | // will have similar effect 80 | console.log(primary); // -> #BF4040 81 | ``` 82 | 83 | ### Aliases 84 | 85 | To avoid conflict between names you are able to import values with aliases 86 | 87 | ```css 88 | @value small as bp-small, large as bp-large from './breakpoints.css'; 89 | @value ( 90 | small as t-small, 91 | large as t-large 92 | ) from './typo.css'; 93 | 94 | @media bp-small { 95 | .foo { 96 | font-size: t-small; 97 | } 98 | } 99 | ``` 100 | 101 | ### Messages 102 | 103 | postcss-icss-values passes `result.messages` for each declared or imported value 104 | 105 | ```json 106 | { 107 | plugin: 'postcss-icss-values', 108 | type: 'icss-value', 109 | name: string, // exported identifier 110 | value: string // generated imported identifier or value 111 | } 112 | ``` 113 | 114 | ## Justification 115 | 116 | See [this PR](https://github.com/css-modules/css-modules-loader-core/pull/28) for more background 117 | 118 | ## License 119 | 120 | MIT © Glen Maddern and Bogdan Chadkin, 2015 121 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "postcss-icss-values", 3 | "version": "2.0.2", 4 | "description": "PostCSS plugin for CSS Modules to pass arbitrary values between your module files", 5 | "main": "lib/index.js", 6 | "files": [ 7 | "lib" 8 | ], 9 | "scripts": { 10 | "build": "babel --out-dir lib src", 11 | "test": "jest --coverage", 12 | "precommit": "lint-staged", 13 | "prepublish": "yarn run test && yarn run build" 14 | }, 15 | "lint-staged": { 16 | "*.js": [ 17 | "prettier --write", 18 | "eslint", 19 | "git add" 20 | ] 21 | }, 22 | "eslintConfig": { 23 | "parserOptions": { 24 | "sourceType": "module" 25 | }, 26 | "env": { 27 | "es6": true 28 | }, 29 | "extends": "eslint:recommended" 30 | }, 31 | "babel": { 32 | "presets": [ 33 | [ 34 | "env", 35 | { 36 | "targets": { 37 | "node": 4 38 | } 39 | } 40 | ] 41 | ] 42 | }, 43 | "repository": "css-modules/postcss-icss-values", 44 | "keywords": [ 45 | "css", 46 | "modules", 47 | "postcss" 48 | ], 49 | "author": "Glen Maddern and Bogdan Chadkin", 50 | "license": "MIT", 51 | "devDependencies": { 52 | "babel-cli": "^6.5.2", 53 | "babel-jest": "^20.0.3", 54 | "babel-preset-env": "^1.5.2", 55 | "eslint": "^4.0.0", 56 | "husky": "^0.13.4", 57 | "jest": "^20.0.4", 58 | "lint-staged": "^3.6.1", 59 | "prettier": "^1.4.4", 60 | "strip-indent": "^2.0.0" 61 | }, 62 | "dependencies": { 63 | "icss-utils": "^3.0.1", 64 | "lodash": "^4.17.4", 65 | "postcss": "^7.0.36", 66 | "postcss-value-parser": "^3.3.0" 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | /* eslint-env node */ 2 | import postcss from "postcss"; 3 | import valueParser from "postcss-value-parser"; 4 | import { 5 | replaceSymbols, 6 | replaceValueSymbols, 7 | extractICSS, 8 | createICSSRules 9 | } from "icss-utils"; 10 | import findLastIndex from "lodash/findLastIndex"; 11 | import dropWhile from "lodash/dropWhile"; 12 | import dropRightWhile from "lodash/dropRightWhile"; 13 | import fromPairs from "lodash/fromPairs"; 14 | 15 | const plugin = "postcss-icss-values"; 16 | 17 | const chunkBy = (collection, iteratee) => 18 | collection.reduce( 19 | (acc, item) => 20 | iteratee(item) 21 | ? [...acc, []] 22 | : [...acc.slice(0, -1), [...acc[acc.length - 1], item]], 23 | [[]] 24 | ); 25 | 26 | const isWord = node => node.type === "word"; 27 | 28 | const isDiv = node => node.type === "div"; 29 | 30 | const isSpace = node => node.type === "space"; 31 | 32 | const isNotSpace = node => !isSpace(node); 33 | 34 | const isFromWord = node => isWord(node) && node.value === "from"; 35 | 36 | const isAsWord = node => isWord(node) && node.value === "as"; 37 | 38 | const isComma = node => isDiv(node) && node.value === ","; 39 | 40 | const isColon = node => isDiv(node) && node.value === ":"; 41 | 42 | const isInitializer = node => isColon(node) || isSpace(node); 43 | 44 | const trimNodes = nodes => dropWhile(dropRightWhile(nodes, isSpace), isSpace); 45 | 46 | const getPathValue = nodes => 47 | nodes.length === 1 && nodes[0].type === "string" ? nodes[0].value : null; 48 | 49 | const expandValuesParentheses = nodes => 50 | nodes.length === 1 && nodes[0].type === "function" && nodes[0].value === "" 51 | ? nodes[0].nodes 52 | : nodes; 53 | 54 | const getAliasesPairs = valuesNodes => 55 | chunkBy(expandValuesParentheses(valuesNodes), isComma).map(pairNodes => { 56 | const nodes = pairNodes.filter(isNotSpace); 57 | if (nodes.length === 1 && isWord(nodes[0])) { 58 | return [nodes[0].value, nodes[0].value]; 59 | } 60 | if ( 61 | nodes.length === 3 && 62 | isWord(nodes[0]) && 63 | isAsWord(nodes[1]) && 64 | isWord(nodes[2]) 65 | ) { 66 | return [nodes[0].value, nodes[2].value]; 67 | } 68 | return null; 69 | }); 70 | 71 | const parse = value => { 72 | const parsed = valueParser(value).nodes; 73 | const fromIndex = findLastIndex(parsed, isFromWord); 74 | if (fromIndex === -1) { 75 | if (parsed.length > 2 && isWord(parsed[0]) && isInitializer(parsed[1])) { 76 | return { 77 | type: "value", 78 | name: parsed[0].value, 79 | value: valueParser.stringify(trimNodes(parsed.slice(2))) 80 | }; 81 | } 82 | return null; 83 | } 84 | const pairs = getAliasesPairs(trimNodes(parsed.slice(0, fromIndex))); 85 | const path = getPathValue(trimNodes(parsed.slice(fromIndex + 1))); 86 | if (pairs.every(Boolean) && path) { 87 | return { 88 | type: "import", 89 | pairs, 90 | path 91 | }; 92 | } 93 | return null; 94 | }; 95 | 96 | const isForbidden = name => name.includes(".") || name.includes("#"); 97 | 98 | const createGenerator = (i = 0) => name => 99 | `__value__${name.replace(/\W/g, "_")}__${i++}`; 100 | 101 | const getScopedAliases = (messages, values) => 102 | fromPairs( 103 | messages 104 | .filter(msg => msg.type === "icss-scoped") 105 | .map(msg => [msg.value, values[msg.name]]) 106 | ); 107 | 108 | const getMessages = exports => 109 | Object.keys(exports).map(name => ({ 110 | plugin: "postcss-icss-values", 111 | type: "icss-value", 112 | name, 113 | value: exports[name] 114 | })); 115 | 116 | module.exports = postcss.plugin(plugin, () => (css, result) => { 117 | const { icssImports, icssExports } = extractICSS(css); 118 | const valuesExports = {}; 119 | const getAliasName = createGenerator(); 120 | const addExports = (node, name, value) => { 121 | if (isForbidden(name)) { 122 | result.warn(`Dot and hash symbols are not allowed in value "${name}"`, { 123 | node 124 | }); 125 | } 126 | if (valuesExports[name]) { 127 | result.warn(`"${name}" value already declared`, { node }); 128 | } 129 | valuesExports[name] = replaceValueSymbols(value, valuesExports); 130 | }; 131 | 132 | css.walkAtRules("value", atrule => { 133 | if (atrule.params.indexOf("@value") !== -1) { 134 | result.warn(`Invalid value definition "${atrule.params}"`, { 135 | node: atrule 136 | }); 137 | } else { 138 | const parsed = parse(atrule.params); 139 | if (parsed) { 140 | if (parsed.type === "value") { 141 | const { name, value } = parsed; 142 | addExports(atrule, name, value); 143 | } 144 | if (parsed.type === "import") { 145 | const pairs = parsed.pairs.map(([imported, local]) => { 146 | const alias = getAliasName(local); 147 | addExports(atrule, local, alias); 148 | return [alias, imported]; 149 | }); 150 | const aliases = fromPairs(pairs); 151 | icssImports[parsed.path] = Object.assign( 152 | {}, 153 | icssImports[parsed.path], 154 | aliases 155 | ); 156 | } 157 | } else { 158 | result.warn(`Invalid value definition "${atrule.params}"`, { 159 | node: atrule 160 | }); 161 | } 162 | } 163 | atrule.remove(); 164 | }); 165 | 166 | const scopedAliases = getScopedAliases(result.messages, valuesExports); 167 | 168 | replaceSymbols(css, Object.assign({}, valuesExports, scopedAliases)); 169 | 170 | Object.keys(icssExports).forEach(key => { 171 | icssExports[key] = replaceValueSymbols(icssExports[key], scopedAliases); 172 | }); 173 | 174 | css.prepend( 175 | createICSSRules(icssImports, Object.assign({}, icssExports, valuesExports)) 176 | ); 177 | 178 | result.messages.push(...getMessages(valuesExports)); 179 | }); 180 | -------------------------------------------------------------------------------- /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 | 8 | const messagesPlugin = messages => (css, result) => 9 | result.messages.push(...messages); 10 | 11 | const compile = (input, messages) => 12 | postcss([messagesPlugin(messages), plugin]).process(strip(input)); 13 | 14 | const getWarnings = result => result.warnings().map(warning => warning.text); 15 | 16 | const getMessages = result => 17 | result.messages.filter(msg => msg.type !== "warning"); 18 | 19 | const run = ({ 20 | fixture, 21 | expected, 22 | warnings = [], 23 | inputMessages = [], 24 | messages = [] 25 | }) => 26 | compile(fixture, inputMessages).then(result => { 27 | expect(result.css.trim()).toEqual(strip(expected)); 28 | expect(getWarnings(result)).toEqual(warnings); 29 | expect(getMessages(result)).toEqual(messages); 30 | }); 31 | 32 | const getMsg = (name, value) => ({ 33 | plugin: "postcss-icss-values", 34 | type: "icss-value", 35 | name, 36 | value 37 | }); 38 | 39 | test("export value", () => { 40 | return run({ 41 | fixture: ` 42 | @value red 1px solid #f00; 43 | @value blue: 1px solid #00f; 44 | `, 45 | expected: ` 46 | :export { 47 | red: 1px solid #f00; 48 | blue: 1px solid #00f 49 | } 50 | `, 51 | messages: [ 52 | getMsg("red", "1px solid #f00"), 53 | getMsg("blue", "1px solid #00f") 54 | ] 55 | }); 56 | }); 57 | 58 | test("warn when there is no semicolon between lines", () => { 59 | return run({ 60 | fixture: ` 61 | @value red blue 62 | @value green yellow 63 | `, 64 | expected: "", 65 | warnings: [`Invalid value definition "red blue\n@value green yellow"`] 66 | }); 67 | }); 68 | 69 | test("replace values within the file", () => { 70 | return run({ 71 | fixture: ` 72 | @value blue red; 73 | @media blue { 74 | .blue { color: blue } 75 | } 76 | `, 77 | expected: ` 78 | :export { 79 | blue: red 80 | } 81 | @media red { 82 | .red { color: red } 83 | } 84 | `, 85 | messages: [getMsg("blue", "red")] 86 | }); 87 | }); 88 | 89 | test("import external values", () => { 90 | return run({ 91 | fixture: ` 92 | @value red from "./colors.css"; 93 | .foo { color: red } 94 | `, 95 | expected: ` 96 | :import('./colors.css') { 97 | __value__red__0: red 98 | } 99 | :export { 100 | red: __value__red__0 101 | } 102 | .foo { color: __value__red__0 } 103 | `, 104 | messages: [getMsg("red", "__value__red__0")] 105 | }); 106 | }); 107 | 108 | test("import multiple external values", () => { 109 | return run({ 110 | fixture: ` 111 | @value red, blue from 'path1'; 112 | @value green, yellow from 'path2'; 113 | `, 114 | expected: ` 115 | :import('path1') { 116 | __value__red__0: red; 117 | __value__blue__1: blue 118 | } 119 | :import('path2') { 120 | __value__green__2: green; 121 | __value__yellow__3: yellow 122 | } 123 | :export { 124 | red: __value__red__0; 125 | blue: __value__blue__1; 126 | green: __value__green__2; 127 | yellow: __value__yellow__3 128 | } 129 | `, 130 | messages: [ 131 | getMsg("red", "__value__red__0"), 132 | getMsg("blue", "__value__blue__1"), 133 | getMsg("green", "__value__green__2"), 134 | getMsg("yellow", "__value__yellow__3") 135 | ] 136 | }); 137 | }); 138 | 139 | test("import external values with aliases", () => { 140 | return run({ 141 | fixture: ` 142 | @value red as red1, blue as blue1 from 'path'; 143 | .foo { color: red1; background: blue } 144 | `, 145 | expected: ` 146 | :import('path') { 147 | __value__red1__0: red; 148 | __value__blue1__1: blue 149 | } 150 | :export { 151 | red1: __value__red1__0; 152 | blue1: __value__blue1__1 153 | } 154 | .foo { color: __value__red1__0; background: blue } 155 | `, 156 | messages: [ 157 | getMsg("red1", "__value__red1__0"), 158 | getMsg("blue1", "__value__blue1__1") 159 | ] 160 | }); 161 | }); 162 | 163 | test("import multiple values grouped with parentheses on multiple lines", () => { 164 | return run({ 165 | fixture: ` 166 | @value ( 167 | blue, 168 | red 169 | ) from "path"; 170 | .foo { color: red; } 171 | .bar { color: blue } 172 | `, 173 | expected: ` 174 | :import('path') { 175 | __value__blue__0: blue; 176 | __value__red__1: red; 177 | } 178 | :export { 179 | blue: __value__blue__0; 180 | red: __value__red__1; 181 | } 182 | .foo { color: __value__red__1; } 183 | .bar { color: __value__blue__0 } 184 | `, 185 | messages: [ 186 | getMsg("blue", "__value__blue__0"), 187 | getMsg("red", "__value__red__1") 188 | ] 189 | }); 190 | }); 191 | 192 | test("warn on unexpected value defintion or import", () => { 193 | return run({ 194 | fixture: ` 195 | @value red; 196 | @value red: ; 197 | @value red from; 198 | @value red blue from 'path'; 199 | @value red from global; 200 | @value red from 'path' token; 201 | @value red as 'blue' from 'path'; 202 | @value 'red' as blue from 'path'; 203 | @value red 'as' blue from 'path'; 204 | @value fn(red, blue) from 'path'; 205 | `, 206 | expected: "", 207 | warnings: [ 208 | `Invalid value definition "red"`, 209 | `Invalid value definition "red:"`, 210 | `Invalid value definition "red from"`, 211 | `Invalid value definition "red blue from 'path'"`, 212 | `Invalid value definition "red from global"`, 213 | `Invalid value definition "red from 'path' token"`, 214 | `Invalid value definition "red as 'blue' from 'path'"`, 215 | `Invalid value definition "'red' as blue from 'path'"`, 216 | `Invalid value definition "red 'as' blue from 'path'"`, 217 | `Invalid value definition "fn(red, blue) from 'path'"` 218 | ] 219 | }); 220 | }); 221 | 222 | test("allow transitive values", () => { 223 | return run({ 224 | fixture: ` 225 | @value aaa: red; 226 | @value bbb: aaa; 227 | .a { color: bbb; } 228 | `, 229 | expected: ` 230 | :export { 231 | aaa: red; 232 | bbb: red; 233 | } 234 | .a { color: red; } 235 | `, 236 | messages: [getMsg("aaa", "red"), getMsg("bbb", "red")] 237 | }); 238 | }); 239 | 240 | test("allow transitive values within calc", () => { 241 | return run({ 242 | fixture: ` 243 | @value base: 10px; 244 | @value large: calc(base * 2); 245 | .a { margin: large; } 246 | `, 247 | expected: ` 248 | :export { 249 | base: 10px; 250 | large: calc(10px * 2); 251 | } 252 | .a { margin: calc(10px * 2); } 253 | `, 254 | messages: [getMsg("base", "10px"), getMsg("large", "calc(10px * 2)")] 255 | }); 256 | }); 257 | 258 | test("allow custom-property-style names", () => { 259 | return run({ 260 | fixture: ` 261 | @value --red from "./colors.css"; .foo { color: --red; } 262 | `, 263 | expected: ` 264 | :import('./colors.css') { 265 | __value____red__0: --red; 266 | } 267 | :export { 268 | --red: __value____red__0; 269 | } 270 | .foo { color: __value____red__0; } 271 | `, 272 | messages: [getMsg("--red", "__value____red__0")] 273 | }); 274 | }); 275 | 276 | test("allow all colour types", () => { 277 | return run({ 278 | fixture: ` 279 | @value named: red; 280 | @value 3char #0f0; 281 | @value 6char #00ff00; 282 | @value rgba rgba(34, 12, 64, 0.3); 283 | @value hsla hsla(220, 13.0%, 18.0%, 1); 284 | .foo { 285 | color: named; 286 | background-color: 3char; 287 | border-top-color: 6char; 288 | border-bottom-color: rgba; 289 | outline-color: hsla; 290 | } 291 | `, 292 | expected: ` 293 | :export { 294 | named: red; 295 | 3char: #0f0; 296 | 6char: #00ff00; 297 | rgba: rgba(34, 12, 64, 0.3); 298 | hsla: hsla(220, 13.0%, 18.0%, 1); 299 | } 300 | .foo { 301 | color: red; 302 | background-color: #0f0; 303 | border-top-color: #00ff00; 304 | border-bottom-color: rgba(34, 12, 64, 0.3); 305 | outline-color: hsla(220, 13.0%, 18.0%, 1); 306 | } 307 | `, 308 | messages: [ 309 | getMsg("named", "red"), 310 | getMsg("3char", "#0f0"), 311 | getMsg("6char", "#00ff00"), 312 | getMsg("rgba", "rgba(34, 12, 64, 0.3)"), 313 | getMsg("hsla", "hsla(220, 13.0%, 18.0%, 1)") 314 | ] 315 | }); 316 | }); 317 | 318 | test("allow definitions with commas in them", () => { 319 | return run({ 320 | fixture: ` 321 | @value coolShadow: 0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14) ; 322 | .foo { box-shadow: coolShadow; } 323 | `, 324 | expected: ` 325 | :export { 326 | coolShadow: 0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14); 327 | } 328 | .foo { box-shadow: 0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14); } 329 | `, 330 | messages: [ 331 | getMsg( 332 | "coolShadow", 333 | "0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14)" 334 | ) 335 | ] 336 | }); 337 | }); 338 | 339 | test("warn if value already declared and override result", () => { 340 | return run({ 341 | fixture: ` 342 | @value red: blue; 343 | @value red: green; 344 | @value red from 'path'; 345 | .foo { color: red } 346 | `, 347 | expected: ` 348 | :import('path') { 349 | __value__red__0: red 350 | } 351 | :export { 352 | red: __value__red__0 353 | } 354 | .foo { color: __value__red__0 } 355 | `, 356 | warnings: [`"red" value already declared`, `"red" value already declared`], 357 | messages: [getMsg("red", "__value__red__0")] 358 | }); 359 | }); 360 | 361 | test("reuse existing :import with same name and :export", () => { 362 | return run({ 363 | fixture: ` 364 | :import('./colors.css') { 365 | i__some_import: blue; 366 | } 367 | :export { 368 | b: i__c; 369 | } 370 | @value a from './colors.css'; 371 | `, 372 | expected: ` 373 | :import('./colors.css') { 374 | i__some_import: blue; 375 | __value__a__0: a 376 | } 377 | :export { 378 | b: i__c; 379 | a: __value__a__0 380 | } 381 | `, 382 | messages: [getMsg("a", "__value__a__0")] 383 | }); 384 | }); 385 | 386 | test("save :import and :export statements", () => { 387 | const input = ` 388 | :import('path') { 389 | __imported: value 390 | } 391 | :export { 392 | local: __imported 393 | } 394 | `; 395 | return run({ 396 | fixture: input, 397 | expected: input 398 | }); 399 | }); 400 | 401 | test("warn on using dot or hash in value name", () => { 402 | return run({ 403 | fixture: ` 404 | @value colors.red #f00; 405 | @value colors#blue #00f; 406 | @value .red from 'path'; 407 | @value #blue from 'path'; 408 | .foo { color: colors.red; background: colors#blue } 409 | .red {} 410 | #blue {} 411 | `, 412 | expected: ` 413 | :import('path') { 414 | __value___red__0: .red; 415 | __value___blue__1: #blue 416 | } 417 | :export { 418 | colors.red: #f00; 419 | colors#blue: #00f; 420 | .red: __value___red__0; 421 | #blue: __value___blue__1 422 | } 423 | .foo { color: colors.red; background: colors#blue } 424 | .red {} 425 | #blue {} 426 | `, 427 | warnings: [ 428 | `Dot and hash symbols are not allowed in value "colors.red"`, 429 | `Dot and hash symbols are not allowed in value "colors#blue"`, 430 | `Dot and hash symbols are not allowed in value ".red"`, 431 | `Dot and hash symbols are not allowed in value "#blue"` 432 | ], 433 | messages: [ 434 | getMsg("colors.red", "#f00"), 435 | getMsg("colors#blue", "#00f"), 436 | getMsg(".red", "__value___red__0"), 437 | getMsg("#blue", "__value___blue__1") 438 | ] 439 | }); 440 | }); 441 | 442 | test("icss-scoped contract", () => { 443 | const inputMessages = [ 444 | { type: "icss-scoped", name: "a", value: "__scope__a" } 445 | ]; 446 | return run({ 447 | fixture: ` 448 | :export { 449 | a: __scope__a; 450 | b: b __scope__a 451 | } 452 | @value a from 'path'; 453 | .__scope__a {} 454 | `, 455 | inputMessages, 456 | expected: ` 457 | :import('path') { 458 | __value__a__0: a 459 | } 460 | :export { 461 | a: __value__a__0; 462 | b: b __value__a__0 463 | } 464 | .__value__a__0 {} 465 | `, 466 | messages: [...inputMessages, getMsg("a", "__value__a__0")] 467 | }); 468 | }); 469 | -------------------------------------------------------------------------------- /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.1.0" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 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 | ansi-styles@^3.2.1: 83 | version "3.2.1" 84 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 85 | dependencies: 86 | color-convert "^1.9.0" 87 | 88 | anymatch@^1.3.0: 89 | version "1.3.0" 90 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 91 | dependencies: 92 | arrify "^1.0.0" 93 | micromatch "^2.1.5" 94 | 95 | app-root-path@^2.0.0: 96 | version "2.0.1" 97 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" 98 | 99 | append-transform@^0.4.0: 100 | version "0.4.0" 101 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 102 | dependencies: 103 | default-require-extensions "^1.0.0" 104 | 105 | aproba@^1.0.3: 106 | version "1.1.1" 107 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 108 | 109 | are-we-there-yet@~1.1.2: 110 | version "1.1.4" 111 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 112 | dependencies: 113 | delegates "^1.0.0" 114 | readable-stream "^2.0.6" 115 | 116 | argparse@^1.0.7: 117 | version "1.0.9" 118 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 119 | dependencies: 120 | sprintf-js "~1.0.2" 121 | 122 | arr-diff@^2.0.0: 123 | version "2.0.0" 124 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 125 | dependencies: 126 | arr-flatten "^1.0.1" 127 | 128 | arr-flatten@^1.0.1: 129 | version "1.0.3" 130 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 131 | 132 | array-equal@^1.0.0: 133 | version "1.0.0" 134 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 135 | 136 | array-union@^1.0.1: 137 | version "1.0.2" 138 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 139 | dependencies: 140 | array-uniq "^1.0.1" 141 | 142 | array-uniq@^1.0.1: 143 | version "1.0.3" 144 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 145 | 146 | array-unique@^0.2.1: 147 | version "0.2.1" 148 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 149 | 150 | arrify@^1.0.0, arrify@^1.0.1: 151 | version "1.0.1" 152 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 153 | 154 | asn1@~0.2.3: 155 | version "0.2.3" 156 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 157 | 158 | assert-plus@1.0.0, assert-plus@^1.0.0: 159 | version "1.0.0" 160 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 161 | 162 | assert-plus@^0.2.0: 163 | version "0.2.0" 164 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 165 | 166 | async-each@^1.0.0: 167 | version "1.0.1" 168 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 169 | 170 | async@^1.4.0: 171 | version "1.5.2" 172 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 173 | 174 | async@^2.1.4: 175 | version "2.4.1" 176 | resolved "https://registry.yarnpkg.com/async/-/async-2.4.1.tgz#62a56b279c98a11d0987096a01cc3eeb8eb7bbd7" 177 | dependencies: 178 | lodash "^4.14.0" 179 | 180 | asynckit@^0.4.0: 181 | version "0.4.0" 182 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 183 | 184 | aws-sign2@~0.6.0: 185 | version "0.6.0" 186 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 187 | 188 | aws4@^1.2.1: 189 | version "1.6.0" 190 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 191 | 192 | babel-cli@^6.5.2: 193 | version "6.24.1" 194 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 195 | dependencies: 196 | babel-core "^6.24.1" 197 | babel-polyfill "^6.23.0" 198 | babel-register "^6.24.1" 199 | babel-runtime "^6.22.0" 200 | commander "^2.8.1" 201 | convert-source-map "^1.1.0" 202 | fs-readdir-recursive "^1.0.0" 203 | glob "^7.0.0" 204 | lodash "^4.2.0" 205 | output-file-sync "^1.1.0" 206 | path-is-absolute "^1.0.0" 207 | slash "^1.0.0" 208 | source-map "^0.5.0" 209 | v8flags "^2.0.10" 210 | optionalDependencies: 211 | chokidar "^1.6.1" 212 | 213 | babel-code-frame@^6.22.0: 214 | version "6.22.0" 215 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 216 | dependencies: 217 | chalk "^1.1.0" 218 | esutils "^2.0.2" 219 | js-tokens "^3.0.0" 220 | 221 | babel-core@^6.0.0, babel-core@^6.24.1: 222 | version "6.24.1" 223 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 224 | dependencies: 225 | babel-code-frame "^6.22.0" 226 | babel-generator "^6.24.1" 227 | babel-helpers "^6.24.1" 228 | babel-messages "^6.23.0" 229 | babel-register "^6.24.1" 230 | babel-runtime "^6.22.0" 231 | babel-template "^6.24.1" 232 | babel-traverse "^6.24.1" 233 | babel-types "^6.24.1" 234 | babylon "^6.11.0" 235 | convert-source-map "^1.1.0" 236 | debug "^2.1.1" 237 | json5 "^0.5.0" 238 | lodash "^4.2.0" 239 | minimatch "^3.0.2" 240 | path-is-absolute "^1.0.0" 241 | private "^0.1.6" 242 | slash "^1.0.0" 243 | source-map "^0.5.0" 244 | 245 | babel-generator@^6.18.0, babel-generator@^6.24.1: 246 | version "6.24.1" 247 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 248 | dependencies: 249 | babel-messages "^6.23.0" 250 | babel-runtime "^6.22.0" 251 | babel-types "^6.24.1" 252 | detect-indent "^4.0.0" 253 | jsesc "^1.3.0" 254 | lodash "^4.2.0" 255 | source-map "^0.5.0" 256 | trim-right "^1.0.1" 257 | 258 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 259 | version "6.24.1" 260 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 261 | dependencies: 262 | babel-helper-explode-assignable-expression "^6.24.1" 263 | babel-runtime "^6.22.0" 264 | babel-types "^6.24.1" 265 | 266 | babel-helper-call-delegate@^6.24.1: 267 | version "6.24.1" 268 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 269 | dependencies: 270 | babel-helper-hoist-variables "^6.24.1" 271 | babel-runtime "^6.22.0" 272 | babel-traverse "^6.24.1" 273 | babel-types "^6.24.1" 274 | 275 | babel-helper-define-map@^6.24.1: 276 | version "6.24.1" 277 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 278 | dependencies: 279 | babel-helper-function-name "^6.24.1" 280 | babel-runtime "^6.22.0" 281 | babel-types "^6.24.1" 282 | lodash "^4.2.0" 283 | 284 | babel-helper-explode-assignable-expression@^6.24.1: 285 | version "6.24.1" 286 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 287 | dependencies: 288 | babel-runtime "^6.22.0" 289 | babel-traverse "^6.24.1" 290 | babel-types "^6.24.1" 291 | 292 | babel-helper-function-name@^6.24.1: 293 | version "6.24.1" 294 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 295 | dependencies: 296 | babel-helper-get-function-arity "^6.24.1" 297 | babel-runtime "^6.22.0" 298 | babel-template "^6.24.1" 299 | babel-traverse "^6.24.1" 300 | babel-types "^6.24.1" 301 | 302 | babel-helper-get-function-arity@^6.24.1: 303 | version "6.24.1" 304 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 305 | dependencies: 306 | babel-runtime "^6.22.0" 307 | babel-types "^6.24.1" 308 | 309 | babel-helper-hoist-variables@^6.24.1: 310 | version "6.24.1" 311 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 312 | dependencies: 313 | babel-runtime "^6.22.0" 314 | babel-types "^6.24.1" 315 | 316 | babel-helper-optimise-call-expression@^6.24.1: 317 | version "6.24.1" 318 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 319 | dependencies: 320 | babel-runtime "^6.22.0" 321 | babel-types "^6.24.1" 322 | 323 | babel-helper-regex@^6.24.1: 324 | version "6.24.1" 325 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 326 | dependencies: 327 | babel-runtime "^6.22.0" 328 | babel-types "^6.24.1" 329 | lodash "^4.2.0" 330 | 331 | babel-helper-remap-async-to-generator@^6.24.1: 332 | version "6.24.1" 333 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 334 | dependencies: 335 | babel-helper-function-name "^6.24.1" 336 | babel-runtime "^6.22.0" 337 | babel-template "^6.24.1" 338 | babel-traverse "^6.24.1" 339 | babel-types "^6.24.1" 340 | 341 | babel-helper-replace-supers@^6.24.1: 342 | version "6.24.1" 343 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 344 | dependencies: 345 | babel-helper-optimise-call-expression "^6.24.1" 346 | babel-messages "^6.23.0" 347 | babel-runtime "^6.22.0" 348 | babel-template "^6.24.1" 349 | babel-traverse "^6.24.1" 350 | babel-types "^6.24.1" 351 | 352 | babel-helpers@^6.24.1: 353 | version "6.24.1" 354 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 355 | dependencies: 356 | babel-runtime "^6.22.0" 357 | babel-template "^6.24.1" 358 | 359 | babel-jest@^20.0.3: 360 | version "20.0.3" 361 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 362 | dependencies: 363 | babel-core "^6.0.0" 364 | babel-plugin-istanbul "^4.0.0" 365 | babel-preset-jest "^20.0.3" 366 | 367 | babel-messages@^6.23.0: 368 | version "6.23.0" 369 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 370 | dependencies: 371 | babel-runtime "^6.22.0" 372 | 373 | babel-plugin-check-es2015-constants@^6.22.0: 374 | version "6.22.0" 375 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 376 | dependencies: 377 | babel-runtime "^6.22.0" 378 | 379 | babel-plugin-istanbul@^4.0.0: 380 | version "4.1.3" 381 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.3.tgz#6ee6280410dcf59c7747518c3dfd98680958f102" 382 | dependencies: 383 | find-up "^2.1.0" 384 | istanbul-lib-instrument "^1.7.1" 385 | test-exclude "^4.1.0" 386 | 387 | babel-plugin-jest-hoist@^20.0.3: 388 | version "20.0.3" 389 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 390 | 391 | babel-plugin-syntax-async-functions@^6.8.0: 392 | version "6.13.0" 393 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 394 | 395 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 396 | version "6.13.0" 397 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 398 | 399 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 400 | version "6.22.0" 401 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 402 | 403 | babel-plugin-transform-async-to-generator@^6.22.0: 404 | version "6.24.1" 405 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 406 | dependencies: 407 | babel-helper-remap-async-to-generator "^6.24.1" 408 | babel-plugin-syntax-async-functions "^6.8.0" 409 | babel-runtime "^6.22.0" 410 | 411 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 412 | version "6.22.0" 413 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 414 | dependencies: 415 | babel-runtime "^6.22.0" 416 | 417 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 418 | version "6.22.0" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 420 | dependencies: 421 | babel-runtime "^6.22.0" 422 | 423 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 424 | version "6.24.1" 425 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 426 | dependencies: 427 | babel-runtime "^6.22.0" 428 | babel-template "^6.24.1" 429 | babel-traverse "^6.24.1" 430 | babel-types "^6.24.1" 431 | lodash "^4.2.0" 432 | 433 | babel-plugin-transform-es2015-classes@^6.23.0: 434 | version "6.24.1" 435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 436 | dependencies: 437 | babel-helper-define-map "^6.24.1" 438 | babel-helper-function-name "^6.24.1" 439 | babel-helper-optimise-call-expression "^6.24.1" 440 | babel-helper-replace-supers "^6.24.1" 441 | babel-messages "^6.23.0" 442 | babel-runtime "^6.22.0" 443 | babel-template "^6.24.1" 444 | babel-traverse "^6.24.1" 445 | babel-types "^6.24.1" 446 | 447 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 448 | version "6.24.1" 449 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 450 | dependencies: 451 | babel-runtime "^6.22.0" 452 | babel-template "^6.24.1" 453 | 454 | babel-plugin-transform-es2015-destructuring@^6.23.0: 455 | version "6.23.0" 456 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 457 | dependencies: 458 | babel-runtime "^6.22.0" 459 | 460 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 461 | version "6.24.1" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 463 | dependencies: 464 | babel-runtime "^6.22.0" 465 | babel-types "^6.24.1" 466 | 467 | babel-plugin-transform-es2015-for-of@^6.23.0: 468 | version "6.23.0" 469 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 470 | dependencies: 471 | babel-runtime "^6.22.0" 472 | 473 | babel-plugin-transform-es2015-function-name@^6.22.0: 474 | version "6.24.1" 475 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 476 | dependencies: 477 | babel-helper-function-name "^6.24.1" 478 | babel-runtime "^6.22.0" 479 | babel-types "^6.24.1" 480 | 481 | babel-plugin-transform-es2015-literals@^6.22.0: 482 | version "6.22.0" 483 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 484 | dependencies: 485 | babel-runtime "^6.22.0" 486 | 487 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 488 | version "6.24.1" 489 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 490 | dependencies: 491 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 492 | babel-runtime "^6.22.0" 493 | babel-template "^6.24.1" 494 | 495 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 496 | version "6.24.1" 497 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 498 | dependencies: 499 | babel-plugin-transform-strict-mode "^6.24.1" 500 | babel-runtime "^6.22.0" 501 | babel-template "^6.24.1" 502 | babel-types "^6.24.1" 503 | 504 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 505 | version "6.24.1" 506 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 507 | dependencies: 508 | babel-helper-hoist-variables "^6.24.1" 509 | babel-runtime "^6.22.0" 510 | babel-template "^6.24.1" 511 | 512 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 513 | version "6.24.1" 514 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 515 | dependencies: 516 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 517 | babel-runtime "^6.22.0" 518 | babel-template "^6.24.1" 519 | 520 | babel-plugin-transform-es2015-object-super@^6.22.0: 521 | version "6.24.1" 522 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 523 | dependencies: 524 | babel-helper-replace-supers "^6.24.1" 525 | babel-runtime "^6.22.0" 526 | 527 | babel-plugin-transform-es2015-parameters@^6.23.0: 528 | version "6.24.1" 529 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 530 | dependencies: 531 | babel-helper-call-delegate "^6.24.1" 532 | babel-helper-get-function-arity "^6.24.1" 533 | babel-runtime "^6.22.0" 534 | babel-template "^6.24.1" 535 | babel-traverse "^6.24.1" 536 | babel-types "^6.24.1" 537 | 538 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 539 | version "6.24.1" 540 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 541 | dependencies: 542 | babel-runtime "^6.22.0" 543 | babel-types "^6.24.1" 544 | 545 | babel-plugin-transform-es2015-spread@^6.22.0: 546 | version "6.22.0" 547 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 548 | dependencies: 549 | babel-runtime "^6.22.0" 550 | 551 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 552 | version "6.24.1" 553 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 554 | dependencies: 555 | babel-helper-regex "^6.24.1" 556 | babel-runtime "^6.22.0" 557 | babel-types "^6.24.1" 558 | 559 | babel-plugin-transform-es2015-template-literals@^6.22.0: 560 | version "6.22.0" 561 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 562 | dependencies: 563 | babel-runtime "^6.22.0" 564 | 565 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 566 | version "6.23.0" 567 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 568 | dependencies: 569 | babel-runtime "^6.22.0" 570 | 571 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 572 | version "6.24.1" 573 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 574 | dependencies: 575 | babel-helper-regex "^6.24.1" 576 | babel-runtime "^6.22.0" 577 | regexpu-core "^2.0.0" 578 | 579 | babel-plugin-transform-exponentiation-operator@^6.22.0: 580 | version "6.24.1" 581 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 582 | dependencies: 583 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 584 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 585 | babel-runtime "^6.22.0" 586 | 587 | babel-plugin-transform-regenerator@^6.22.0: 588 | version "6.24.1" 589 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 590 | dependencies: 591 | regenerator-transform "0.9.11" 592 | 593 | babel-plugin-transform-strict-mode@^6.24.1: 594 | version "6.24.1" 595 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 596 | dependencies: 597 | babel-runtime "^6.22.0" 598 | babel-types "^6.24.1" 599 | 600 | babel-polyfill@^6.23.0: 601 | version "6.23.0" 602 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 603 | dependencies: 604 | babel-runtime "^6.22.0" 605 | core-js "^2.4.0" 606 | regenerator-runtime "^0.10.0" 607 | 608 | babel-preset-env@^1.5.2: 609 | version "1.5.2" 610 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.5.2.tgz#cd4ae90a6e94b709f97374b33e5f8b983556adef" 611 | dependencies: 612 | babel-plugin-check-es2015-constants "^6.22.0" 613 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 614 | babel-plugin-transform-async-to-generator "^6.22.0" 615 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 616 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 617 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 618 | babel-plugin-transform-es2015-classes "^6.23.0" 619 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 620 | babel-plugin-transform-es2015-destructuring "^6.23.0" 621 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 622 | babel-plugin-transform-es2015-for-of "^6.23.0" 623 | babel-plugin-transform-es2015-function-name "^6.22.0" 624 | babel-plugin-transform-es2015-literals "^6.22.0" 625 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 626 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 627 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 628 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 629 | babel-plugin-transform-es2015-object-super "^6.22.0" 630 | babel-plugin-transform-es2015-parameters "^6.23.0" 631 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 632 | babel-plugin-transform-es2015-spread "^6.22.0" 633 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 634 | babel-plugin-transform-es2015-template-literals "^6.22.0" 635 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 636 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 637 | babel-plugin-transform-exponentiation-operator "^6.22.0" 638 | babel-plugin-transform-regenerator "^6.22.0" 639 | browserslist "^2.1.2" 640 | invariant "^2.2.2" 641 | semver "^5.3.0" 642 | 643 | babel-preset-jest@^20.0.3: 644 | version "20.0.3" 645 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 646 | dependencies: 647 | babel-plugin-jest-hoist "^20.0.3" 648 | 649 | babel-register@^6.24.1: 650 | version "6.24.1" 651 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 652 | dependencies: 653 | babel-core "^6.24.1" 654 | babel-runtime "^6.22.0" 655 | core-js "^2.4.0" 656 | home-or-tmp "^2.0.0" 657 | lodash "^4.2.0" 658 | mkdirp "^0.5.1" 659 | source-map-support "^0.4.2" 660 | 661 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 662 | version "6.23.0" 663 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 664 | dependencies: 665 | core-js "^2.4.0" 666 | regenerator-runtime "^0.10.0" 667 | 668 | babel-template@^6.16.0, babel-template@^6.24.1: 669 | version "6.24.1" 670 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 671 | dependencies: 672 | babel-runtime "^6.22.0" 673 | babel-traverse "^6.24.1" 674 | babel-types "^6.24.1" 675 | babylon "^6.11.0" 676 | lodash "^4.2.0" 677 | 678 | babel-traverse@^6.18.0, babel-traverse@^6.24.1: 679 | version "6.24.1" 680 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 681 | dependencies: 682 | babel-code-frame "^6.22.0" 683 | babel-messages "^6.23.0" 684 | babel-runtime "^6.22.0" 685 | babel-types "^6.24.1" 686 | babylon "^6.15.0" 687 | debug "^2.2.0" 688 | globals "^9.0.0" 689 | invariant "^2.2.0" 690 | lodash "^4.2.0" 691 | 692 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1: 693 | version "6.24.1" 694 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 695 | dependencies: 696 | babel-runtime "^6.22.0" 697 | esutils "^2.0.2" 698 | lodash "^4.2.0" 699 | to-fast-properties "^1.0.1" 700 | 701 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 702 | version "6.17.1" 703 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f" 704 | 705 | balanced-match@^1.0.0: 706 | version "1.0.2" 707 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 708 | 709 | bcrypt-pbkdf@^1.0.0: 710 | version "1.0.1" 711 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 712 | dependencies: 713 | tweetnacl "^0.14.3" 714 | 715 | binary-extensions@^1.0.0: 716 | version "1.8.0" 717 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 718 | 719 | block-stream@*: 720 | version "0.0.9" 721 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 722 | dependencies: 723 | inherits "~2.0.0" 724 | 725 | boom@2.x.x: 726 | version "2.10.1" 727 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 728 | dependencies: 729 | hoek "2.x.x" 730 | 731 | brace-expansion@^1.1.7: 732 | version "1.1.11" 733 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 734 | dependencies: 735 | balanced-match "^1.0.0" 736 | concat-map "0.0.1" 737 | 738 | braces@^1.8.2: 739 | version "1.8.5" 740 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 741 | dependencies: 742 | expand-range "^1.8.1" 743 | preserve "^0.2.0" 744 | repeat-element "^1.1.2" 745 | 746 | browser-resolve@^1.11.2: 747 | version "1.11.2" 748 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 749 | dependencies: 750 | resolve "1.1.7" 751 | 752 | browserslist@^2.1.2: 753 | version "2.1.4" 754 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.1.4.tgz#cc526af4a1312b7d2e05653e56d0c8ab70c0e053" 755 | dependencies: 756 | caniuse-lite "^1.0.30000670" 757 | electron-to-chromium "^1.3.11" 758 | 759 | bser@1.0.2: 760 | version "1.0.2" 761 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 762 | dependencies: 763 | node-int64 "^0.4.0" 764 | 765 | bser@^2.0.0: 766 | version "2.0.0" 767 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 768 | dependencies: 769 | node-int64 "^0.4.0" 770 | 771 | buffer-shims@~1.0.0: 772 | version "1.0.0" 773 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 774 | 775 | builtin-modules@^1.0.0: 776 | version "1.1.1" 777 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 778 | 779 | caller-path@^0.1.0: 780 | version "0.1.0" 781 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 782 | dependencies: 783 | callsites "^0.2.0" 784 | 785 | callsites@^0.2.0: 786 | version "0.2.0" 787 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 788 | 789 | callsites@^2.0.0: 790 | version "2.0.0" 791 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 792 | 793 | camelcase@^1.0.2: 794 | version "1.2.1" 795 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 796 | 797 | camelcase@^3.0.0: 798 | version "3.0.0" 799 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 800 | 801 | caniuse-lite@^1.0.30000670: 802 | version "1.0.30000670" 803 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000670.tgz#c94f7dbf0b68eaadc46d3d203f46e82e7801135e" 804 | 805 | caseless@~0.12.0: 806 | version "0.12.0" 807 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 808 | 809 | center-align@^0.1.1: 810 | version "0.1.3" 811 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 812 | dependencies: 813 | align-text "^0.1.3" 814 | lazy-cache "^1.0.3" 815 | 816 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 817 | version "1.1.3" 818 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 819 | dependencies: 820 | ansi-styles "^2.2.1" 821 | escape-string-regexp "^1.0.2" 822 | has-ansi "^2.0.0" 823 | strip-ansi "^3.0.0" 824 | supports-color "^2.0.0" 825 | 826 | chalk@^2.4.2: 827 | version "2.4.2" 828 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 829 | dependencies: 830 | ansi-styles "^3.2.1" 831 | escape-string-regexp "^1.0.5" 832 | supports-color "^5.3.0" 833 | 834 | chokidar@^1.6.1: 835 | version "1.7.0" 836 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 837 | dependencies: 838 | anymatch "^1.3.0" 839 | async-each "^1.0.0" 840 | glob-parent "^2.0.0" 841 | inherits "^2.0.1" 842 | is-binary-path "^1.0.0" 843 | is-glob "^2.0.0" 844 | path-is-absolute "^1.0.0" 845 | readdirp "^2.0.0" 846 | optionalDependencies: 847 | fsevents "^1.0.0" 848 | 849 | ci-info@^1.0.0: 850 | version "1.0.0" 851 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 852 | 853 | circular-json@^0.3.1: 854 | version "0.3.1" 855 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 856 | 857 | cli-cursor@^1.0.2: 858 | version "1.0.2" 859 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 860 | dependencies: 861 | restore-cursor "^1.0.1" 862 | 863 | cli-cursor@^2.1.0: 864 | version "2.1.0" 865 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 866 | dependencies: 867 | restore-cursor "^2.0.0" 868 | 869 | cli-spinners@^0.1.2: 870 | version "0.1.2" 871 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 872 | 873 | cli-truncate@^0.2.1: 874 | version "0.2.1" 875 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 876 | dependencies: 877 | slice-ansi "0.0.4" 878 | string-width "^1.0.1" 879 | 880 | cli-width@^2.0.0: 881 | version "2.1.0" 882 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 883 | 884 | cliui@^2.1.0: 885 | version "2.1.0" 886 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 887 | dependencies: 888 | center-align "^0.1.1" 889 | right-align "^0.1.1" 890 | wordwrap "0.0.2" 891 | 892 | cliui@^3.2.0: 893 | version "3.2.0" 894 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 895 | dependencies: 896 | string-width "^1.0.1" 897 | strip-ansi "^3.0.1" 898 | wrap-ansi "^2.0.0" 899 | 900 | co@^4.6.0: 901 | version "4.6.0" 902 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 903 | 904 | code-point-at@^1.0.0: 905 | version "1.1.0" 906 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 907 | 908 | color-convert@^1.0.0: 909 | version "1.9.0" 910 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 911 | dependencies: 912 | color-name "^1.1.1" 913 | 914 | color-convert@^1.9.0: 915 | version "1.9.3" 916 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 917 | dependencies: 918 | color-name "1.1.3" 919 | 920 | color-name@1.1.3: 921 | version "1.1.3" 922 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 923 | 924 | color-name@^1.1.1: 925 | version "1.1.2" 926 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 927 | 928 | combined-stream@^1.0.5, combined-stream@~1.0.5: 929 | version "1.0.5" 930 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 931 | dependencies: 932 | delayed-stream "~1.0.0" 933 | 934 | commander@^2.8.1, commander@^2.9.0: 935 | version "2.9.0" 936 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 937 | dependencies: 938 | graceful-readlink ">= 1.0.0" 939 | 940 | concat-map@0.0.1: 941 | version "0.0.1" 942 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 943 | 944 | concat-stream@^1.6.0: 945 | version "1.6.0" 946 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 947 | dependencies: 948 | inherits "^2.0.3" 949 | readable-stream "^2.2.2" 950 | typedarray "^0.0.6" 951 | 952 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 953 | version "1.1.0" 954 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 955 | 956 | content-type-parser@^1.0.1: 957 | version "1.0.1" 958 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 959 | 960 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 961 | version "1.5.0" 962 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 963 | 964 | core-js@^2.4.0: 965 | version "2.4.1" 966 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 967 | 968 | core-util-is@~1.0.0: 969 | version "1.0.2" 970 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 971 | 972 | cosmiconfig@^1.1.0: 973 | version "1.1.0" 974 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-1.1.0.tgz#0dea0f9804efdfb929fbb1b188e25553ea053d37" 975 | dependencies: 976 | graceful-fs "^4.1.2" 977 | js-yaml "^3.4.3" 978 | minimist "^1.2.0" 979 | object-assign "^4.0.1" 980 | os-homedir "^1.0.1" 981 | parse-json "^2.2.0" 982 | pinkie-promise "^2.0.0" 983 | require-from-string "^1.1.0" 984 | 985 | cross-spawn@^5.0.1: 986 | version "5.1.0" 987 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 988 | dependencies: 989 | lru-cache "^4.0.1" 990 | shebang-command "^1.2.0" 991 | which "^1.2.9" 992 | 993 | cryptiles@2.x.x: 994 | version "2.0.5" 995 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 996 | dependencies: 997 | boom "2.x.x" 998 | 999 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1000 | version "0.3.2" 1001 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1002 | 1003 | "cssstyle@>= 0.2.37 < 0.3.0": 1004 | version "0.2.37" 1005 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1006 | dependencies: 1007 | cssom "0.3.x" 1008 | 1009 | dashdash@^1.12.0: 1010 | version "1.14.1" 1011 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1012 | dependencies: 1013 | assert-plus "^1.0.0" 1014 | 1015 | date-fns@^1.27.2: 1016 | version "1.28.5" 1017 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.28.5.tgz#257cfc45d322df45ef5658665967ee841cd73faf" 1018 | 1019 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 1020 | version "2.6.9" 1021 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1022 | dependencies: 1023 | ms "2.0.0" 1024 | 1025 | decamelize@^1.0.0, decamelize@^1.1.1: 1026 | version "1.2.0" 1027 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1028 | 1029 | deep-extend@~0.4.0: 1030 | version "0.4.2" 1031 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1032 | 1033 | deep-is@~0.1.3: 1034 | version "0.1.3" 1035 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1036 | 1037 | default-require-extensions@^1.0.0: 1038 | version "1.0.0" 1039 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1040 | dependencies: 1041 | strip-bom "^2.0.0" 1042 | 1043 | del@^2.0.2: 1044 | version "2.2.2" 1045 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1046 | dependencies: 1047 | globby "^5.0.0" 1048 | is-path-cwd "^1.0.0" 1049 | is-path-in-cwd "^1.0.0" 1050 | object-assign "^4.0.1" 1051 | pify "^2.0.0" 1052 | pinkie-promise "^2.0.0" 1053 | rimraf "^2.2.8" 1054 | 1055 | delayed-stream@~1.0.0: 1056 | version "1.0.0" 1057 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1058 | 1059 | delegates@^1.0.0: 1060 | version "1.0.0" 1061 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1062 | 1063 | detect-indent@^4.0.0: 1064 | version "4.0.0" 1065 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1066 | dependencies: 1067 | repeating "^2.0.0" 1068 | 1069 | diff@^3.2.0: 1070 | version "3.2.0" 1071 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1072 | 1073 | doctrine@^2.0.0: 1074 | version "2.0.0" 1075 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1076 | dependencies: 1077 | esutils "^2.0.2" 1078 | isarray "^1.0.0" 1079 | 1080 | ecc-jsbn@~0.1.1: 1081 | version "0.1.1" 1082 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1083 | dependencies: 1084 | jsbn "~0.1.0" 1085 | 1086 | electron-to-chromium@^1.3.11: 1087 | version "1.3.11" 1088 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.11.tgz#744761df1d67b492b322ce9aa0aba5393260eb61" 1089 | 1090 | elegant-spinner@^1.0.1: 1091 | version "1.0.1" 1092 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 1093 | 1094 | "errno@>=0.1.1 <0.2.0-0": 1095 | version "0.1.4" 1096 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1097 | dependencies: 1098 | prr "~0.0.0" 1099 | 1100 | error-ex@^1.2.0: 1101 | version "1.3.1" 1102 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1103 | dependencies: 1104 | is-arrayish "^0.2.1" 1105 | 1106 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1107 | version "1.0.5" 1108 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1109 | 1110 | escodegen@^1.6.1: 1111 | version "1.8.1" 1112 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1113 | dependencies: 1114 | esprima "^2.7.1" 1115 | estraverse "^1.9.1" 1116 | esutils "^2.0.2" 1117 | optionator "^0.8.1" 1118 | optionalDependencies: 1119 | source-map "~0.2.0" 1120 | 1121 | eslint-scope@^3.7.1: 1122 | version "3.7.1" 1123 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1124 | dependencies: 1125 | esrecurse "^4.1.0" 1126 | estraverse "^4.1.1" 1127 | 1128 | eslint@^4.0.0: 1129 | version "4.0.0" 1130 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.0.0.tgz#7277c01437fdf41dccd168d5aa0e49b75ca1f260" 1131 | dependencies: 1132 | babel-code-frame "^6.22.0" 1133 | chalk "^1.1.3" 1134 | concat-stream "^1.6.0" 1135 | debug "^2.6.8" 1136 | doctrine "^2.0.0" 1137 | eslint-scope "^3.7.1" 1138 | espree "^3.4.3" 1139 | esquery "^1.0.0" 1140 | estraverse "^4.2.0" 1141 | esutils "^2.0.2" 1142 | file-entry-cache "^2.0.0" 1143 | glob "^7.1.2" 1144 | globals "^9.17.0" 1145 | ignore "^3.3.3" 1146 | imurmurhash "^0.1.4" 1147 | inquirer "^3.0.6" 1148 | is-my-json-valid "^2.16.0" 1149 | is-resolvable "^1.0.0" 1150 | js-yaml "^3.8.4" 1151 | json-stable-stringify "^1.0.1" 1152 | levn "^0.3.0" 1153 | lodash "^4.17.4" 1154 | mkdirp "^0.5.1" 1155 | natural-compare "^1.4.0" 1156 | optionator "^0.8.2" 1157 | path-is-inside "^1.0.2" 1158 | pluralize "^4.0.0" 1159 | progress "^2.0.0" 1160 | require-uncached "^1.0.3" 1161 | strip-json-comments "~2.0.1" 1162 | table "^4.0.1" 1163 | text-table "~0.2.0" 1164 | 1165 | espree@^3.4.3: 1166 | version "3.4.3" 1167 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 1168 | dependencies: 1169 | acorn "^5.0.1" 1170 | acorn-jsx "^3.0.0" 1171 | 1172 | esprima@^2.7.1: 1173 | version "2.7.3" 1174 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1175 | 1176 | esprima@^3.1.1: 1177 | version "3.1.3" 1178 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1179 | 1180 | esquery@^1.0.0: 1181 | version "1.0.0" 1182 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1183 | dependencies: 1184 | estraverse "^4.0.0" 1185 | 1186 | esrecurse@^4.1.0: 1187 | version "4.1.0" 1188 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1189 | dependencies: 1190 | estraverse "~4.1.0" 1191 | object-assign "^4.0.1" 1192 | 1193 | estraverse@^1.9.1: 1194 | version "1.9.3" 1195 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1196 | 1197 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1198 | version "4.2.0" 1199 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1200 | 1201 | estraverse@~4.1.0: 1202 | version "4.1.1" 1203 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1204 | 1205 | esutils@^2.0.2: 1206 | version "2.0.2" 1207 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1208 | 1209 | exec-sh@^0.2.0: 1210 | version "0.2.0" 1211 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1212 | dependencies: 1213 | merge "^1.1.3" 1214 | 1215 | execa@^0.7.0: 1216 | version "0.7.0" 1217 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1218 | dependencies: 1219 | cross-spawn "^5.0.1" 1220 | get-stream "^3.0.0" 1221 | is-stream "^1.1.0" 1222 | npm-run-path "^2.0.0" 1223 | p-finally "^1.0.0" 1224 | signal-exit "^3.0.0" 1225 | strip-eof "^1.0.0" 1226 | 1227 | exit-hook@^1.0.0: 1228 | version "1.1.1" 1229 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1230 | 1231 | expand-brackets@^0.1.4: 1232 | version "0.1.5" 1233 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1234 | dependencies: 1235 | is-posix-bracket "^0.1.0" 1236 | 1237 | expand-range@^1.8.1: 1238 | version "1.8.2" 1239 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1240 | dependencies: 1241 | fill-range "^2.1.0" 1242 | 1243 | extend@~3.0.0: 1244 | version "3.0.1" 1245 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1246 | 1247 | external-editor@^2.0.4: 1248 | version "2.0.4" 1249 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 1250 | dependencies: 1251 | iconv-lite "^0.4.17" 1252 | jschardet "^1.4.2" 1253 | tmp "^0.0.31" 1254 | 1255 | extglob@^0.3.1: 1256 | version "0.3.2" 1257 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1258 | dependencies: 1259 | is-extglob "^1.0.0" 1260 | 1261 | extsprintf@1.0.2: 1262 | version "1.0.2" 1263 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1264 | 1265 | fast-levenshtein@~2.0.4: 1266 | version "2.0.6" 1267 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 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.3.1" 1417 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.3.1.tgz#f069617690c10c868e73b8465746764f97c3479f" 1418 | dependencies: 1419 | is-property "^1.0.2" 1420 | 1421 | generate-object-property@^1.1.0: 1422 | version "1.2.0" 1423 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1424 | dependencies: 1425 | is-property "^1.0.0" 1426 | 1427 | get-caller-file@^1.0.1: 1428 | version "1.0.2" 1429 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1430 | 1431 | get-stream@^3.0.0: 1432 | version "3.0.0" 1433 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1434 | 1435 | getpass@^0.1.1: 1436 | version "0.1.7" 1437 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1438 | dependencies: 1439 | assert-plus "^1.0.0" 1440 | 1441 | glob-base@^0.3.0: 1442 | version "0.3.0" 1443 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1444 | dependencies: 1445 | glob-parent "^2.0.0" 1446 | is-glob "^2.0.0" 1447 | 1448 | glob-parent@^2.0.0: 1449 | version "2.0.0" 1450 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1451 | dependencies: 1452 | is-glob "^2.0.0" 1453 | 1454 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1455 | version "7.1.2" 1456 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1457 | dependencies: 1458 | fs.realpath "^1.0.0" 1459 | inflight "^1.0.4" 1460 | inherits "2" 1461 | minimatch "^3.0.4" 1462 | once "^1.3.0" 1463 | path-is-absolute "^1.0.0" 1464 | 1465 | globals@^9.0.0, globals@^9.17.0: 1466 | version "9.17.0" 1467 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1468 | 1469 | globby@^5.0.0: 1470 | version "5.0.0" 1471 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1472 | dependencies: 1473 | array-union "^1.0.1" 1474 | arrify "^1.0.0" 1475 | glob "^7.0.3" 1476 | object-assign "^4.0.1" 1477 | pify "^2.0.0" 1478 | pinkie-promise "^2.0.0" 1479 | 1480 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1481 | version "4.1.11" 1482 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1483 | 1484 | "graceful-readlink@>= 1.0.0": 1485 | version "1.0.1" 1486 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1487 | 1488 | growly@^1.3.0: 1489 | version "1.3.0" 1490 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1491 | 1492 | handlebars@^4.0.3: 1493 | version "4.0.10" 1494 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1495 | dependencies: 1496 | async "^1.4.0" 1497 | optimist "^0.6.1" 1498 | source-map "^0.4.4" 1499 | optionalDependencies: 1500 | uglify-js "^2.6" 1501 | 1502 | har-schema@^1.0.5: 1503 | version "1.0.5" 1504 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1505 | 1506 | har-validator@~4.2.1: 1507 | version "4.2.1" 1508 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1509 | dependencies: 1510 | ajv "^4.9.1" 1511 | har-schema "^1.0.5" 1512 | 1513 | has-ansi@^2.0.0: 1514 | version "2.0.0" 1515 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1516 | dependencies: 1517 | ansi-regex "^2.0.0" 1518 | 1519 | has-flag@^1.0.0: 1520 | version "1.0.0" 1521 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1522 | 1523 | has-flag@^3.0.0: 1524 | version "3.0.0" 1525 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 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.8" 1623 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 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-ip-valid@^1.0.0: 1721 | version "1.0.1" 1722 | resolved "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.1.tgz#f7220d1146257c98672e6fba097a9f3f2d348442" 1723 | 1724 | is-my-json-valid@^2.16.0: 1725 | version "2.20.6" 1726 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.20.6.tgz#a9d89e56a36493c77bda1440d69ae0dc46a08387" 1727 | dependencies: 1728 | generate-function "^2.0.0" 1729 | generate-object-property "^1.1.0" 1730 | is-my-ip-valid "^1.0.0" 1731 | jsonpointer "^5.0.0" 1732 | xtend "^4.0.0" 1733 | 1734 | is-number@^2.0.2, is-number@^2.1.0: 1735 | version "2.1.0" 1736 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1737 | dependencies: 1738 | kind-of "^3.0.2" 1739 | 1740 | is-path-cwd@^1.0.0: 1741 | version "1.0.0" 1742 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1743 | 1744 | is-path-in-cwd@^1.0.0: 1745 | version "1.0.0" 1746 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1747 | dependencies: 1748 | is-path-inside "^1.0.0" 1749 | 1750 | is-path-inside@^1.0.0: 1751 | version "1.0.0" 1752 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1753 | dependencies: 1754 | path-is-inside "^1.0.1" 1755 | 1756 | is-posix-bracket@^0.1.0: 1757 | version "0.1.1" 1758 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1759 | 1760 | is-primitive@^2.0.0: 1761 | version "2.0.0" 1762 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1763 | 1764 | is-promise@^2.1.0: 1765 | version "2.1.0" 1766 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1767 | 1768 | is-property@^1.0.0, is-property@^1.0.2: 1769 | version "1.0.2" 1770 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1771 | 1772 | is-resolvable@^1.0.0: 1773 | version "1.0.0" 1774 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1775 | dependencies: 1776 | tryit "^1.0.1" 1777 | 1778 | is-stream@^1.1.0: 1779 | version "1.1.0" 1780 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1781 | 1782 | is-typedarray@~1.0.0: 1783 | version "1.0.0" 1784 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1785 | 1786 | is-utf8@^0.2.0: 1787 | version "0.2.1" 1788 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1789 | 1790 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1791 | version "1.0.0" 1792 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1793 | 1794 | isexe@^2.0.0: 1795 | version "2.0.0" 1796 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1797 | 1798 | isobject@^2.0.0: 1799 | version "2.1.0" 1800 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1801 | dependencies: 1802 | isarray "1.0.0" 1803 | 1804 | isstream@~0.1.2: 1805 | version "0.1.2" 1806 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1807 | 1808 | istanbul-api@^1.1.1: 1809 | version "1.1.8" 1810 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.8.tgz#a844e55c6f9aeee292e7f42942196f60b23dc93e" 1811 | dependencies: 1812 | async "^2.1.4" 1813 | fileset "^2.0.2" 1814 | istanbul-lib-coverage "^1.1.0" 1815 | istanbul-lib-hook "^1.0.6" 1816 | istanbul-lib-instrument "^1.7.1" 1817 | istanbul-lib-report "^1.1.0" 1818 | istanbul-lib-source-maps "^1.2.0" 1819 | istanbul-reports "^1.1.0" 1820 | js-yaml "^3.7.0" 1821 | mkdirp "^0.5.1" 1822 | once "^1.4.0" 1823 | 1824 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.0: 1825 | version "1.1.0" 1826 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.0.tgz#caca19decaef3525b5d6331d701f3f3b7ad48528" 1827 | 1828 | istanbul-lib-hook@^1.0.6: 1829 | version "1.0.6" 1830 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.6.tgz#c0866d1e81cf2d5319249510131fc16dee49231f" 1831 | dependencies: 1832 | append-transform "^0.4.0" 1833 | 1834 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.1: 1835 | version "1.7.1" 1836 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.1.tgz#169e31bc62c778851a99439dd99c3cc12184d360" 1837 | dependencies: 1838 | babel-generator "^6.18.0" 1839 | babel-template "^6.16.0" 1840 | babel-traverse "^6.18.0" 1841 | babel-types "^6.18.0" 1842 | babylon "^6.13.0" 1843 | istanbul-lib-coverage "^1.1.0" 1844 | semver "^5.3.0" 1845 | 1846 | istanbul-lib-report@^1.1.0: 1847 | version "1.1.0" 1848 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.0.tgz#444c4ecca9afa93cf584f56b10f195bf768c0770" 1849 | dependencies: 1850 | istanbul-lib-coverage "^1.1.0" 1851 | mkdirp "^0.5.1" 1852 | path-parse "^1.0.5" 1853 | supports-color "^3.1.2" 1854 | 1855 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.0: 1856 | version "1.2.0" 1857 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.0.tgz#8c7706d497e26feeb6af3e0c28fd5b0669598d0e" 1858 | dependencies: 1859 | debug "^2.6.3" 1860 | istanbul-lib-coverage "^1.1.0" 1861 | mkdirp "^0.5.1" 1862 | rimraf "^2.6.1" 1863 | source-map "^0.5.3" 1864 | 1865 | istanbul-reports@^1.1.0: 1866 | version "1.1.0" 1867 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.0.tgz#1ef3b795889219cfb5fad16365f6ce108d5f8c66" 1868 | dependencies: 1869 | handlebars "^4.0.3" 1870 | 1871 | jest-changed-files@^20.0.3: 1872 | version "20.0.3" 1873 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 1874 | 1875 | jest-cli@^20.0.4: 1876 | version "20.0.4" 1877 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 1878 | dependencies: 1879 | ansi-escapes "^1.4.0" 1880 | callsites "^2.0.0" 1881 | chalk "^1.1.3" 1882 | graceful-fs "^4.1.11" 1883 | is-ci "^1.0.10" 1884 | istanbul-api "^1.1.1" 1885 | istanbul-lib-coverage "^1.0.1" 1886 | istanbul-lib-instrument "^1.4.2" 1887 | istanbul-lib-source-maps "^1.1.0" 1888 | jest-changed-files "^20.0.3" 1889 | jest-config "^20.0.4" 1890 | jest-docblock "^20.0.3" 1891 | jest-environment-jsdom "^20.0.3" 1892 | jest-haste-map "^20.0.4" 1893 | jest-jasmine2 "^20.0.4" 1894 | jest-message-util "^20.0.3" 1895 | jest-regex-util "^20.0.3" 1896 | jest-resolve-dependencies "^20.0.3" 1897 | jest-runtime "^20.0.4" 1898 | jest-snapshot "^20.0.3" 1899 | jest-util "^20.0.3" 1900 | micromatch "^2.3.11" 1901 | node-notifier "^5.0.2" 1902 | pify "^2.3.0" 1903 | slash "^1.0.0" 1904 | string-length "^1.0.1" 1905 | throat "^3.0.0" 1906 | which "^1.2.12" 1907 | worker-farm "^1.3.1" 1908 | yargs "^7.0.2" 1909 | 1910 | jest-config@^20.0.4: 1911 | version "20.0.4" 1912 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 1913 | dependencies: 1914 | chalk "^1.1.3" 1915 | glob "^7.1.1" 1916 | jest-environment-jsdom "^20.0.3" 1917 | jest-environment-node "^20.0.3" 1918 | jest-jasmine2 "^20.0.4" 1919 | jest-matcher-utils "^20.0.3" 1920 | jest-regex-util "^20.0.3" 1921 | jest-resolve "^20.0.4" 1922 | jest-validate "^20.0.3" 1923 | pretty-format "^20.0.3" 1924 | 1925 | jest-diff@^20.0.3: 1926 | version "20.0.3" 1927 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 1928 | dependencies: 1929 | chalk "^1.1.3" 1930 | diff "^3.2.0" 1931 | jest-matcher-utils "^20.0.3" 1932 | pretty-format "^20.0.3" 1933 | 1934 | jest-docblock@^20.0.3: 1935 | version "20.0.3" 1936 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 1937 | 1938 | jest-environment-jsdom@^20.0.3: 1939 | version "20.0.3" 1940 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 1941 | dependencies: 1942 | jest-mock "^20.0.3" 1943 | jest-util "^20.0.3" 1944 | jsdom "^9.12.0" 1945 | 1946 | jest-environment-node@^20.0.3: 1947 | version "20.0.3" 1948 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 1949 | dependencies: 1950 | jest-mock "^20.0.3" 1951 | jest-util "^20.0.3" 1952 | 1953 | jest-haste-map@^20.0.4: 1954 | version "20.0.4" 1955 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.4.tgz#653eb55c889ce3c021f7b94693f20a4159badf03" 1956 | dependencies: 1957 | fb-watchman "^2.0.0" 1958 | graceful-fs "^4.1.11" 1959 | jest-docblock "^20.0.3" 1960 | micromatch "^2.3.11" 1961 | sane "~1.6.0" 1962 | worker-farm "^1.3.1" 1963 | 1964 | jest-jasmine2@^20.0.4: 1965 | version "20.0.4" 1966 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 1967 | dependencies: 1968 | chalk "^1.1.3" 1969 | graceful-fs "^4.1.11" 1970 | jest-diff "^20.0.3" 1971 | jest-matcher-utils "^20.0.3" 1972 | jest-matchers "^20.0.3" 1973 | jest-message-util "^20.0.3" 1974 | jest-snapshot "^20.0.3" 1975 | once "^1.4.0" 1976 | p-map "^1.1.1" 1977 | 1978 | jest-matcher-utils@^20.0.3: 1979 | version "20.0.3" 1980 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 1981 | dependencies: 1982 | chalk "^1.1.3" 1983 | pretty-format "^20.0.3" 1984 | 1985 | jest-matchers@^20.0.3: 1986 | version "20.0.3" 1987 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 1988 | dependencies: 1989 | jest-diff "^20.0.3" 1990 | jest-matcher-utils "^20.0.3" 1991 | jest-message-util "^20.0.3" 1992 | jest-regex-util "^20.0.3" 1993 | 1994 | jest-message-util@^20.0.3: 1995 | version "20.0.3" 1996 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 1997 | dependencies: 1998 | chalk "^1.1.3" 1999 | micromatch "^2.3.11" 2000 | slash "^1.0.0" 2001 | 2002 | jest-mock@^20.0.3: 2003 | version "20.0.3" 2004 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 2005 | 2006 | jest-regex-util@^20.0.3: 2007 | version "20.0.3" 2008 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 2009 | 2010 | jest-resolve-dependencies@^20.0.3: 2011 | version "20.0.3" 2012 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 2013 | dependencies: 2014 | jest-regex-util "^20.0.3" 2015 | 2016 | jest-resolve@^20.0.4: 2017 | version "20.0.4" 2018 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 2019 | dependencies: 2020 | browser-resolve "^1.11.2" 2021 | is-builtin-module "^1.0.0" 2022 | resolve "^1.3.2" 2023 | 2024 | jest-runtime@^20.0.4: 2025 | version "20.0.4" 2026 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 2027 | dependencies: 2028 | babel-core "^6.0.0" 2029 | babel-jest "^20.0.3" 2030 | babel-plugin-istanbul "^4.0.0" 2031 | chalk "^1.1.3" 2032 | convert-source-map "^1.4.0" 2033 | graceful-fs "^4.1.11" 2034 | jest-config "^20.0.4" 2035 | jest-haste-map "^20.0.4" 2036 | jest-regex-util "^20.0.3" 2037 | jest-resolve "^20.0.4" 2038 | jest-util "^20.0.3" 2039 | json-stable-stringify "^1.0.1" 2040 | micromatch "^2.3.11" 2041 | strip-bom "3.0.0" 2042 | yargs "^7.0.2" 2043 | 2044 | jest-snapshot@^20.0.3: 2045 | version "20.0.3" 2046 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 2047 | dependencies: 2048 | chalk "^1.1.3" 2049 | jest-diff "^20.0.3" 2050 | jest-matcher-utils "^20.0.3" 2051 | jest-util "^20.0.3" 2052 | natural-compare "^1.4.0" 2053 | pretty-format "^20.0.3" 2054 | 2055 | jest-util@^20.0.3: 2056 | version "20.0.3" 2057 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 2058 | dependencies: 2059 | chalk "^1.1.3" 2060 | graceful-fs "^4.1.11" 2061 | jest-message-util "^20.0.3" 2062 | jest-mock "^20.0.3" 2063 | jest-validate "^20.0.3" 2064 | leven "^2.1.0" 2065 | mkdirp "^0.5.1" 2066 | 2067 | jest-validate@^20.0.3: 2068 | version "20.0.3" 2069 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 2070 | dependencies: 2071 | chalk "^1.1.3" 2072 | jest-matcher-utils "^20.0.3" 2073 | leven "^2.1.0" 2074 | pretty-format "^20.0.3" 2075 | 2076 | jest@^20.0.4: 2077 | version "20.0.4" 2078 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 2079 | dependencies: 2080 | jest-cli "^20.0.4" 2081 | 2082 | jodid25519@^1.0.0: 2083 | version "1.0.2" 2084 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2085 | dependencies: 2086 | jsbn "~0.1.0" 2087 | 2088 | js-tokens@^3.0.0: 2089 | version "3.0.1" 2090 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2091 | 2092 | js-yaml@^3.4.3, js-yaml@^3.7.0, js-yaml@^3.8.4: 2093 | version "3.8.4" 2094 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 2095 | dependencies: 2096 | argparse "^1.0.7" 2097 | esprima "^3.1.1" 2098 | 2099 | jsbn@~0.1.0: 2100 | version "0.1.1" 2101 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2102 | 2103 | jschardet@^1.4.2: 2104 | version "1.4.2" 2105 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.4.2.tgz#2aa107f142af4121d145659d44f50830961e699a" 2106 | 2107 | jsdom@^9.12.0: 2108 | version "9.12.0" 2109 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2110 | dependencies: 2111 | abab "^1.0.3" 2112 | acorn "^4.0.4" 2113 | acorn-globals "^3.1.0" 2114 | array-equal "^1.0.0" 2115 | content-type-parser "^1.0.1" 2116 | cssom ">= 0.3.2 < 0.4.0" 2117 | cssstyle ">= 0.2.37 < 0.3.0" 2118 | escodegen "^1.6.1" 2119 | html-encoding-sniffer "^1.0.1" 2120 | nwmatcher ">= 1.3.9 < 2.0.0" 2121 | parse5 "^1.5.1" 2122 | request "^2.79.0" 2123 | sax "^1.2.1" 2124 | symbol-tree "^3.2.1" 2125 | tough-cookie "^2.3.2" 2126 | webidl-conversions "^4.0.0" 2127 | whatwg-encoding "^1.0.1" 2128 | whatwg-url "^4.3.0" 2129 | xml-name-validator "^2.0.1" 2130 | 2131 | jsesc@^1.3.0: 2132 | version "1.3.0" 2133 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2134 | 2135 | jsesc@~0.5.0: 2136 | version "0.5.0" 2137 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2138 | 2139 | json-schema@0.2.3: 2140 | version "0.2.3" 2141 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2142 | 2143 | json-stable-stringify@^1.0.1: 2144 | version "1.0.1" 2145 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2146 | dependencies: 2147 | jsonify "~0.0.0" 2148 | 2149 | json-stringify-safe@~5.0.1: 2150 | version "5.0.1" 2151 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2152 | 2153 | json5@^0.5.0: 2154 | version "0.5.1" 2155 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2156 | 2157 | jsonify@~0.0.0: 2158 | version "0.0.0" 2159 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2160 | 2161 | jsonpointer@^5.0.0: 2162 | version "5.0.1" 2163 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.1.tgz#2110e0af0900fd37467b5907ecd13a7884a1b559" 2164 | 2165 | jsprim@^1.2.2: 2166 | version "1.4.0" 2167 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2168 | dependencies: 2169 | assert-plus "1.0.0" 2170 | extsprintf "1.0.2" 2171 | json-schema "0.2.3" 2172 | verror "1.3.6" 2173 | 2174 | kind-of@^3.0.2: 2175 | version "3.2.2" 2176 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2177 | dependencies: 2178 | is-buffer "^1.1.5" 2179 | 2180 | lazy-cache@^1.0.3: 2181 | version "1.0.4" 2182 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2183 | 2184 | lcid@^1.0.0: 2185 | version "1.0.0" 2186 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2187 | dependencies: 2188 | invert-kv "^1.0.0" 2189 | 2190 | leven@^2.1.0: 2191 | version "2.1.0" 2192 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2193 | 2194 | levn@^0.3.0, levn@~0.3.0: 2195 | version "0.3.0" 2196 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2197 | dependencies: 2198 | prelude-ls "~1.1.2" 2199 | type-check "~0.3.2" 2200 | 2201 | lint-staged@^3.6.1: 2202 | version "3.6.1" 2203 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-3.6.1.tgz#24423c8b7bd99d96e15acd1ac8cb392a78e58582" 2204 | dependencies: 2205 | app-root-path "^2.0.0" 2206 | cosmiconfig "^1.1.0" 2207 | execa "^0.7.0" 2208 | listr "^0.12.0" 2209 | lodash.chunk "^4.2.0" 2210 | minimatch "^3.0.0" 2211 | npm-which "^3.0.1" 2212 | p-map "^1.1.1" 2213 | staged-git-files "0.0.4" 2214 | 2215 | listr-silent-renderer@^1.1.1: 2216 | version "1.1.1" 2217 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 2218 | 2219 | listr-update-renderer@^0.2.0: 2220 | version "0.2.0" 2221 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.2.0.tgz#ca80e1779b4e70266807e8eed1ad6abe398550f9" 2222 | dependencies: 2223 | chalk "^1.1.3" 2224 | cli-truncate "^0.2.1" 2225 | elegant-spinner "^1.0.1" 2226 | figures "^1.7.0" 2227 | indent-string "^3.0.0" 2228 | log-symbols "^1.0.2" 2229 | log-update "^1.0.2" 2230 | strip-ansi "^3.0.1" 2231 | 2232 | listr-verbose-renderer@^0.4.0: 2233 | version "0.4.0" 2234 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.0.tgz#44dc01bb0c34a03c572154d4d08cde9b1dc5620f" 2235 | dependencies: 2236 | chalk "^1.1.3" 2237 | cli-cursor "^1.0.2" 2238 | date-fns "^1.27.2" 2239 | figures "^1.7.0" 2240 | 2241 | listr@^0.12.0: 2242 | version "0.12.0" 2243 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.12.0.tgz#6bce2c0f5603fa49580ea17cd6a00cc0e5fa451a" 2244 | dependencies: 2245 | chalk "^1.1.3" 2246 | cli-truncate "^0.2.1" 2247 | figures "^1.7.0" 2248 | indent-string "^2.1.0" 2249 | is-promise "^2.1.0" 2250 | is-stream "^1.1.0" 2251 | listr-silent-renderer "^1.1.1" 2252 | listr-update-renderer "^0.2.0" 2253 | listr-verbose-renderer "^0.4.0" 2254 | log-symbols "^1.0.2" 2255 | log-update "^1.0.2" 2256 | ora "^0.2.3" 2257 | p-map "^1.1.1" 2258 | rxjs "^5.0.0-beta.11" 2259 | stream-to-observable "^0.1.0" 2260 | strip-ansi "^3.0.1" 2261 | 2262 | load-json-file@^1.0.0: 2263 | version "1.1.0" 2264 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2265 | dependencies: 2266 | graceful-fs "^4.1.2" 2267 | parse-json "^2.2.0" 2268 | pify "^2.0.0" 2269 | pinkie-promise "^2.0.0" 2270 | strip-bom "^2.0.0" 2271 | 2272 | locate-path@^2.0.0: 2273 | version "2.0.0" 2274 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2275 | dependencies: 2276 | p-locate "^2.0.0" 2277 | path-exists "^3.0.0" 2278 | 2279 | lodash.chunk@^4.2.0: 2280 | version "4.2.0" 2281 | resolved "https://registry.yarnpkg.com/lodash.chunk/-/lodash.chunk-4.2.0.tgz#66e5ce1f76ed27b4303d8c6512e8d1216e8106bc" 2282 | 2283 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 2284 | version "4.17.21" 2285 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 2286 | 2287 | log-symbols@^1.0.2: 2288 | version "1.0.2" 2289 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2290 | dependencies: 2291 | chalk "^1.0.0" 2292 | 2293 | log-update@^1.0.2: 2294 | version "1.0.2" 2295 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 2296 | dependencies: 2297 | ansi-escapes "^1.0.0" 2298 | cli-cursor "^1.0.2" 2299 | 2300 | longest@^1.0.1: 2301 | version "1.0.1" 2302 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2303 | 2304 | loose-envify@^1.0.0: 2305 | version "1.3.1" 2306 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2307 | dependencies: 2308 | js-tokens "^3.0.0" 2309 | 2310 | lru-cache@^4.0.1: 2311 | version "4.0.2" 2312 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2313 | dependencies: 2314 | pseudomap "^1.0.1" 2315 | yallist "^2.0.0" 2316 | 2317 | makeerror@1.0.x: 2318 | version "1.0.11" 2319 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2320 | dependencies: 2321 | tmpl "1.0.x" 2322 | 2323 | merge@^1.1.3: 2324 | version "1.2.0" 2325 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2326 | 2327 | micromatch@^2.1.5, micromatch@^2.3.11: 2328 | version "2.3.11" 2329 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2330 | dependencies: 2331 | arr-diff "^2.0.0" 2332 | array-unique "^0.2.1" 2333 | braces "^1.8.2" 2334 | expand-brackets "^0.1.4" 2335 | extglob "^0.3.1" 2336 | filename-regex "^2.0.0" 2337 | is-extglob "^1.0.0" 2338 | is-glob "^2.0.1" 2339 | kind-of "^3.0.2" 2340 | normalize-path "^2.0.1" 2341 | object.omit "^2.0.0" 2342 | parse-glob "^3.0.4" 2343 | regex-cache "^0.4.2" 2344 | 2345 | mime-db@~1.27.0: 2346 | version "1.27.0" 2347 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2348 | 2349 | mime-types@^2.1.12, mime-types@~2.1.7: 2350 | version "2.1.15" 2351 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2352 | dependencies: 2353 | mime-db "~1.27.0" 2354 | 2355 | mimic-fn@^1.0.0: 2356 | version "1.1.0" 2357 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2358 | 2359 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2360 | version "3.1.2" 2361 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 2362 | dependencies: 2363 | brace-expansion "^1.1.7" 2364 | 2365 | minimist@0.0.8, minimist@~0.0.1: 2366 | version "0.0.8" 2367 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2368 | 2369 | minimist@^1.1.1, minimist@^1.2.0: 2370 | version "1.2.0" 2371 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2372 | 2373 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2374 | version "0.5.1" 2375 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2376 | dependencies: 2377 | minimist "0.0.8" 2378 | 2379 | ms@2.0.0: 2380 | version "2.0.0" 2381 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2382 | 2383 | mute-stream@0.0.7: 2384 | version "0.0.7" 2385 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2386 | 2387 | nan@^2.3.0: 2388 | version "2.6.2" 2389 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2390 | 2391 | natural-compare@^1.4.0: 2392 | version "1.4.0" 2393 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2394 | 2395 | node-int64@^0.4.0: 2396 | version "0.4.0" 2397 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2398 | 2399 | node-notifier@^5.0.2: 2400 | version "5.1.2" 2401 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2402 | dependencies: 2403 | growly "^1.3.0" 2404 | semver "^5.3.0" 2405 | shellwords "^0.1.0" 2406 | which "^1.2.12" 2407 | 2408 | node-pre-gyp@^0.6.29: 2409 | version "0.6.34" 2410 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2411 | dependencies: 2412 | mkdirp "^0.5.1" 2413 | nopt "^4.0.1" 2414 | npmlog "^4.0.2" 2415 | rc "^1.1.7" 2416 | request "^2.81.0" 2417 | rimraf "^2.6.1" 2418 | semver "^5.3.0" 2419 | tar "^2.2.1" 2420 | tar-pack "^3.4.0" 2421 | 2422 | nopt@^4.0.1: 2423 | version "4.0.1" 2424 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2425 | dependencies: 2426 | abbrev "1" 2427 | osenv "^0.1.4" 2428 | 2429 | normalize-package-data@^2.3.2: 2430 | version "2.3.8" 2431 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2432 | dependencies: 2433 | hosted-git-info "^2.1.4" 2434 | is-builtin-module "^1.0.0" 2435 | semver "2 || 3 || 4 || 5" 2436 | validate-npm-package-license "^3.0.1" 2437 | 2438 | normalize-path@^1.0.0: 2439 | version "1.0.0" 2440 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" 2441 | 2442 | normalize-path@^2.0.1: 2443 | version "2.1.1" 2444 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2445 | dependencies: 2446 | remove-trailing-separator "^1.0.1" 2447 | 2448 | npm-path@^2.0.2: 2449 | version "2.0.3" 2450 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.3.tgz#15cff4e1c89a38da77f56f6055b24f975dfb2bbe" 2451 | dependencies: 2452 | which "^1.2.10" 2453 | 2454 | npm-run-path@^2.0.0: 2455 | version "2.0.2" 2456 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2457 | dependencies: 2458 | path-key "^2.0.0" 2459 | 2460 | npm-which@^3.0.1: 2461 | version "3.0.1" 2462 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" 2463 | dependencies: 2464 | commander "^2.9.0" 2465 | npm-path "^2.0.2" 2466 | which "^1.2.10" 2467 | 2468 | npmlog@^4.0.2: 2469 | version "4.1.0" 2470 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 2471 | dependencies: 2472 | are-we-there-yet "~1.1.2" 2473 | console-control-strings "~1.1.0" 2474 | gauge "~2.7.3" 2475 | set-blocking "~2.0.0" 2476 | 2477 | number-is-nan@^1.0.0: 2478 | version "1.0.1" 2479 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2480 | 2481 | "nwmatcher@>= 1.3.9 < 2.0.0": 2482 | version "1.4.0" 2483 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.0.tgz#b4389362170e7ef9798c3c7716d80ebc0106fccf" 2484 | 2485 | oauth-sign@~0.8.1: 2486 | version "0.8.2" 2487 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2488 | 2489 | object-assign@^4.0.1, object-assign@^4.1.0: 2490 | version "4.1.1" 2491 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2492 | 2493 | object.omit@^2.0.0: 2494 | version "2.0.1" 2495 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2496 | dependencies: 2497 | for-own "^0.1.4" 2498 | is-extendable "^0.1.1" 2499 | 2500 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2501 | version "1.4.0" 2502 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2503 | dependencies: 2504 | wrappy "1" 2505 | 2506 | onetime@^1.0.0: 2507 | version "1.1.0" 2508 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2509 | 2510 | onetime@^2.0.0: 2511 | version "2.0.1" 2512 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2513 | dependencies: 2514 | mimic-fn "^1.0.0" 2515 | 2516 | optimist@^0.6.1: 2517 | version "0.6.1" 2518 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2519 | dependencies: 2520 | minimist "~0.0.1" 2521 | wordwrap "~0.0.2" 2522 | 2523 | optionator@^0.8.1, optionator@^0.8.2: 2524 | version "0.8.2" 2525 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2526 | dependencies: 2527 | deep-is "~0.1.3" 2528 | fast-levenshtein "~2.0.4" 2529 | levn "~0.3.0" 2530 | prelude-ls "~1.1.2" 2531 | type-check "~0.3.2" 2532 | wordwrap "~1.0.0" 2533 | 2534 | ora@^0.2.3: 2535 | version "0.2.3" 2536 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 2537 | dependencies: 2538 | chalk "^1.1.1" 2539 | cli-cursor "^1.0.2" 2540 | cli-spinners "^0.1.2" 2541 | object-assign "^4.0.1" 2542 | 2543 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2544 | version "1.0.2" 2545 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2546 | 2547 | os-locale@^1.4.0: 2548 | version "1.4.0" 2549 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2550 | dependencies: 2551 | lcid "^1.0.0" 2552 | 2553 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 2554 | version "1.0.2" 2555 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2556 | 2557 | osenv@^0.1.4: 2558 | version "0.1.4" 2559 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2560 | dependencies: 2561 | os-homedir "^1.0.0" 2562 | os-tmpdir "^1.0.0" 2563 | 2564 | output-file-sync@^1.1.0: 2565 | version "1.1.2" 2566 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2567 | dependencies: 2568 | graceful-fs "^4.1.4" 2569 | mkdirp "^0.5.1" 2570 | object-assign "^4.1.0" 2571 | 2572 | p-finally@^1.0.0: 2573 | version "1.0.0" 2574 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2575 | 2576 | p-limit@^1.1.0: 2577 | version "1.1.0" 2578 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2579 | 2580 | p-locate@^2.0.0: 2581 | version "2.0.0" 2582 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2583 | dependencies: 2584 | p-limit "^1.1.0" 2585 | 2586 | p-map@^1.1.1: 2587 | version "1.1.1" 2588 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 2589 | 2590 | parse-glob@^3.0.4: 2591 | version "3.0.4" 2592 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2593 | dependencies: 2594 | glob-base "^0.3.0" 2595 | is-dotfile "^1.0.0" 2596 | is-extglob "^1.0.0" 2597 | is-glob "^2.0.0" 2598 | 2599 | parse-json@^2.2.0: 2600 | version "2.2.0" 2601 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2602 | dependencies: 2603 | error-ex "^1.2.0" 2604 | 2605 | parse5@^1.5.1: 2606 | version "1.5.1" 2607 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2608 | 2609 | path-exists@^2.0.0: 2610 | version "2.1.0" 2611 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2612 | dependencies: 2613 | pinkie-promise "^2.0.0" 2614 | 2615 | path-exists@^3.0.0: 2616 | version "3.0.0" 2617 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2618 | 2619 | path-is-absolute@^1.0.0: 2620 | version "1.0.1" 2621 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2622 | 2623 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2624 | version "1.0.2" 2625 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2626 | 2627 | path-key@^2.0.0: 2628 | version "2.0.1" 2629 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2630 | 2631 | path-parse@^1.0.5: 2632 | version "1.0.5" 2633 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2634 | 2635 | path-type@^1.0.0: 2636 | version "1.1.0" 2637 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2638 | dependencies: 2639 | graceful-fs "^4.1.2" 2640 | pify "^2.0.0" 2641 | pinkie-promise "^2.0.0" 2642 | 2643 | performance-now@^0.2.0: 2644 | version "0.2.0" 2645 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2646 | 2647 | pify@^2.0.0, pify@^2.3.0: 2648 | version "2.3.0" 2649 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2650 | 2651 | pinkie-promise@^2.0.0: 2652 | version "2.0.1" 2653 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2654 | dependencies: 2655 | pinkie "^2.0.0" 2656 | 2657 | pinkie@^2.0.0: 2658 | version "2.0.4" 2659 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2660 | 2661 | pluralize@^4.0.0: 2662 | version "4.0.0" 2663 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762" 2664 | 2665 | postcss-value-parser@^3.3.0: 2666 | version "3.3.0" 2667 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 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 | postcss@^7.0.36: 2678 | version "7.0.36" 2679 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.36.tgz#056f8cffa939662a8f5905950c07d5285644dfcb" 2680 | dependencies: 2681 | chalk "^2.4.2" 2682 | source-map "^0.6.1" 2683 | supports-color "^6.1.0" 2684 | 2685 | prelude-ls@~1.1.2: 2686 | version "1.1.2" 2687 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2688 | 2689 | preserve@^0.2.0: 2690 | version "0.2.0" 2691 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2692 | 2693 | prettier@^1.4.4: 2694 | version "1.4.4" 2695 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.4.4.tgz#a8d1447b14c9bf67e6d420dcadd10fb9a4fad65a" 2696 | 2697 | pretty-format@^20.0.3: 2698 | version "20.0.3" 2699 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 2700 | dependencies: 2701 | ansi-regex "^2.1.1" 2702 | ansi-styles "^3.0.0" 2703 | 2704 | private@^0.1.6: 2705 | version "0.1.7" 2706 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2707 | 2708 | process-nextick-args@~1.0.6: 2709 | version "1.0.7" 2710 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2711 | 2712 | progress@^2.0.0: 2713 | version "2.0.0" 2714 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2715 | 2716 | prr@~0.0.0: 2717 | version "0.0.0" 2718 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2719 | 2720 | pseudomap@^1.0.1: 2721 | version "1.0.2" 2722 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2723 | 2724 | punycode@^1.4.1: 2725 | version "1.4.1" 2726 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2727 | 2728 | qs@~6.4.0: 2729 | version "6.4.0" 2730 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2731 | 2732 | randomatic@^1.1.3: 2733 | version "1.1.6" 2734 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2735 | dependencies: 2736 | is-number "^2.0.2" 2737 | kind-of "^3.0.2" 2738 | 2739 | rc@^1.1.7: 2740 | version "1.2.1" 2741 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2742 | dependencies: 2743 | deep-extend "~0.4.0" 2744 | ini "~1.3.0" 2745 | minimist "^1.2.0" 2746 | strip-json-comments "~2.0.1" 2747 | 2748 | read-pkg-up@^1.0.1: 2749 | version "1.0.1" 2750 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2751 | dependencies: 2752 | find-up "^1.0.0" 2753 | read-pkg "^1.0.0" 2754 | 2755 | read-pkg@^1.0.0: 2756 | version "1.1.0" 2757 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2758 | dependencies: 2759 | load-json-file "^1.0.0" 2760 | normalize-package-data "^2.3.2" 2761 | path-type "^1.0.0" 2762 | 2763 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 2764 | version "2.2.9" 2765 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 2766 | dependencies: 2767 | buffer-shims "~1.0.0" 2768 | core-util-is "~1.0.0" 2769 | inherits "~2.0.1" 2770 | isarray "~1.0.0" 2771 | process-nextick-args "~1.0.6" 2772 | string_decoder "~1.0.0" 2773 | util-deprecate "~1.0.1" 2774 | 2775 | readdirp@^2.0.0: 2776 | version "2.1.0" 2777 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2778 | dependencies: 2779 | graceful-fs "^4.1.2" 2780 | minimatch "^3.0.2" 2781 | readable-stream "^2.0.2" 2782 | set-immediate-shim "^1.0.1" 2783 | 2784 | regenerate@^1.2.1: 2785 | version "1.3.2" 2786 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2787 | 2788 | regenerator-runtime@^0.10.0: 2789 | version "0.10.5" 2790 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2791 | 2792 | regenerator-transform@0.9.11: 2793 | version "0.9.11" 2794 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 2795 | dependencies: 2796 | babel-runtime "^6.18.0" 2797 | babel-types "^6.19.0" 2798 | private "^0.1.6" 2799 | 2800 | regex-cache@^0.4.2: 2801 | version "0.4.3" 2802 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2803 | dependencies: 2804 | is-equal-shallow "^0.1.3" 2805 | is-primitive "^2.0.0" 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.6.1: 3032 | version "0.6.1" 3033 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3034 | 3035 | source-map@~0.2.0: 3036 | version "0.2.0" 3037 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3038 | dependencies: 3039 | amdefine ">=0.0.4" 3040 | 3041 | spdx-correct@~1.0.0: 3042 | version "1.0.2" 3043 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3044 | dependencies: 3045 | spdx-license-ids "^1.0.2" 3046 | 3047 | spdx-expression-parse@~1.0.0: 3048 | version "1.0.4" 3049 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3050 | 3051 | spdx-license-ids@^1.0.2: 3052 | version "1.2.2" 3053 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3054 | 3055 | sprintf-js@~1.0.2: 3056 | version "1.0.3" 3057 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3058 | 3059 | sshpk@^1.7.0: 3060 | version "1.13.0" 3061 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 3062 | dependencies: 3063 | asn1 "~0.2.3" 3064 | assert-plus "^1.0.0" 3065 | dashdash "^1.12.0" 3066 | getpass "^0.1.1" 3067 | optionalDependencies: 3068 | bcrypt-pbkdf "^1.0.0" 3069 | ecc-jsbn "~0.1.1" 3070 | jodid25519 "^1.0.0" 3071 | jsbn "~0.1.0" 3072 | tweetnacl "~0.14.0" 3073 | 3074 | staged-git-files@0.0.4: 3075 | version "0.0.4" 3076 | resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" 3077 | 3078 | stream-to-observable@^0.1.0: 3079 | version "0.1.0" 3080 | resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.1.0.tgz#45bf1d9f2d7dc09bed81f1c307c430e68b84cffe" 3081 | 3082 | string-length@^1.0.1: 3083 | version "1.0.1" 3084 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 3085 | dependencies: 3086 | strip-ansi "^3.0.0" 3087 | 3088 | string-width@^1.0.1, string-width@^1.0.2: 3089 | version "1.0.2" 3090 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3091 | dependencies: 3092 | code-point-at "^1.0.0" 3093 | is-fullwidth-code-point "^1.0.0" 3094 | strip-ansi "^3.0.0" 3095 | 3096 | string-width@^2.0.0: 3097 | version "2.0.0" 3098 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3099 | dependencies: 3100 | is-fullwidth-code-point "^2.0.0" 3101 | strip-ansi "^3.0.0" 3102 | 3103 | string_decoder@~1.0.0: 3104 | version "1.0.1" 3105 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.1.tgz#62e200f039955a6810d8df0a33ffc0f013662d98" 3106 | dependencies: 3107 | safe-buffer "^5.0.1" 3108 | 3109 | stringstream@~0.0.4: 3110 | version "0.0.5" 3111 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3112 | 3113 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3114 | version "3.0.1" 3115 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3116 | dependencies: 3117 | ansi-regex "^2.0.0" 3118 | 3119 | strip-bom@3.0.0: 3120 | version "3.0.0" 3121 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3122 | 3123 | strip-bom@^2.0.0: 3124 | version "2.0.0" 3125 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3126 | dependencies: 3127 | is-utf8 "^0.2.0" 3128 | 3129 | strip-eof@^1.0.0: 3130 | version "1.0.0" 3131 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3132 | 3133 | strip-indent@^2.0.0: 3134 | version "2.0.0" 3135 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 3136 | 3137 | strip-json-comments@~2.0.1: 3138 | version "2.0.1" 3139 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3140 | 3141 | supports-color@^2.0.0: 3142 | version "2.0.0" 3143 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3144 | 3145 | supports-color@^3.1.2, supports-color@^3.2.3: 3146 | version "3.2.3" 3147 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3148 | dependencies: 3149 | has-flag "^1.0.0" 3150 | 3151 | supports-color@^5.3.0: 3152 | version "5.5.0" 3153 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3154 | dependencies: 3155 | has-flag "^3.0.0" 3156 | 3157 | supports-color@^6.1.0: 3158 | version "6.1.0" 3159 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" 3160 | dependencies: 3161 | has-flag "^3.0.0" 3162 | 3163 | symbol-observable@^1.0.1: 3164 | version "1.0.4" 3165 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3166 | 3167 | symbol-tree@^3.2.1: 3168 | version "3.2.2" 3169 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3170 | 3171 | table@^4.0.1: 3172 | version "4.0.1" 3173 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" 3174 | dependencies: 3175 | ajv "^4.7.0" 3176 | ajv-keywords "^1.0.0" 3177 | chalk "^1.1.1" 3178 | lodash "^4.0.0" 3179 | slice-ansi "0.0.4" 3180 | string-width "^2.0.0" 3181 | 3182 | tar-pack@^3.4.0: 3183 | version "3.4.0" 3184 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3185 | dependencies: 3186 | debug "^2.2.0" 3187 | fstream "^1.0.10" 3188 | fstream-ignore "^1.0.5" 3189 | once "^1.3.3" 3190 | readable-stream "^2.1.4" 3191 | rimraf "^2.5.1" 3192 | tar "^2.2.1" 3193 | uid-number "^0.0.6" 3194 | 3195 | tar@^2.2.1: 3196 | version "2.2.1" 3197 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3198 | dependencies: 3199 | block-stream "*" 3200 | fstream "^1.0.2" 3201 | inherits "2" 3202 | 3203 | test-exclude@^4.1.0: 3204 | version "4.1.0" 3205 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.0.tgz#04ca70b7390dd38c98d4a003a173806ca7991c91" 3206 | dependencies: 3207 | arrify "^1.0.1" 3208 | micromatch "^2.3.11" 3209 | object-assign "^4.1.0" 3210 | read-pkg-up "^1.0.1" 3211 | require-main-filename "^1.0.1" 3212 | 3213 | text-table@~0.2.0: 3214 | version "0.2.0" 3215 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3216 | 3217 | throat@^3.0.0: 3218 | version "3.0.0" 3219 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 3220 | 3221 | through@^2.3.6: 3222 | version "2.3.8" 3223 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3224 | 3225 | tmp@^0.0.31: 3226 | version "0.0.31" 3227 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 3228 | dependencies: 3229 | os-tmpdir "~1.0.1" 3230 | 3231 | tmpl@1.0.x: 3232 | version "1.0.4" 3233 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3234 | 3235 | to-fast-properties@^1.0.1: 3236 | version "1.0.3" 3237 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3238 | 3239 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3240 | version "2.3.2" 3241 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3242 | dependencies: 3243 | punycode "^1.4.1" 3244 | 3245 | tr46@~0.0.3: 3246 | version "0.0.3" 3247 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3248 | 3249 | trim-right@^1.0.1: 3250 | version "1.0.1" 3251 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3252 | 3253 | tryit@^1.0.1: 3254 | version "1.0.3" 3255 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3256 | 3257 | tunnel-agent@^0.6.0: 3258 | version "0.6.0" 3259 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3260 | dependencies: 3261 | safe-buffer "^5.0.1" 3262 | 3263 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3264 | version "0.14.5" 3265 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3266 | 3267 | type-check@~0.3.2: 3268 | version "0.3.2" 3269 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3270 | dependencies: 3271 | prelude-ls "~1.1.2" 3272 | 3273 | typedarray@^0.0.6: 3274 | version "0.0.6" 3275 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3276 | 3277 | uglify-js@^2.6: 3278 | version "2.8.27" 3279 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.27.tgz#47787f912b0f242e5b984343be8e35e95f694c9c" 3280 | dependencies: 3281 | source-map "~0.5.1" 3282 | yargs "~3.10.0" 3283 | optionalDependencies: 3284 | uglify-to-browserify "~1.0.0" 3285 | 3286 | uglify-to-browserify@~1.0.0: 3287 | version "1.0.2" 3288 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3289 | 3290 | uid-number@^0.0.6: 3291 | version "0.0.6" 3292 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3293 | 3294 | user-home@^1.1.1: 3295 | version "1.1.1" 3296 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3297 | 3298 | util-deprecate@~1.0.1: 3299 | version "1.0.2" 3300 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3301 | 3302 | uuid@^3.0.0: 3303 | version "3.0.1" 3304 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3305 | 3306 | v8flags@^2.0.10: 3307 | version "2.1.1" 3308 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3309 | dependencies: 3310 | user-home "^1.1.1" 3311 | 3312 | validate-npm-package-license@^3.0.1: 3313 | version "3.0.1" 3314 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3315 | dependencies: 3316 | spdx-correct "~1.0.0" 3317 | spdx-expression-parse "~1.0.0" 3318 | 3319 | verror@1.3.6: 3320 | version "1.3.6" 3321 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3322 | dependencies: 3323 | extsprintf "1.0.2" 3324 | 3325 | walker@~1.0.5: 3326 | version "1.0.7" 3327 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3328 | dependencies: 3329 | makeerror "1.0.x" 3330 | 3331 | watch@~0.10.0: 3332 | version "0.10.0" 3333 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3334 | 3335 | webidl-conversions@^3.0.0: 3336 | version "3.0.1" 3337 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3338 | 3339 | webidl-conversions@^4.0.0: 3340 | version "4.0.1" 3341 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 3342 | 3343 | whatwg-encoding@^1.0.1: 3344 | version "1.0.1" 3345 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3346 | dependencies: 3347 | iconv-lite "0.4.13" 3348 | 3349 | whatwg-url@^4.3.0: 3350 | version "4.8.0" 3351 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 3352 | dependencies: 3353 | tr46 "~0.0.3" 3354 | webidl-conversions "^3.0.0" 3355 | 3356 | which-module@^1.0.0: 3357 | version "1.0.0" 3358 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3359 | 3360 | which@^1.2.10, which@^1.2.12, which@^1.2.9: 3361 | version "1.2.14" 3362 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3363 | dependencies: 3364 | isexe "^2.0.0" 3365 | 3366 | wide-align@^1.1.0: 3367 | version "1.1.2" 3368 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3369 | dependencies: 3370 | string-width "^1.0.2" 3371 | 3372 | window-size@0.1.0: 3373 | version "0.1.0" 3374 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3375 | 3376 | wordwrap@0.0.2: 3377 | version "0.0.2" 3378 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3379 | 3380 | wordwrap@~0.0.2: 3381 | version "0.0.3" 3382 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3383 | 3384 | wordwrap@~1.0.0: 3385 | version "1.0.0" 3386 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3387 | 3388 | worker-farm@^1.3.1: 3389 | version "1.3.1" 3390 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 3391 | dependencies: 3392 | errno ">=0.1.1 <0.2.0-0" 3393 | xtend ">=4.0.0 <4.1.0-0" 3394 | 3395 | wrap-ansi@^2.0.0: 3396 | version "2.1.0" 3397 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3398 | dependencies: 3399 | string-width "^1.0.1" 3400 | strip-ansi "^3.0.1" 3401 | 3402 | wrappy@1: 3403 | version "1.0.2" 3404 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3405 | 3406 | write@^0.2.1: 3407 | version "0.2.1" 3408 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3409 | dependencies: 3410 | mkdirp "^0.5.1" 3411 | 3412 | xml-name-validator@^2.0.1: 3413 | version "2.0.1" 3414 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3415 | 3416 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0: 3417 | version "4.0.2" 3418 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 3419 | 3420 | y18n@^3.2.1: 3421 | version "3.2.1" 3422 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3423 | 3424 | yallist@^2.0.0: 3425 | version "2.1.2" 3426 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3427 | 3428 | yargs-parser@^5.0.0: 3429 | version "5.0.0" 3430 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 3431 | dependencies: 3432 | camelcase "^3.0.0" 3433 | 3434 | yargs@^7.0.2: 3435 | version "7.1.0" 3436 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 3437 | dependencies: 3438 | camelcase "^3.0.0" 3439 | cliui "^3.2.0" 3440 | decamelize "^1.1.1" 3441 | get-caller-file "^1.0.1" 3442 | os-locale "^1.4.0" 3443 | read-pkg-up "^1.0.1" 3444 | require-directory "^2.1.1" 3445 | require-main-filename "^1.0.1" 3446 | set-blocking "^2.0.0" 3447 | string-width "^1.0.2" 3448 | which-module "^1.0.0" 3449 | y18n "^3.2.1" 3450 | yargs-parser "^5.0.0" 3451 | 3452 | yargs@~3.10.0: 3453 | version "3.10.0" 3454 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3455 | dependencies: 3456 | camelcase "^1.0.2" 3457 | cliui "^2.1.0" 3458 | decamelize "^1.0.0" 3459 | window-size "0.1.0" 3460 | --------------------------------------------------------------------------------