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