├── .babelrc ├── .vscode └── launch.json ├── package.json ├── LICENSE ├── .gitignore ├── readme.md ├── immer.js ├── __tests__ └── base.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["env", { 4 | "targets": { 5 | "node": "6" 6 | } 7 | }] 8 | ] 9 | } -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | // Note; this config requires node 8.4 or higher 9 | "type": "node", 10 | "protocol": "inspector", 11 | "request": "launch", 12 | "name": "debug unit test", 13 | "stopOnEntry": false, 14 | "program": "${workspaceRoot}/node_modules/jest-cli/bin/jest.js", 15 | "args": ["-i", "${file}"], 16 | "runtimeArgs": [ 17 | "--nolazy" 18 | ] 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "immer", 3 | "version": "0.0.2", 4 | "description": "Create your next immutable state by mutating the current one", 5 | "main": "immer.js", 6 | "scripts": { 7 | "test": "jest" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/mweststrate/immer.git" 12 | }, 13 | "keywords": [ 14 | "immutable", 15 | "mutable", 16 | "copy-on-write" 17 | ], 18 | "author": "Michel Weststrate", 19 | "license": "MIT", 20 | "bugs": { 21 | "url": "https://github.com/mweststrate/immer/issues" 22 | }, 23 | "homepage": "https://github.com/mweststrate/immer#readme", 24 | "files": [ 25 | "immer.js" 26 | ], 27 | "dependencies": {}, 28 | "devDependencies": { 29 | "@types/jest": "^22.0.0", 30 | "babel-core": "^6.26.0", 31 | "babel-jest": "^22.0.4", 32 | "babel-preset-env": "^1.6.1", 33 | "jest": "^22.0.4", 34 | "regenerator-runtime": "^0.11.1", 35 | "typescript": "^2.6.2" 36 | }, 37 | "jest": { 38 | "transform": { 39 | "^.+\\.jsx?$": "babel-jest" 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Michel Weststrate 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Immer 2 | 3 | Immer (German for: always) is a tiny package that allows you work with immutable state in a more convenient way. 4 | It is based on [_copy-on-write_](https://en.wikipedia.org/wiki/Copy-on-write) mechanism. 5 | 6 | The basic idea is that you will modify (a proxy of) the current state, and once that is completed, the copy will be finalized and form the next state. 7 | As soon as a piece of the state is modified, it is copied. That is what one typically does by hand (in for example Redux reducers). 8 | 9 | _This means that you can interact with your data by using mutations, will keeping all the benefits of immutable data_ 10 | 11 | The immer package exposes a single function: 12 | 13 | `immer(currentState, fn: (state) => void): nextState` 14 | 15 | ## Example 16 | 17 | ```javascript 18 | const baseState = [ 19 | { 20 | todo: "Learn typescript", 21 | done: true 22 | }, 23 | { 24 | todo: "Try immer", 25 | done: false 26 | } 27 | ] 28 | 29 | const nextState = immer(baseState, state => { 30 | state.push({ todo: "Tweet about it" }) 31 | state[1].done = true 32 | }) 33 | ``` 34 | 35 | The interesting thing about `immer` is that `baseState` will be untouched, but that `nextState` will reflect all changes made to `state`. 36 | 37 | ```javascript 38 | // the new item is only added to the next state, 39 | // base state is unmodified 40 | expect(baseState.length).toBe(2) 41 | expect(nextState.length).toBe(3) 42 | 43 | // same for the changed 'done' prop 44 | expect(baseState[1].done).toBe(false) 45 | expect(nextState[1].done).toBe(true) 46 | 47 | // unchanged data is structurally shared 48 | expect(nextState[0]).toBe(baseState[0]) 49 | // changed data not (dûh) 50 | expect(nextState[1]).not.toBe(baseState[1]) 51 | ``` 52 | 53 | ## Reducer Example 54 | 55 | A lot of words; here is a simple example of what difference that could make in practice. 56 | The todo reducers from the official Redux [todos-with-undo example](https://codesandbox.io/s/github/reactjs/redux/tree/master/examples/todos-with-undo) 57 | 58 | ```javascript 59 | const todo = (state, action) => { 60 | switch (action.type) { 61 | case 'ADD_TODO': 62 | return { 63 | id: action.id, 64 | text: action.text, 65 | completed: false 66 | } 67 | case 'TOGGLE_TODO': 68 | if (state.id !== action.id) { 69 | return state 70 | } 71 | 72 | return { 73 | ...state, 74 | completed: !state.completed 75 | } 76 | default: 77 | return state 78 | } 79 | } 80 | 81 | const todos = (state = [], action) => { 82 | switch (action.type) { 83 | case 'ADD_TODO': 84 | return [ 85 | ...state, 86 | todo(undefined, action) 87 | ] 88 | case 'TOGGLE_TODO': 89 | return state.map(t => 90 | todo(t, action) 91 | ) 92 | default: 93 | return state 94 | } 95 | } 96 | ``` 97 | 98 | After using immer, that simply [becomes](https://codesandbox.io/s/xl11qpo9mp): 99 | 100 | ```javascript 101 | import immer from 'immer' 102 | 103 | const todos = (state = [], action) => 104 | immer(state, state => { 105 | switch (action.type) { 106 | case 'ADD_TODO': 107 | state.push({ 108 | id: action.id, 109 | text: action.text, 110 | completed: false 111 | }) 112 | return 113 | case 'TOGGLE_TODO': 114 | const todo = state.find(todo => todo.id === action.id) 115 | todo.completed = !todo.completed 116 | return 117 | } 118 | }) 119 | ``` 120 | 121 | Creating middleware or reducer wrapper that applies `immer` automatically is left as exercise to the reader :-). 122 | 123 | ## Limitations 124 | 125 | * This package requires Proxies, so Safari > 10, no Internet Explorer 126 | * Currently only tree shaped states are supported. Cycles could potentially be supported as well (PR's welcome) 127 | * Currently only supports plain objects and arrays. Non-plain data structures (like `Map`, `Set`) not (yet). (PR's welcome) 128 | 129 | ## Pitfalls: 130 | 131 | * Make sure to modify the state you get passed in in the callback function, not the original base state that was passed as first argument to `immer`! -------------------------------------------------------------------------------- /immer.js: -------------------------------------------------------------------------------- 1 | // @ts-check 2 | 3 | const isProxySymbol = Symbol("immer-proxy") 4 | 5 | /** 6 | * Immer takes a state, and runs a function agains it. 7 | * That function can freely mutate the state, as it will create copies-on-write. 8 | * This means that the original state will stay unchanged, and once the function finishes, the modified state is returned 9 | * 10 | * @export 11 | * @param {any} baseState - the state to start with 12 | * @param {Function} thunk - function that receives a proxy of the base state as first argument and which can be freely modified 13 | * @returns {any} a new state, or the base state if nothing was modified 14 | */ 15 | function immer(baseState, thunk) { 16 | // Maps baseState objects to proxies 17 | const proxies = new Map() 18 | // Maps baseState objects to their copies 19 | const copies = new Map() 20 | 21 | const objectTraps = { 22 | get(target, prop) { 23 | if (prop === isProxySymbol) return target 24 | return createProxy(getCurrentSource(target)[prop]) 25 | }, 26 | has(target, prop) { 27 | return prop in getCurrentSource(target) 28 | }, 29 | ownKeys(target) { 30 | return Reflect.ownKeys(getCurrentSource(target)) 31 | }, 32 | set(target, prop, value) { 33 | const current = createProxy(getCurrentSource(target)[prop]) 34 | const newValue = createProxy(value) 35 | if (current !== newValue) { 36 | const copy = getOrCreateCopy(target) 37 | copy[prop] = isProxy(newValue) ? newValue[isProxySymbol] : newValue 38 | } 39 | return true 40 | }, 41 | deleteProperty(target, property) { 42 | const copy = getOrCreateCopy(target) 43 | delete copy[property] 44 | return true 45 | } 46 | } 47 | 48 | // creates a copy for a base object if there ain't one 49 | function getOrCreateCopy(base) { 50 | let copy = copies.get(base) 51 | if (!copy) { 52 | copy = Array.isArray(base) ? base.slice() : Object.assign({}, base) 53 | copies.set(base, copy) 54 | } 55 | return copy 56 | } 57 | 58 | // returns the current source of trugth for a base object 59 | function getCurrentSource(base) { 60 | const copy = copies.get(base) 61 | return copy || base 62 | } 63 | 64 | // creates a proxy for plain objects / arrays 65 | function createProxy(base) { 66 | if (isPlainObject(base) || Array.isArray(base)) { 67 | if (isProxy(base)) return base // avoid double wrapping 68 | if (proxies.has(base)) return proxies.get(base) 69 | const proxy = new Proxy(base, objectTraps) 70 | proxies.set(base, proxy) 71 | return proxy 72 | } 73 | return base 74 | } 75 | 76 | // checks if the given base object has modifications, either because it is modified, or 77 | // because one of it's children is 78 | function hasChanges(base) { 79 | const proxy = proxies.get(base) 80 | if (!proxy) return false // nobody did read this object 81 | if (copies.has(base)) return true // a copy was created, so there are changes 82 | // look deeper 83 | const keys = Object.keys(base) 84 | for (let i = 0; i < keys.length; i++) { 85 | const value = base[keys[i]] 86 | if ((Array.isArray(value) || isPlainObject(value)) && hasChanges(value)) return true 87 | } 88 | return false 89 | } 90 | 91 | // given a base object, returns it if unmodified, or return the changed cloned if modified 92 | function finalize(base) { 93 | if (isPlainObject(base)) return finalizeObject(base) 94 | if (Array.isArray(base)) return finalizeArray(base) 95 | return base 96 | } 97 | 98 | function finalizeObject(thing) { 99 | if (!hasChanges(thing)) return thing 100 | const copy = getOrCreateCopy(thing) 101 | Object.keys(copy).forEach(prop => { 102 | copy[prop] = finalize(copy[prop]) 103 | }) 104 | return copy 105 | } 106 | 107 | function finalizeArray(thing) { 108 | if (!hasChanges(thing)) return thing 109 | const copy = getOrCreateCopy(thing) 110 | copy.forEach((value, index) => { 111 | copy[index] = finalize(copy[index]) 112 | }) 113 | return copy 114 | } 115 | 116 | // create proxy for root 117 | const rootClone = createProxy(baseState) 118 | // execute the thunk 119 | thunk(rootClone) 120 | // and finalize the modified proxy 121 | return finalize(baseState) 122 | } 123 | 124 | function isPlainObject(value) { 125 | if (value === null || typeof value !== "object") return false 126 | const proto = Object.getPrototypeOf(value) 127 | return proto === Object.prototype || proto === null 128 | } 129 | 130 | function isProxy(value) { 131 | return !!value[isProxySymbol] 132 | } 133 | 134 | module.exports = immer 135 | -------------------------------------------------------------------------------- /__tests__/base.js: -------------------------------------------------------------------------------- 1 | import immer from ".." 2 | 3 | describe("base", () => { 4 | let baseState 5 | let origBaseState 6 | 7 | beforeEach(() => { 8 | origBaseState = baseState = createBaseState() 9 | }) 10 | 11 | it("should return the original without modifications", () => { 12 | const nextState = immer(baseState, () => {}) 13 | expect(nextState).toBe(baseState) 14 | }) 15 | 16 | it("should return the original without modifications when reading stuff", () => { 17 | const nextState = immer(baseState, s => { 18 | expect(s.aProp).toBe("hi") 19 | expect(s.anObject.nested).toEqual({ yummie: true }) 20 | }) 21 | expect(nextState).toBe(baseState) 22 | }) 23 | 24 | it("should return a copy when modifying stuff", () => { 25 | const nextState = immer(baseState, s => { 26 | s.aProp = "hello world" 27 | }) 28 | expect(nextState).not.toBe(baseState) 29 | expect(baseState.aProp).toBe("hi") 30 | expect(nextState.aProp).toBe("hello world") 31 | // structural sharing? 32 | expect(nextState.nested).toBe(baseState.nested) 33 | }) 34 | 35 | it("deep change bubbles up", () => { 36 | const nextState = immer(baseState, s => { 37 | s.anObject.nested.yummie = false 38 | }) 39 | expect(nextState).not.toBe(baseState) 40 | expect(nextState.anObject).not.toBe(baseState.anObject) 41 | expect(baseState.anObject.nested.yummie).toBe(true) 42 | expect(nextState.anObject.nested.yummie).toBe(false) 43 | expect(nextState.anArray).toBe(baseState.anArray) 44 | }) 45 | 46 | it("can add props", () => { 47 | const nextState = immer(baseState, s => { 48 | s.anObject.cookie = { tasty: true } 49 | }) 50 | expect(nextState).not.toBe(baseState) 51 | expect(nextState.anObject).not.toBe(baseState.anObject) 52 | expect(nextState.anObject.nested).toBe(baseState.anObject.nested) 53 | expect(nextState.anObject.cookie).toEqual({ tasty: true }) 54 | }) 55 | 56 | it("can delete props", () => { 57 | const nextState = immer(baseState, s => { 58 | delete s.anObject.nested 59 | }) 60 | expect(nextState).not.toBe(baseState) 61 | expect(nextState.anObject).not.toBe(baseState.anObject) 62 | expect(nextState.anObject.nested).toBe(undefined) 63 | }) 64 | 65 | it("ignores single non-modification", () => { 66 | const nextState = immer(baseState, s => { 67 | s.aProp = "hi" 68 | }) 69 | expect(nextState).toBe(baseState) 70 | }) 71 | 72 | it("processes single modification", () => { 73 | const nextState = immer(baseState, s => { 74 | s.aProp = "hello" 75 | s.aProp = "hi" 76 | }) 77 | expect(nextState).not.toBe(baseState) 78 | expect(nextState).toEqual(baseState) 79 | }) 80 | 81 | it("should support reading arrays", () => { 82 | const nextState = immer(baseState, s => { 83 | s.anArray.slice() 84 | }) 85 | expect(nextState.anArray).toBe(baseState.anArray) 86 | expect(nextState).toBe(baseState) 87 | }) 88 | 89 | it("should support changing arrays", () => { 90 | const nextState = immer(baseState, s => { 91 | s.anArray[3] = true 92 | }) 93 | expect(nextState).not.toBe(baseState) 94 | expect(nextState.anArray).not.toBe(baseState.anArray) 95 | expect(nextState.anArray[3]).toEqual(true) 96 | }) 97 | 98 | it("should support changing arrays - 2", () => { 99 | const nextState = immer(baseState, s => { 100 | s.anArray.splice(1, 1, "a", "b") 101 | }) 102 | expect(nextState).not.toBe(baseState) 103 | expect(nextState.anArray).not.toBe(baseState.anArray) 104 | 105 | expect(nextState.anArray).toEqual([3, "a", "b", { c: 3 }, 1]) 106 | }) 107 | 108 | it("should support sorting arrays", () => { 109 | const nextState = immer(baseState, s => { 110 | s.anArray[2].c = 4 111 | s.anArray.sort() 112 | s.anArray[3].c = 5 113 | }) 114 | expect(nextState).not.toBe(baseState) 115 | expect(nextState.anArray).not.toBe(baseState.anArray) 116 | expect(nextState.anArray).toEqual([1, 2, 3, { c: 5 }]) 117 | }) 118 | 119 | it("should updating inside arrays", () => { 120 | const nextState = immer(baseState, s => { 121 | s.anArray[2].test = true 122 | }) 123 | expect(nextState).not.toBe(baseState) 124 | expect(nextState.anArray).not.toBe(baseState.anArray) 125 | expect(nextState.anArray).toEqual([3, 2, { c: 3, test: true }, 1]) 126 | }) 127 | 128 | it("reusing object should work", () => { 129 | const nextState = immer(baseState, s => { 130 | debugger 131 | const obj = s.anObject 132 | delete s.anObject 133 | s.messy = obj 134 | }) 135 | expect(nextState).not.toBe(baseState) 136 | expect(nextState.anArray).toBe(baseState.anArray) 137 | expect(nextState).toEqual({ 138 | anArray: [3, 2, { c: 3 }, 1], 139 | aProp: "hi", 140 | messy: { 141 | nested: { 142 | yummie: true 143 | }, 144 | coffee: false 145 | } 146 | }) 147 | expect(nextState.messy.nested).toBe(baseState.anObject.nested) 148 | }) 149 | 150 | it("refs should be transparent", () => { 151 | const nextState = immer(baseState, s => { 152 | const obj = s.anObject 153 | s.aProp = "hello" 154 | delete s.anObject 155 | obj.coffee = true 156 | s.messy = obj 157 | }) 158 | expect(nextState).not.toBe(baseState) 159 | expect(nextState.anArray).toBe(baseState.anArray) 160 | expect(nextState).toEqual({ 161 | anArray: [3, 2, { c: 3 }, 1], 162 | aProp: "hello", 163 | messy: { 164 | nested: { 165 | yummie: true 166 | }, 167 | coffee: true 168 | } 169 | }) 170 | expect(nextState.messy.nested).toBe(baseState.anObject.nested) 171 | }) 172 | 173 | afterEach(() => { 174 | expect(baseState).toBe(origBaseState) 175 | expect(baseState).toEqual(createBaseState()) 176 | }) 177 | 178 | function createBaseState() { 179 | return { 180 | anArray: [3, 2, { c: 3 }, 1], 181 | aProp: "hi", 182 | anObject: { 183 | nested: { 184 | yummie: true 185 | }, 186 | coffee: false 187 | } 188 | } 189 | } 190 | }) 191 | 192 | describe("readme example", () => { 193 | it("works", () => { 194 | const baseState = [ 195 | { 196 | todo: "Learn typescript", 197 | done: true 198 | }, 199 | { 200 | todo: "Try immer", 201 | done: false 202 | } 203 | ] 204 | 205 | const nextState = immer(baseState, state => { 206 | state.push({ todo: "Tweet about it" }) 207 | state[1].done = true 208 | }) 209 | 210 | // the new item is only added to the next state, 211 | // base state is unmodified 212 | expect(baseState.length).toBe(2) 213 | expect(nextState.length).toBe(3) 214 | 215 | // same for the changed 'done' prop 216 | expect(baseState[1].done).toBe(false) 217 | expect(nextState[1].done).toBe(true) 218 | 219 | // unchanged data is structurally shared 220 | expect(nextState[0]).toBe(baseState[0]) 221 | // changed data not (dûh) 222 | expect(nextState[1]).not.toBe(baseState[1]) 223 | }) 224 | }) 225 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0-beta.35": 6 | version "7.0.0-beta.36" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.36.tgz#2349d7ec04b3a06945ae173280ef8579b63728e4" 8 | dependencies: 9 | chalk "^2.0.0" 10 | esutils "^2.0.2" 11 | js-tokens "^3.0.0" 12 | 13 | "@types/jest@^22.0.0": 14 | version "22.0.0" 15 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-22.0.0.tgz#23009941178aad7979a9591e026f7a96054d7bc0" 16 | 17 | "@types/node@*": 18 | version "8.5.2" 19 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.5.2.tgz#83b8103fa9a2c2e83d78f701a9aa7c9539739aa5" 20 | 21 | abab@^1.0.3: 22 | version "1.0.4" 23 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 24 | 25 | abbrev@1: 26 | version "1.1.1" 27 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 28 | 29 | acorn-globals@^4.0.0: 30 | version "4.1.0" 31 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538" 32 | dependencies: 33 | acorn "^5.0.0" 34 | 35 | acorn@^5.0.0, acorn@^5.1.2: 36 | version "5.3.0" 37 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.3.0.tgz#7446d39459c54fb49a80e6ee6478149b940ec822" 38 | 39 | ajv@^4.9.1: 40 | version "4.11.8" 41 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 42 | dependencies: 43 | co "^4.6.0" 44 | json-stable-stringify "^1.0.1" 45 | 46 | ajv@^5.1.0: 47 | version "5.5.2" 48 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 49 | dependencies: 50 | co "^4.6.0" 51 | fast-deep-equal "^1.0.0" 52 | fast-json-stable-stringify "^2.0.0" 53 | json-schema-traverse "^0.3.0" 54 | 55 | align-text@^0.1.1, align-text@^0.1.3: 56 | version "0.1.4" 57 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 58 | dependencies: 59 | kind-of "^3.0.2" 60 | longest "^1.0.1" 61 | repeat-string "^1.5.2" 62 | 63 | amdefine@>=0.0.4: 64 | version "1.0.1" 65 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 66 | 67 | ansi-escapes@^3.0.0: 68 | version "3.0.0" 69 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 70 | 71 | ansi-regex@^2.0.0: 72 | version "2.1.1" 73 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 74 | 75 | ansi-regex@^3.0.0: 76 | version "3.0.0" 77 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 78 | 79 | ansi-styles@^2.2.1: 80 | version "2.2.1" 81 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 82 | 83 | ansi-styles@^3.1.0, ansi-styles@^3.2.0: 84 | version "3.2.0" 85 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 86 | dependencies: 87 | color-convert "^1.9.0" 88 | 89 | anymatch@^1.3.0: 90 | version "1.3.2" 91 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 92 | dependencies: 93 | micromatch "^2.1.5" 94 | normalize-path "^2.0.0" 95 | 96 | append-transform@^0.4.0: 97 | version "0.4.0" 98 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 99 | dependencies: 100 | default-require-extensions "^1.0.0" 101 | 102 | aproba@^1.0.3: 103 | version "1.2.0" 104 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 105 | 106 | are-we-there-yet@~1.1.2: 107 | version "1.1.4" 108 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 109 | dependencies: 110 | delegates "^1.0.0" 111 | readable-stream "^2.0.6" 112 | 113 | argparse@^1.0.7: 114 | version "1.0.9" 115 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 116 | dependencies: 117 | sprintf-js "~1.0.2" 118 | 119 | arr-diff@^2.0.0: 120 | version "2.0.0" 121 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 122 | dependencies: 123 | arr-flatten "^1.0.1" 124 | 125 | arr-flatten@^1.0.1: 126 | version "1.1.0" 127 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 128 | 129 | array-equal@^1.0.0: 130 | version "1.0.0" 131 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 132 | 133 | array-unique@^0.2.1: 134 | version "0.2.1" 135 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 136 | 137 | arrify@^1.0.1: 138 | version "1.0.1" 139 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 140 | 141 | asn1@~0.2.3: 142 | version "0.2.3" 143 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 144 | 145 | assert-plus@1.0.0, assert-plus@^1.0.0: 146 | version "1.0.0" 147 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 148 | 149 | assert-plus@^0.2.0: 150 | version "0.2.0" 151 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 152 | 153 | astral-regex@^1.0.0: 154 | version "1.0.0" 155 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 156 | 157 | async@^1.4.0: 158 | version "1.5.2" 159 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 160 | 161 | async@^2.1.4: 162 | version "2.6.0" 163 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 164 | dependencies: 165 | lodash "^4.14.0" 166 | 167 | asynckit@^0.4.0: 168 | version "0.4.0" 169 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 170 | 171 | aws-sign2@~0.6.0: 172 | version "0.6.0" 173 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 174 | 175 | aws-sign2@~0.7.0: 176 | version "0.7.0" 177 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 178 | 179 | aws4@^1.2.1, aws4@^1.6.0: 180 | version "1.6.0" 181 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 182 | 183 | babel-code-frame@^6.26.0: 184 | version "6.26.0" 185 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 186 | dependencies: 187 | chalk "^1.1.3" 188 | esutils "^2.0.2" 189 | js-tokens "^3.0.2" 190 | 191 | babel-core@^6.0.0, babel-core@^6.26.0: 192 | version "6.26.0" 193 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 194 | dependencies: 195 | babel-code-frame "^6.26.0" 196 | babel-generator "^6.26.0" 197 | babel-helpers "^6.24.1" 198 | babel-messages "^6.23.0" 199 | babel-register "^6.26.0" 200 | babel-runtime "^6.26.0" 201 | babel-template "^6.26.0" 202 | babel-traverse "^6.26.0" 203 | babel-types "^6.26.0" 204 | babylon "^6.18.0" 205 | convert-source-map "^1.5.0" 206 | debug "^2.6.8" 207 | json5 "^0.5.1" 208 | lodash "^4.17.4" 209 | minimatch "^3.0.4" 210 | path-is-absolute "^1.0.1" 211 | private "^0.1.7" 212 | slash "^1.0.0" 213 | source-map "^0.5.6" 214 | 215 | babel-generator@^6.18.0, babel-generator@^6.26.0: 216 | version "6.26.0" 217 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 218 | dependencies: 219 | babel-messages "^6.23.0" 220 | babel-runtime "^6.26.0" 221 | babel-types "^6.26.0" 222 | detect-indent "^4.0.0" 223 | jsesc "^1.3.0" 224 | lodash "^4.17.4" 225 | source-map "^0.5.6" 226 | trim-right "^1.0.1" 227 | 228 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 229 | version "6.24.1" 230 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 231 | dependencies: 232 | babel-helper-explode-assignable-expression "^6.24.1" 233 | babel-runtime "^6.22.0" 234 | babel-types "^6.24.1" 235 | 236 | babel-helper-call-delegate@^6.24.1: 237 | version "6.24.1" 238 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 239 | dependencies: 240 | babel-helper-hoist-variables "^6.24.1" 241 | babel-runtime "^6.22.0" 242 | babel-traverse "^6.24.1" 243 | babel-types "^6.24.1" 244 | 245 | babel-helper-define-map@^6.24.1: 246 | version "6.26.0" 247 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 248 | dependencies: 249 | babel-helper-function-name "^6.24.1" 250 | babel-runtime "^6.26.0" 251 | babel-types "^6.26.0" 252 | lodash "^4.17.4" 253 | 254 | babel-helper-explode-assignable-expression@^6.24.1: 255 | version "6.24.1" 256 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 257 | dependencies: 258 | babel-runtime "^6.22.0" 259 | babel-traverse "^6.24.1" 260 | babel-types "^6.24.1" 261 | 262 | babel-helper-function-name@^6.24.1: 263 | version "6.24.1" 264 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 265 | dependencies: 266 | babel-helper-get-function-arity "^6.24.1" 267 | babel-runtime "^6.22.0" 268 | babel-template "^6.24.1" 269 | babel-traverse "^6.24.1" 270 | babel-types "^6.24.1" 271 | 272 | babel-helper-get-function-arity@^6.24.1: 273 | version "6.24.1" 274 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 275 | dependencies: 276 | babel-runtime "^6.22.0" 277 | babel-types "^6.24.1" 278 | 279 | babel-helper-hoist-variables@^6.24.1: 280 | version "6.24.1" 281 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 282 | dependencies: 283 | babel-runtime "^6.22.0" 284 | babel-types "^6.24.1" 285 | 286 | babel-helper-optimise-call-expression@^6.24.1: 287 | version "6.24.1" 288 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 289 | dependencies: 290 | babel-runtime "^6.22.0" 291 | babel-types "^6.24.1" 292 | 293 | babel-helper-regex@^6.24.1: 294 | version "6.26.0" 295 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 296 | dependencies: 297 | babel-runtime "^6.26.0" 298 | babel-types "^6.26.0" 299 | lodash "^4.17.4" 300 | 301 | babel-helper-remap-async-to-generator@^6.24.1: 302 | version "6.24.1" 303 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 304 | dependencies: 305 | babel-helper-function-name "^6.24.1" 306 | babel-runtime "^6.22.0" 307 | babel-template "^6.24.1" 308 | babel-traverse "^6.24.1" 309 | babel-types "^6.24.1" 310 | 311 | babel-helper-replace-supers@^6.24.1: 312 | version "6.24.1" 313 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 314 | dependencies: 315 | babel-helper-optimise-call-expression "^6.24.1" 316 | babel-messages "^6.23.0" 317 | babel-runtime "^6.22.0" 318 | babel-template "^6.24.1" 319 | babel-traverse "^6.24.1" 320 | babel-types "^6.24.1" 321 | 322 | babel-helpers@^6.24.1: 323 | version "6.24.1" 324 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 325 | dependencies: 326 | babel-runtime "^6.22.0" 327 | babel-template "^6.24.1" 328 | 329 | babel-jest@^22.0.4: 330 | version "22.0.4" 331 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-22.0.4.tgz#533c46de37d7c9d7612f408c76314be9277e0c26" 332 | dependencies: 333 | babel-plugin-istanbul "^4.1.5" 334 | babel-preset-jest "^22.0.3" 335 | 336 | babel-messages@^6.23.0: 337 | version "6.23.0" 338 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 339 | dependencies: 340 | babel-runtime "^6.22.0" 341 | 342 | babel-plugin-check-es2015-constants@^6.22.0: 343 | version "6.22.0" 344 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 345 | dependencies: 346 | babel-runtime "^6.22.0" 347 | 348 | babel-plugin-istanbul@^4.1.5: 349 | version "4.1.5" 350 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" 351 | dependencies: 352 | find-up "^2.1.0" 353 | istanbul-lib-instrument "^1.7.5" 354 | test-exclude "^4.1.1" 355 | 356 | babel-plugin-jest-hoist@^22.0.3: 357 | version "22.0.3" 358 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-22.0.3.tgz#62cde5fe962fd41ae89c119f481ca5cd7dd48bb4" 359 | 360 | babel-plugin-syntax-async-functions@^6.8.0: 361 | version "6.13.0" 362 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 363 | 364 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 365 | version "6.13.0" 366 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 367 | 368 | babel-plugin-syntax-object-rest-spread@^6.13.0: 369 | version "6.13.0" 370 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 371 | 372 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 373 | version "6.22.0" 374 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 375 | 376 | babel-plugin-transform-async-to-generator@^6.22.0: 377 | version "6.24.1" 378 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 379 | dependencies: 380 | babel-helper-remap-async-to-generator "^6.24.1" 381 | babel-plugin-syntax-async-functions "^6.8.0" 382 | babel-runtime "^6.22.0" 383 | 384 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 385 | version "6.22.0" 386 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 387 | dependencies: 388 | babel-runtime "^6.22.0" 389 | 390 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 391 | version "6.22.0" 392 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 393 | dependencies: 394 | babel-runtime "^6.22.0" 395 | 396 | babel-plugin-transform-es2015-block-scoping@^6.23.0, babel-plugin-transform-es2015-block-scoping@^6.24.1: 397 | version "6.26.0" 398 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 399 | dependencies: 400 | babel-runtime "^6.26.0" 401 | babel-template "^6.26.0" 402 | babel-traverse "^6.26.0" 403 | babel-types "^6.26.0" 404 | lodash "^4.17.4" 405 | 406 | babel-plugin-transform-es2015-classes@^6.23.0, babel-plugin-transform-es2015-classes@^6.24.1: 407 | version "6.24.1" 408 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 409 | dependencies: 410 | babel-helper-define-map "^6.24.1" 411 | babel-helper-function-name "^6.24.1" 412 | babel-helper-optimise-call-expression "^6.24.1" 413 | babel-helper-replace-supers "^6.24.1" 414 | babel-messages "^6.23.0" 415 | babel-runtime "^6.22.0" 416 | babel-template "^6.24.1" 417 | babel-traverse "^6.24.1" 418 | babel-types "^6.24.1" 419 | 420 | babel-plugin-transform-es2015-computed-properties@^6.22.0, babel-plugin-transform-es2015-computed-properties@^6.24.1: 421 | version "6.24.1" 422 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 423 | dependencies: 424 | babel-runtime "^6.22.0" 425 | babel-template "^6.24.1" 426 | 427 | babel-plugin-transform-es2015-destructuring@^6.22.0, babel-plugin-transform-es2015-destructuring@^6.23.0: 428 | version "6.23.0" 429 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 430 | dependencies: 431 | babel-runtime "^6.22.0" 432 | 433 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0, babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 434 | version "6.24.1" 435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 436 | dependencies: 437 | babel-runtime "^6.22.0" 438 | babel-types "^6.24.1" 439 | 440 | babel-plugin-transform-es2015-for-of@^6.22.0, babel-plugin-transform-es2015-for-of@^6.23.0: 441 | version "6.23.0" 442 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 443 | dependencies: 444 | babel-runtime "^6.22.0" 445 | 446 | babel-plugin-transform-es2015-function-name@^6.22.0, babel-plugin-transform-es2015-function-name@^6.24.1: 447 | version "6.24.1" 448 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 449 | dependencies: 450 | babel-helper-function-name "^6.24.1" 451 | babel-runtime "^6.22.0" 452 | babel-types "^6.24.1" 453 | 454 | babel-plugin-transform-es2015-literals@^6.22.0: 455 | version "6.22.0" 456 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 457 | dependencies: 458 | babel-runtime "^6.22.0" 459 | 460 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 461 | version "6.24.1" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 463 | dependencies: 464 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 465 | babel-runtime "^6.22.0" 466 | babel-template "^6.24.1" 467 | 468 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 469 | version "6.26.0" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 471 | dependencies: 472 | babel-plugin-transform-strict-mode "^6.24.1" 473 | babel-runtime "^6.26.0" 474 | babel-template "^6.26.0" 475 | babel-types "^6.26.0" 476 | 477 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0, babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 478 | version "6.24.1" 479 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 480 | dependencies: 481 | babel-helper-hoist-variables "^6.24.1" 482 | babel-runtime "^6.22.0" 483 | babel-template "^6.24.1" 484 | 485 | babel-plugin-transform-es2015-modules-umd@^6.23.0, babel-plugin-transform-es2015-modules-umd@^6.24.1: 486 | version "6.24.1" 487 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 488 | dependencies: 489 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 490 | babel-runtime "^6.22.0" 491 | babel-template "^6.24.1" 492 | 493 | babel-plugin-transform-es2015-object-super@^6.22.0, babel-plugin-transform-es2015-object-super@^6.24.1: 494 | version "6.24.1" 495 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 496 | dependencies: 497 | babel-helper-replace-supers "^6.24.1" 498 | babel-runtime "^6.22.0" 499 | 500 | babel-plugin-transform-es2015-parameters@^6.23.0, babel-plugin-transform-es2015-parameters@^6.24.1: 501 | version "6.24.1" 502 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 503 | dependencies: 504 | babel-helper-call-delegate "^6.24.1" 505 | babel-helper-get-function-arity "^6.24.1" 506 | babel-runtime "^6.22.0" 507 | babel-template "^6.24.1" 508 | babel-traverse "^6.24.1" 509 | babel-types "^6.24.1" 510 | 511 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0, babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 512 | version "6.24.1" 513 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 514 | dependencies: 515 | babel-runtime "^6.22.0" 516 | babel-types "^6.24.1" 517 | 518 | babel-plugin-transform-es2015-spread@^6.22.0: 519 | version "6.22.0" 520 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 521 | dependencies: 522 | babel-runtime "^6.22.0" 523 | 524 | babel-plugin-transform-es2015-sticky-regex@^6.22.0, babel-plugin-transform-es2015-sticky-regex@^6.24.1: 525 | version "6.24.1" 526 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 527 | dependencies: 528 | babel-helper-regex "^6.24.1" 529 | babel-runtime "^6.22.0" 530 | babel-types "^6.24.1" 531 | 532 | babel-plugin-transform-es2015-template-literals@^6.22.0: 533 | version "6.22.0" 534 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 535 | dependencies: 536 | babel-runtime "^6.22.0" 537 | 538 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0, babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 539 | version "6.23.0" 540 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 541 | dependencies: 542 | babel-runtime "^6.22.0" 543 | 544 | babel-plugin-transform-es2015-unicode-regex@^6.22.0, babel-plugin-transform-es2015-unicode-regex@^6.24.1: 545 | version "6.24.1" 546 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 547 | dependencies: 548 | babel-helper-regex "^6.24.1" 549 | babel-runtime "^6.22.0" 550 | regexpu-core "^2.0.0" 551 | 552 | babel-plugin-transform-exponentiation-operator@^6.22.0: 553 | version "6.24.1" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 555 | dependencies: 556 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 557 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 558 | babel-runtime "^6.22.0" 559 | 560 | babel-plugin-transform-regenerator@^6.22.0, babel-plugin-transform-regenerator@^6.24.1: 561 | version "6.26.0" 562 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 563 | dependencies: 564 | regenerator-transform "^0.10.0" 565 | 566 | babel-plugin-transform-strict-mode@^6.24.1: 567 | version "6.24.1" 568 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 569 | dependencies: 570 | babel-runtime "^6.22.0" 571 | babel-types "^6.24.1" 572 | 573 | babel-preset-env@^1.6.1: 574 | version "1.6.1" 575 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 576 | dependencies: 577 | babel-plugin-check-es2015-constants "^6.22.0" 578 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 579 | babel-plugin-transform-async-to-generator "^6.22.0" 580 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 581 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 582 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 583 | babel-plugin-transform-es2015-classes "^6.23.0" 584 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 585 | babel-plugin-transform-es2015-destructuring "^6.23.0" 586 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 587 | babel-plugin-transform-es2015-for-of "^6.23.0" 588 | babel-plugin-transform-es2015-function-name "^6.22.0" 589 | babel-plugin-transform-es2015-literals "^6.22.0" 590 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 591 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 592 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 593 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 594 | babel-plugin-transform-es2015-object-super "^6.22.0" 595 | babel-plugin-transform-es2015-parameters "^6.23.0" 596 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 597 | babel-plugin-transform-es2015-spread "^6.22.0" 598 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 599 | babel-plugin-transform-es2015-template-literals "^6.22.0" 600 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 601 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 602 | babel-plugin-transform-exponentiation-operator "^6.22.0" 603 | babel-plugin-transform-regenerator "^6.22.0" 604 | browserslist "^2.1.2" 605 | invariant "^2.2.2" 606 | semver "^5.3.0" 607 | 608 | babel-preset-es2015@^6.24.1: 609 | version "6.24.1" 610 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 611 | dependencies: 612 | babel-plugin-check-es2015-constants "^6.22.0" 613 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 614 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 615 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 616 | babel-plugin-transform-es2015-classes "^6.24.1" 617 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 618 | babel-plugin-transform-es2015-destructuring "^6.22.0" 619 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 620 | babel-plugin-transform-es2015-for-of "^6.22.0" 621 | babel-plugin-transform-es2015-function-name "^6.24.1" 622 | babel-plugin-transform-es2015-literals "^6.22.0" 623 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 624 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 625 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 626 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 627 | babel-plugin-transform-es2015-object-super "^6.24.1" 628 | babel-plugin-transform-es2015-parameters "^6.24.1" 629 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 630 | babel-plugin-transform-es2015-spread "^6.22.0" 631 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 632 | babel-plugin-transform-es2015-template-literals "^6.22.0" 633 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 634 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 635 | babel-plugin-transform-regenerator "^6.24.1" 636 | 637 | babel-preset-jest@^22.0.3: 638 | version "22.0.3" 639 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-22.0.3.tgz#e2bb6f6b4a509d3ea0931f013db78c5a84856693" 640 | dependencies: 641 | babel-plugin-jest-hoist "^22.0.3" 642 | babel-plugin-syntax-object-rest-spread "^6.13.0" 643 | 644 | babel-register@^6.26.0: 645 | version "6.26.0" 646 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 647 | dependencies: 648 | babel-core "^6.26.0" 649 | babel-runtime "^6.26.0" 650 | core-js "^2.5.0" 651 | home-or-tmp "^2.0.0" 652 | lodash "^4.17.4" 653 | mkdirp "^0.5.1" 654 | source-map-support "^0.4.15" 655 | 656 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 657 | version "6.26.0" 658 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 659 | dependencies: 660 | core-js "^2.4.0" 661 | regenerator-runtime "^0.11.0" 662 | 663 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 664 | version "6.26.0" 665 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 666 | dependencies: 667 | babel-runtime "^6.26.0" 668 | babel-traverse "^6.26.0" 669 | babel-types "^6.26.0" 670 | babylon "^6.18.0" 671 | lodash "^4.17.4" 672 | 673 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0: 674 | version "6.26.0" 675 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 676 | dependencies: 677 | babel-code-frame "^6.26.0" 678 | babel-messages "^6.23.0" 679 | babel-runtime "^6.26.0" 680 | babel-types "^6.26.0" 681 | babylon "^6.18.0" 682 | debug "^2.6.8" 683 | globals "^9.18.0" 684 | invariant "^2.2.2" 685 | lodash "^4.17.4" 686 | 687 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 688 | version "6.26.0" 689 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 690 | dependencies: 691 | babel-runtime "^6.26.0" 692 | esutils "^2.0.2" 693 | lodash "^4.17.4" 694 | to-fast-properties "^1.0.3" 695 | 696 | babylon@^6.18.0: 697 | version "6.18.0" 698 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 699 | 700 | balanced-match@^1.0.0: 701 | version "1.0.0" 702 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 703 | 704 | bcrypt-pbkdf@^1.0.0: 705 | version "1.0.1" 706 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 707 | dependencies: 708 | tweetnacl "^0.14.3" 709 | 710 | bindings@^1.2.1: 711 | version "1.3.0" 712 | resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.3.0.tgz#b346f6ecf6a95f5a815c5839fc7cdb22502f1ed7" 713 | 714 | block-stream@*: 715 | version "0.0.9" 716 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 717 | dependencies: 718 | inherits "~2.0.0" 719 | 720 | boom@2.x.x: 721 | version "2.10.1" 722 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 723 | dependencies: 724 | hoek "2.x.x" 725 | 726 | boom@4.x.x: 727 | version "4.3.1" 728 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 729 | dependencies: 730 | hoek "4.x.x" 731 | 732 | boom@5.x.x: 733 | version "5.2.0" 734 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 735 | dependencies: 736 | hoek "4.x.x" 737 | 738 | brace-expansion@^1.1.7: 739 | version "1.1.8" 740 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 741 | dependencies: 742 | balanced-match "^1.0.0" 743 | concat-map "0.0.1" 744 | 745 | braces@^1.8.2: 746 | version "1.8.5" 747 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 748 | dependencies: 749 | expand-range "^1.8.1" 750 | preserve "^0.2.0" 751 | repeat-element "^1.1.2" 752 | 753 | browser-process-hrtime@^0.1.2: 754 | version "0.1.2" 755 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e" 756 | 757 | browser-resolve@^1.11.2: 758 | version "1.11.2" 759 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 760 | dependencies: 761 | resolve "1.1.7" 762 | 763 | browserslist@^2.1.2: 764 | version "2.10.0" 765 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.10.0.tgz#bac5ee1cc69ca9d96403ffb8a3abdc5b6aed6346" 766 | dependencies: 767 | caniuse-lite "^1.0.30000780" 768 | electron-to-chromium "^1.3.28" 769 | 770 | bser@^2.0.0: 771 | version "2.0.0" 772 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 773 | dependencies: 774 | node-int64 "^0.4.0" 775 | 776 | builtin-modules@^1.0.0: 777 | version "1.1.1" 778 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 779 | 780 | callsites@^2.0.0: 781 | version "2.0.0" 782 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 783 | 784 | camelcase@^1.0.2: 785 | version "1.2.1" 786 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 787 | 788 | camelcase@^4.1.0: 789 | version "4.1.0" 790 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 791 | 792 | caniuse-lite@^1.0.30000780: 793 | version "1.0.30000784" 794 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000784.tgz#129ced74e9a1280a441880b6cd2bce30ef59e6c0" 795 | 796 | caseless@~0.12.0: 797 | version "0.12.0" 798 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 799 | 800 | center-align@^0.1.1: 801 | version "0.1.3" 802 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 803 | dependencies: 804 | align-text "^0.1.3" 805 | lazy-cache "^1.0.3" 806 | 807 | chalk@^1.1.3: 808 | version "1.1.3" 809 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 810 | dependencies: 811 | ansi-styles "^2.2.1" 812 | escape-string-regexp "^1.0.2" 813 | has-ansi "^2.0.0" 814 | strip-ansi "^3.0.0" 815 | supports-color "^2.0.0" 816 | 817 | chalk@^2.0.0, chalk@^2.0.1: 818 | version "2.3.0" 819 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 820 | dependencies: 821 | ansi-styles "^3.1.0" 822 | escape-string-regexp "^1.0.5" 823 | supports-color "^4.0.0" 824 | 825 | ci-info@^1.0.0: 826 | version "1.1.2" 827 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.2.tgz#03561259db48d0474c8bdc90f5b47b068b6bbfb4" 828 | 829 | cliui@^2.1.0: 830 | version "2.1.0" 831 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 832 | dependencies: 833 | center-align "^0.1.1" 834 | right-align "^0.1.1" 835 | wordwrap "0.0.2" 836 | 837 | cliui@^3.2.0: 838 | version "3.2.0" 839 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 840 | dependencies: 841 | string-width "^1.0.1" 842 | strip-ansi "^3.0.1" 843 | wrap-ansi "^2.0.0" 844 | 845 | co@^4.6.0: 846 | version "4.6.0" 847 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 848 | 849 | code-point-at@^1.0.0: 850 | version "1.1.0" 851 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 852 | 853 | color-convert@^1.9.0: 854 | version "1.9.1" 855 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 856 | dependencies: 857 | color-name "^1.1.1" 858 | 859 | color-name@^1.1.1: 860 | version "1.1.3" 861 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 862 | 863 | combined-stream@^1.0.5, combined-stream@~1.0.5: 864 | version "1.0.5" 865 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 866 | dependencies: 867 | delayed-stream "~1.0.0" 868 | 869 | concat-map@0.0.1: 870 | version "0.0.1" 871 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 872 | 873 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 874 | version "1.1.0" 875 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 876 | 877 | content-type-parser@^1.0.1: 878 | version "1.0.2" 879 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7" 880 | 881 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 882 | version "1.5.1" 883 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 884 | 885 | core-js@^2.4.0, core-js@^2.5.0: 886 | version "2.5.3" 887 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 888 | 889 | core-util-is@1.0.2, core-util-is@~1.0.0: 890 | version "1.0.2" 891 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 892 | 893 | cross-spawn@^5.0.1: 894 | version "5.1.0" 895 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 896 | dependencies: 897 | lru-cache "^4.0.1" 898 | shebang-command "^1.2.0" 899 | which "^1.2.9" 900 | 901 | cryptiles@2.x.x: 902 | version "2.0.5" 903 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 904 | dependencies: 905 | boom "2.x.x" 906 | 907 | cryptiles@3.x.x: 908 | version "3.1.2" 909 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 910 | dependencies: 911 | boom "5.x.x" 912 | 913 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 914 | version "0.3.2" 915 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 916 | 917 | "cssstyle@>= 0.2.37 < 0.3.0": 918 | version "0.2.37" 919 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 920 | dependencies: 921 | cssom "0.3.x" 922 | 923 | dashdash@^1.12.0: 924 | version "1.14.1" 925 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 926 | dependencies: 927 | assert-plus "^1.0.0" 928 | 929 | debug@^2.2.0, debug@^2.6.8: 930 | version "2.6.9" 931 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 932 | dependencies: 933 | ms "2.0.0" 934 | 935 | debug@^3.1.0: 936 | version "3.1.0" 937 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 938 | dependencies: 939 | ms "2.0.0" 940 | 941 | decamelize@^1.0.0, decamelize@^1.1.1: 942 | version "1.2.0" 943 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 944 | 945 | deep-extend@~0.4.0: 946 | version "0.4.2" 947 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 948 | 949 | deep-is@~0.1.3: 950 | version "0.1.3" 951 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 952 | 953 | default-require-extensions@^1.0.0: 954 | version "1.0.0" 955 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 956 | dependencies: 957 | strip-bom "^2.0.0" 958 | 959 | define-properties@^1.1.2: 960 | version "1.1.2" 961 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 962 | dependencies: 963 | foreach "^2.0.5" 964 | object-keys "^1.0.8" 965 | 966 | delayed-stream@~1.0.0: 967 | version "1.0.0" 968 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 969 | 970 | delegates@^1.0.0: 971 | version "1.0.0" 972 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 973 | 974 | detect-indent@^4.0.0: 975 | version "4.0.0" 976 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 977 | dependencies: 978 | repeating "^2.0.0" 979 | 980 | detect-libc@^1.0.2: 981 | version "1.0.3" 982 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 983 | 984 | detect-newline@^2.1.0: 985 | version "2.1.0" 986 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 987 | 988 | diff@^3.2.0: 989 | version "3.4.0" 990 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c" 991 | 992 | domexception@^1.0.0: 993 | version "1.0.0" 994 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.0.tgz#81fe5df81b3f057052cde3a9fa9bf536a85b9ab0" 995 | 996 | ecc-jsbn@~0.1.1: 997 | version "0.1.1" 998 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 999 | dependencies: 1000 | jsbn "~0.1.0" 1001 | 1002 | electron-releases@^2.1.0: 1003 | version "2.1.0" 1004 | resolved "https://registry.yarnpkg.com/electron-releases/-/electron-releases-2.1.0.tgz#c5614bf811f176ce3c836e368a0625782341fd4e" 1005 | 1006 | electron-to-chromium@^1.3.28: 1007 | version "1.3.30" 1008 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.30.tgz#9666f532a64586651fc56a72513692e820d06a80" 1009 | dependencies: 1010 | electron-releases "^2.1.0" 1011 | 1012 | error-ex@^1.2.0: 1013 | version "1.3.1" 1014 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1015 | dependencies: 1016 | is-arrayish "^0.2.1" 1017 | 1018 | es-abstract@^1.5.1: 1019 | version "1.10.0" 1020 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864" 1021 | dependencies: 1022 | es-to-primitive "^1.1.1" 1023 | function-bind "^1.1.1" 1024 | has "^1.0.1" 1025 | is-callable "^1.1.3" 1026 | is-regex "^1.0.4" 1027 | 1028 | es-to-primitive@^1.1.1: 1029 | version "1.1.1" 1030 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1031 | dependencies: 1032 | is-callable "^1.1.1" 1033 | is-date-object "^1.0.1" 1034 | is-symbol "^1.0.1" 1035 | 1036 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1037 | version "1.0.5" 1038 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1039 | 1040 | escodegen@^1.9.0: 1041 | version "1.9.0" 1042 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 1043 | dependencies: 1044 | esprima "^3.1.3" 1045 | estraverse "^4.2.0" 1046 | esutils "^2.0.2" 1047 | optionator "^0.8.1" 1048 | optionalDependencies: 1049 | source-map "~0.5.6" 1050 | 1051 | esprima@^3.1.3: 1052 | version "3.1.3" 1053 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1054 | 1055 | esprima@^4.0.0: 1056 | version "4.0.0" 1057 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1058 | 1059 | estraverse@^4.2.0: 1060 | version "4.2.0" 1061 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1062 | 1063 | esutils@^2.0.2: 1064 | version "2.0.2" 1065 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1066 | 1067 | exec-sh@^0.2.0: 1068 | version "0.2.1" 1069 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 1070 | dependencies: 1071 | merge "^1.1.3" 1072 | 1073 | execa@^0.7.0: 1074 | version "0.7.0" 1075 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1076 | dependencies: 1077 | cross-spawn "^5.0.1" 1078 | get-stream "^3.0.0" 1079 | is-stream "^1.1.0" 1080 | npm-run-path "^2.0.0" 1081 | p-finally "^1.0.0" 1082 | signal-exit "^3.0.0" 1083 | strip-eof "^1.0.0" 1084 | 1085 | expand-brackets@^0.1.4: 1086 | version "0.1.5" 1087 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1088 | dependencies: 1089 | is-posix-bracket "^0.1.0" 1090 | 1091 | expand-range@^1.8.1: 1092 | version "1.8.2" 1093 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1094 | dependencies: 1095 | fill-range "^2.1.0" 1096 | 1097 | expect@^22.0.3: 1098 | version "22.0.3" 1099 | resolved "https://registry.yarnpkg.com/expect/-/expect-22.0.3.tgz#bb486de7d41bf3eb60d3b16dfd1c158a4d91ddfa" 1100 | dependencies: 1101 | ansi-styles "^3.2.0" 1102 | jest-diff "^22.0.3" 1103 | jest-get-type "^22.0.3" 1104 | jest-matcher-utils "^22.0.3" 1105 | jest-message-util "^22.0.3" 1106 | jest-regex-util "^22.0.3" 1107 | 1108 | extend@~3.0.0, extend@~3.0.1: 1109 | version "3.0.1" 1110 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1111 | 1112 | extglob@^0.3.1: 1113 | version "0.3.2" 1114 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1115 | dependencies: 1116 | is-extglob "^1.0.0" 1117 | 1118 | extsprintf@1.3.0: 1119 | version "1.3.0" 1120 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1121 | 1122 | extsprintf@^1.2.0: 1123 | version "1.4.0" 1124 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1125 | 1126 | fast-deep-equal@^1.0.0: 1127 | version "1.0.0" 1128 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1129 | 1130 | fast-json-stable-stringify@^2.0.0: 1131 | version "2.0.0" 1132 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1133 | 1134 | fast-levenshtein@~2.0.4: 1135 | version "2.0.6" 1136 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1137 | 1138 | fb-watchman@^2.0.0: 1139 | version "2.0.0" 1140 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1141 | dependencies: 1142 | bser "^2.0.0" 1143 | 1144 | filename-regex@^2.0.0: 1145 | version "2.0.1" 1146 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1147 | 1148 | fileset@^2.0.2: 1149 | version "2.0.3" 1150 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1151 | dependencies: 1152 | glob "^7.0.3" 1153 | minimatch "^3.0.3" 1154 | 1155 | fill-range@^2.1.0: 1156 | version "2.2.3" 1157 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1158 | dependencies: 1159 | is-number "^2.1.0" 1160 | isobject "^2.0.0" 1161 | randomatic "^1.1.3" 1162 | repeat-element "^1.1.2" 1163 | repeat-string "^1.5.2" 1164 | 1165 | find-up@^1.0.0: 1166 | version "1.1.2" 1167 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1168 | dependencies: 1169 | path-exists "^2.0.0" 1170 | pinkie-promise "^2.0.0" 1171 | 1172 | find-up@^2.1.0: 1173 | version "2.1.0" 1174 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1175 | dependencies: 1176 | locate-path "^2.0.0" 1177 | 1178 | for-in@^1.0.1: 1179 | version "1.0.2" 1180 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1181 | 1182 | for-own@^0.1.4: 1183 | version "0.1.5" 1184 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1185 | dependencies: 1186 | for-in "^1.0.1" 1187 | 1188 | foreach@^2.0.5: 1189 | version "2.0.5" 1190 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1191 | 1192 | forever-agent@~0.6.1: 1193 | version "0.6.1" 1194 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1195 | 1196 | form-data@~2.1.1: 1197 | version "2.1.4" 1198 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1199 | dependencies: 1200 | asynckit "^0.4.0" 1201 | combined-stream "^1.0.5" 1202 | mime-types "^2.1.12" 1203 | 1204 | form-data@~2.3.1: 1205 | version "2.3.1" 1206 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 1207 | dependencies: 1208 | asynckit "^0.4.0" 1209 | combined-stream "^1.0.5" 1210 | mime-types "^2.1.12" 1211 | 1212 | fs.realpath@^1.0.0: 1213 | version "1.0.0" 1214 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1215 | 1216 | fsevents@^1.1.1: 1217 | version "1.1.3" 1218 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1219 | dependencies: 1220 | nan "^2.3.0" 1221 | node-pre-gyp "^0.6.39" 1222 | 1223 | fstream-ignore@^1.0.5: 1224 | version "1.0.5" 1225 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1226 | dependencies: 1227 | fstream "^1.0.0" 1228 | inherits "2" 1229 | minimatch "^3.0.0" 1230 | 1231 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1232 | version "1.0.11" 1233 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1234 | dependencies: 1235 | graceful-fs "^4.1.2" 1236 | inherits "~2.0.0" 1237 | mkdirp ">=0.5 0" 1238 | rimraf "2" 1239 | 1240 | function-bind@^1.0.2, function-bind@^1.1.1: 1241 | version "1.1.1" 1242 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1243 | 1244 | gauge@~2.7.3: 1245 | version "2.7.4" 1246 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1247 | dependencies: 1248 | aproba "^1.0.3" 1249 | console-control-strings "^1.0.0" 1250 | has-unicode "^2.0.0" 1251 | object-assign "^4.1.0" 1252 | signal-exit "^3.0.0" 1253 | string-width "^1.0.1" 1254 | strip-ansi "^3.0.1" 1255 | wide-align "^1.1.0" 1256 | 1257 | get-caller-file@^1.0.1: 1258 | version "1.0.2" 1259 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1260 | 1261 | get-stream@^3.0.0: 1262 | version "3.0.0" 1263 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1264 | 1265 | getpass@^0.1.1: 1266 | version "0.1.7" 1267 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1268 | dependencies: 1269 | assert-plus "^1.0.0" 1270 | 1271 | glob-base@^0.3.0: 1272 | version "0.3.0" 1273 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1274 | dependencies: 1275 | glob-parent "^2.0.0" 1276 | is-glob "^2.0.0" 1277 | 1278 | glob-parent@^2.0.0: 1279 | version "2.0.0" 1280 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1281 | dependencies: 1282 | is-glob "^2.0.0" 1283 | 1284 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1285 | version "7.1.2" 1286 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1287 | dependencies: 1288 | fs.realpath "^1.0.0" 1289 | inflight "^1.0.4" 1290 | inherits "2" 1291 | minimatch "^3.0.4" 1292 | once "^1.3.0" 1293 | path-is-absolute "^1.0.0" 1294 | 1295 | globals@^9.18.0: 1296 | version "9.18.0" 1297 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1298 | 1299 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1300 | version "4.1.11" 1301 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1302 | 1303 | growly@^1.3.0: 1304 | version "1.3.0" 1305 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1306 | 1307 | handlebars@^4.0.3: 1308 | version "4.0.11" 1309 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 1310 | dependencies: 1311 | async "^1.4.0" 1312 | optimist "^0.6.1" 1313 | source-map "^0.4.4" 1314 | optionalDependencies: 1315 | uglify-js "^2.6" 1316 | 1317 | har-schema@^1.0.5: 1318 | version "1.0.5" 1319 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1320 | 1321 | har-schema@^2.0.0: 1322 | version "2.0.0" 1323 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1324 | 1325 | har-validator@~4.2.1: 1326 | version "4.2.1" 1327 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1328 | dependencies: 1329 | ajv "^4.9.1" 1330 | har-schema "^1.0.5" 1331 | 1332 | har-validator@~5.0.3: 1333 | version "5.0.3" 1334 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1335 | dependencies: 1336 | ajv "^5.1.0" 1337 | har-schema "^2.0.0" 1338 | 1339 | has-ansi@^2.0.0: 1340 | version "2.0.0" 1341 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1342 | dependencies: 1343 | ansi-regex "^2.0.0" 1344 | 1345 | has-flag@^1.0.0: 1346 | version "1.0.0" 1347 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1348 | 1349 | has-flag@^2.0.0: 1350 | version "2.0.0" 1351 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1352 | 1353 | has-unicode@^2.0.0: 1354 | version "2.0.1" 1355 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1356 | 1357 | has@^1.0.1: 1358 | version "1.0.1" 1359 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1360 | dependencies: 1361 | function-bind "^1.0.2" 1362 | 1363 | hawk@3.1.3, hawk@~3.1.3: 1364 | version "3.1.3" 1365 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1366 | dependencies: 1367 | boom "2.x.x" 1368 | cryptiles "2.x.x" 1369 | hoek "2.x.x" 1370 | sntp "1.x.x" 1371 | 1372 | hawk@~6.0.2: 1373 | version "6.0.2" 1374 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1375 | dependencies: 1376 | boom "4.x.x" 1377 | cryptiles "3.x.x" 1378 | hoek "4.x.x" 1379 | sntp "2.x.x" 1380 | 1381 | hoek@2.x.x: 1382 | version "2.16.3" 1383 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1384 | 1385 | hoek@4.x.x: 1386 | version "4.2.0" 1387 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 1388 | 1389 | home-or-tmp@^2.0.0: 1390 | version "2.0.0" 1391 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1392 | dependencies: 1393 | os-homedir "^1.0.0" 1394 | os-tmpdir "^1.0.1" 1395 | 1396 | hosted-git-info@^2.1.4: 1397 | version "2.5.0" 1398 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1399 | 1400 | html-encoding-sniffer@^1.0.1: 1401 | version "1.0.2" 1402 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1403 | dependencies: 1404 | whatwg-encoding "^1.0.1" 1405 | 1406 | http-signature@~1.1.0: 1407 | version "1.1.1" 1408 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1409 | dependencies: 1410 | assert-plus "^0.2.0" 1411 | jsprim "^1.2.2" 1412 | sshpk "^1.7.0" 1413 | 1414 | http-signature@~1.2.0: 1415 | version "1.2.0" 1416 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1417 | dependencies: 1418 | assert-plus "^1.0.0" 1419 | jsprim "^1.2.2" 1420 | sshpk "^1.7.0" 1421 | 1422 | iconv-lite@0.4.19: 1423 | version "0.4.19" 1424 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1425 | 1426 | imurmurhash@^0.1.4: 1427 | version "0.1.4" 1428 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1429 | 1430 | inflight@^1.0.4: 1431 | version "1.0.6" 1432 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1433 | dependencies: 1434 | once "^1.3.0" 1435 | wrappy "1" 1436 | 1437 | inherits@2, inherits@~2.0.0, inherits@~2.0.3: 1438 | version "2.0.3" 1439 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1440 | 1441 | ini@~1.3.0: 1442 | version "1.3.5" 1443 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1444 | 1445 | invariant@^2.2.2: 1446 | version "2.2.2" 1447 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1448 | dependencies: 1449 | loose-envify "^1.0.0" 1450 | 1451 | invert-kv@^1.0.0: 1452 | version "1.0.0" 1453 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1454 | 1455 | is-arrayish@^0.2.1: 1456 | version "0.2.1" 1457 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1458 | 1459 | is-buffer@^1.1.5: 1460 | version "1.1.6" 1461 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1462 | 1463 | is-builtin-module@^1.0.0: 1464 | version "1.0.0" 1465 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1466 | dependencies: 1467 | builtin-modules "^1.0.0" 1468 | 1469 | is-callable@^1.1.1, is-callable@^1.1.3: 1470 | version "1.1.3" 1471 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1472 | 1473 | is-ci@^1.0.10: 1474 | version "1.0.10" 1475 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1476 | dependencies: 1477 | ci-info "^1.0.0" 1478 | 1479 | is-date-object@^1.0.1: 1480 | version "1.0.1" 1481 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1482 | 1483 | is-dotfile@^1.0.0: 1484 | version "1.0.3" 1485 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1486 | 1487 | is-equal-shallow@^0.1.3: 1488 | version "0.1.3" 1489 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1490 | dependencies: 1491 | is-primitive "^2.0.0" 1492 | 1493 | is-extendable@^0.1.1: 1494 | version "0.1.1" 1495 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1496 | 1497 | is-extglob@^1.0.0: 1498 | version "1.0.0" 1499 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1500 | 1501 | is-finite@^1.0.0: 1502 | version "1.0.2" 1503 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1504 | dependencies: 1505 | number-is-nan "^1.0.0" 1506 | 1507 | is-fullwidth-code-point@^1.0.0: 1508 | version "1.0.0" 1509 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1510 | dependencies: 1511 | number-is-nan "^1.0.0" 1512 | 1513 | is-fullwidth-code-point@^2.0.0: 1514 | version "2.0.0" 1515 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1516 | 1517 | is-glob@^2.0.0, is-glob@^2.0.1: 1518 | version "2.0.1" 1519 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1520 | dependencies: 1521 | is-extglob "^1.0.0" 1522 | 1523 | is-number@^2.1.0: 1524 | version "2.1.0" 1525 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1526 | dependencies: 1527 | kind-of "^3.0.2" 1528 | 1529 | is-number@^3.0.0: 1530 | version "3.0.0" 1531 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1532 | dependencies: 1533 | kind-of "^3.0.2" 1534 | 1535 | is-posix-bracket@^0.1.0: 1536 | version "0.1.1" 1537 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1538 | 1539 | is-primitive@^2.0.0: 1540 | version "2.0.0" 1541 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1542 | 1543 | is-regex@^1.0.4: 1544 | version "1.0.4" 1545 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1546 | dependencies: 1547 | has "^1.0.1" 1548 | 1549 | is-stream@^1.1.0: 1550 | version "1.1.0" 1551 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1552 | 1553 | is-symbol@^1.0.1: 1554 | version "1.0.1" 1555 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1556 | 1557 | is-typedarray@~1.0.0: 1558 | version "1.0.0" 1559 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1560 | 1561 | is-utf8@^0.2.0: 1562 | version "0.2.1" 1563 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1564 | 1565 | isarray@1.0.0, isarray@~1.0.0: 1566 | version "1.0.0" 1567 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1568 | 1569 | isexe@^2.0.0: 1570 | version "2.0.0" 1571 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1572 | 1573 | isobject@^2.0.0: 1574 | version "2.1.0" 1575 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1576 | dependencies: 1577 | isarray "1.0.0" 1578 | 1579 | isstream@~0.1.2: 1580 | version "0.1.2" 1581 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1582 | 1583 | istanbul-api@^1.1.14: 1584 | version "1.2.1" 1585 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.2.1.tgz#0c60a0515eb11c7d65c6b50bba2c6e999acd8620" 1586 | dependencies: 1587 | async "^2.1.4" 1588 | fileset "^2.0.2" 1589 | istanbul-lib-coverage "^1.1.1" 1590 | istanbul-lib-hook "^1.1.0" 1591 | istanbul-lib-instrument "^1.9.1" 1592 | istanbul-lib-report "^1.1.2" 1593 | istanbul-lib-source-maps "^1.2.2" 1594 | istanbul-reports "^1.1.3" 1595 | js-yaml "^3.7.0" 1596 | mkdirp "^0.5.1" 1597 | once "^1.4.0" 1598 | 1599 | istanbul-lib-coverage@^1.1.1: 1600 | version "1.1.1" 1601 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1602 | 1603 | istanbul-lib-hook@^1.1.0: 1604 | version "1.1.0" 1605 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b" 1606 | dependencies: 1607 | append-transform "^0.4.0" 1608 | 1609 | istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.8.0, istanbul-lib-instrument@^1.9.1: 1610 | version "1.9.1" 1611 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.1.tgz#250b30b3531e5d3251299fdd64b0b2c9db6b558e" 1612 | dependencies: 1613 | babel-generator "^6.18.0" 1614 | babel-template "^6.16.0" 1615 | babel-traverse "^6.18.0" 1616 | babel-types "^6.18.0" 1617 | babylon "^6.18.0" 1618 | istanbul-lib-coverage "^1.1.1" 1619 | semver "^5.3.0" 1620 | 1621 | istanbul-lib-report@^1.1.2: 1622 | version "1.1.2" 1623 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.2.tgz#922be27c13b9511b979bd1587359f69798c1d425" 1624 | dependencies: 1625 | istanbul-lib-coverage "^1.1.1" 1626 | mkdirp "^0.5.1" 1627 | path-parse "^1.0.5" 1628 | supports-color "^3.1.2" 1629 | 1630 | istanbul-lib-source-maps@^1.2.1, istanbul-lib-source-maps@^1.2.2: 1631 | version "1.2.2" 1632 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.2.tgz#750578602435f28a0c04ee6d7d9e0f2960e62c1c" 1633 | dependencies: 1634 | debug "^3.1.0" 1635 | istanbul-lib-coverage "^1.1.1" 1636 | mkdirp "^0.5.1" 1637 | rimraf "^2.6.1" 1638 | source-map "^0.5.3" 1639 | 1640 | istanbul-reports@^1.1.3: 1641 | version "1.1.3" 1642 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.3.tgz#3b9e1e8defb6d18b1d425da8e8b32c5a163f2d10" 1643 | dependencies: 1644 | handlebars "^4.0.3" 1645 | 1646 | jest-changed-files@^22.0.3: 1647 | version "22.0.3" 1648 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-22.0.3.tgz#3771315acfa24a0ed7e6c545de620db6f1b2d164" 1649 | dependencies: 1650 | throat "^4.0.0" 1651 | 1652 | jest-cli@^22.0.4: 1653 | version "22.0.4" 1654 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-22.0.4.tgz#0052abaad45c57861c05da8ab5d27bad13ad224d" 1655 | dependencies: 1656 | ansi-escapes "^3.0.0" 1657 | chalk "^2.0.1" 1658 | glob "^7.1.2" 1659 | graceful-fs "^4.1.11" 1660 | is-ci "^1.0.10" 1661 | istanbul-api "^1.1.14" 1662 | istanbul-lib-coverage "^1.1.1" 1663 | istanbul-lib-instrument "^1.8.0" 1664 | istanbul-lib-source-maps "^1.2.1" 1665 | jest-changed-files "^22.0.3" 1666 | jest-config "^22.0.4" 1667 | jest-environment-jsdom "^22.0.4" 1668 | jest-get-type "^22.0.3" 1669 | jest-haste-map "^22.0.3" 1670 | jest-message-util "^22.0.3" 1671 | jest-regex-util "^22.0.3" 1672 | jest-resolve-dependencies "^22.0.3" 1673 | jest-runner "^22.0.4" 1674 | jest-runtime "^22.0.4" 1675 | jest-snapshot "^22.0.3" 1676 | jest-util "^22.0.4" 1677 | jest-worker "^22.0.3" 1678 | micromatch "^2.3.11" 1679 | node-notifier "^5.1.2" 1680 | realpath-native "^1.0.0" 1681 | rimraf "^2.5.4" 1682 | slash "^1.0.0" 1683 | string-length "^2.0.0" 1684 | strip-ansi "^4.0.0" 1685 | which "^1.2.12" 1686 | yargs "^10.0.3" 1687 | 1688 | jest-config@^22.0.4: 1689 | version "22.0.4" 1690 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-22.0.4.tgz#9c2a46c0907b1a1af54d9cdbf18e99b447034e11" 1691 | dependencies: 1692 | chalk "^2.0.1" 1693 | glob "^7.1.1" 1694 | jest-environment-jsdom "^22.0.4" 1695 | jest-environment-node "^22.0.4" 1696 | jest-get-type "^22.0.3" 1697 | jest-jasmine2 "^22.0.4" 1698 | jest-regex-util "^22.0.3" 1699 | jest-resolve "^22.0.4" 1700 | jest-util "^22.0.4" 1701 | jest-validate "^22.0.3" 1702 | pretty-format "^22.0.3" 1703 | 1704 | jest-diff@^22.0.3: 1705 | version "22.0.3" 1706 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-22.0.3.tgz#ffed5aba6beaf63bb77819ba44dd520168986321" 1707 | dependencies: 1708 | chalk "^2.0.1" 1709 | diff "^3.2.0" 1710 | jest-get-type "^22.0.3" 1711 | pretty-format "^22.0.3" 1712 | 1713 | jest-docblock@^22.0.3: 1714 | version "22.0.3" 1715 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.0.3.tgz#c33aa22682b9fc68a5373f5f82994428a2ded601" 1716 | dependencies: 1717 | detect-newline "^2.1.0" 1718 | 1719 | jest-environment-jsdom@^22.0.4: 1720 | version "22.0.4" 1721 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-22.0.4.tgz#5723d4e724775ed38948de792e62f2d6a7f452df" 1722 | dependencies: 1723 | jest-mock "^22.0.3" 1724 | jest-util "^22.0.4" 1725 | jsdom "^11.5.1" 1726 | 1727 | jest-environment-node@^22.0.4: 1728 | version "22.0.4" 1729 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-22.0.4.tgz#068671f85a545f96a5469be3a3dd228fca79c709" 1730 | dependencies: 1731 | jest-mock "^22.0.3" 1732 | jest-util "^22.0.4" 1733 | 1734 | jest-get-type@^22.0.3: 1735 | version "22.0.3" 1736 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.0.3.tgz#fa894b677c0fcd55eff3fd8ee28c7be942e32d36" 1737 | 1738 | jest-haste-map@^22.0.3: 1739 | version "22.0.3" 1740 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-22.0.3.tgz#c9ecb5c871c5465d4bde4139e527fa0dc784aa2d" 1741 | dependencies: 1742 | fb-watchman "^2.0.0" 1743 | graceful-fs "^4.1.11" 1744 | jest-docblock "^22.0.3" 1745 | jest-worker "^22.0.3" 1746 | micromatch "^2.3.11" 1747 | sane "^2.0.0" 1748 | 1749 | jest-jasmine2@^22.0.4: 1750 | version "22.0.4" 1751 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-22.0.4.tgz#f7c0965116efe831ec674dc954b0134639b3dcee" 1752 | dependencies: 1753 | callsites "^2.0.0" 1754 | chalk "^2.0.1" 1755 | expect "^22.0.3" 1756 | graceful-fs "^4.1.11" 1757 | jest-diff "^22.0.3" 1758 | jest-matcher-utils "^22.0.3" 1759 | jest-message-util "^22.0.3" 1760 | jest-snapshot "^22.0.3" 1761 | source-map-support "^0.5.0" 1762 | 1763 | jest-leak-detector@^22.0.3: 1764 | version "22.0.3" 1765 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-22.0.3.tgz#b64904f0e8954a11edb79b0809ff4717fa762d99" 1766 | dependencies: 1767 | pretty-format "^22.0.3" 1768 | optionalDependencies: 1769 | weak "^1.0.1" 1770 | 1771 | jest-matcher-utils@^22.0.3: 1772 | version "22.0.3" 1773 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-22.0.3.tgz#2ec15ca1af7dcabf4daddc894ccce224b948674e" 1774 | dependencies: 1775 | chalk "^2.0.1" 1776 | jest-get-type "^22.0.3" 1777 | pretty-format "^22.0.3" 1778 | 1779 | jest-message-util@^22.0.3: 1780 | version "22.0.3" 1781 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-22.0.3.tgz#bf674b2762ef2dd53facf2136423fcca264976df" 1782 | dependencies: 1783 | "@babel/code-frame" "^7.0.0-beta.35" 1784 | chalk "^2.0.1" 1785 | micromatch "^2.3.11" 1786 | slash "^1.0.0" 1787 | stack-utils "^1.0.1" 1788 | 1789 | jest-mock@^22.0.3: 1790 | version "22.0.3" 1791 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-22.0.3.tgz#c875e47b5b729c6c020a2fab317b275c0cf88961" 1792 | 1793 | jest-regex-util@^22.0.3: 1794 | version "22.0.3" 1795 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-22.0.3.tgz#c5c10229de5ce2b27bf4347916d95b802ae9aa4d" 1796 | 1797 | jest-resolve-dependencies@^22.0.3: 1798 | version "22.0.3" 1799 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-22.0.3.tgz#202ddf370069702cd1865a1952fcc7e52c92720e" 1800 | dependencies: 1801 | jest-regex-util "^22.0.3" 1802 | 1803 | jest-resolve@^22.0.4: 1804 | version "22.0.4" 1805 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-22.0.4.tgz#a6e47f55e9388c7341b5e9732aedc6fe30906121" 1806 | dependencies: 1807 | browser-resolve "^1.11.2" 1808 | chalk "^2.0.1" 1809 | 1810 | jest-runner@^22.0.4: 1811 | version "22.0.4" 1812 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-22.0.4.tgz#3aa43a31b05ce8271539df580c2eb916023d3367" 1813 | dependencies: 1814 | jest-config "^22.0.4" 1815 | jest-docblock "^22.0.3" 1816 | jest-haste-map "^22.0.3" 1817 | jest-jasmine2 "^22.0.4" 1818 | jest-leak-detector "^22.0.3" 1819 | jest-message-util "^22.0.3" 1820 | jest-runtime "^22.0.4" 1821 | jest-util "^22.0.4" 1822 | jest-worker "^22.0.3" 1823 | throat "^4.0.0" 1824 | 1825 | jest-runtime@^22.0.4: 1826 | version "22.0.4" 1827 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-22.0.4.tgz#8f69aa7b5fbb3acd35dc262cbf654e563f69b7b4" 1828 | dependencies: 1829 | babel-core "^6.0.0" 1830 | babel-jest "^22.0.4" 1831 | babel-plugin-istanbul "^4.1.5" 1832 | chalk "^2.0.1" 1833 | convert-source-map "^1.4.0" 1834 | graceful-fs "^4.1.11" 1835 | jest-config "^22.0.4" 1836 | jest-haste-map "^22.0.3" 1837 | jest-regex-util "^22.0.3" 1838 | jest-resolve "^22.0.4" 1839 | jest-util "^22.0.4" 1840 | json-stable-stringify "^1.0.1" 1841 | micromatch "^2.3.11" 1842 | realpath-native "^1.0.0" 1843 | slash "^1.0.0" 1844 | strip-bom "3.0.0" 1845 | write-file-atomic "^2.1.0" 1846 | yargs "^10.0.3" 1847 | 1848 | jest-snapshot@^22.0.3: 1849 | version "22.0.3" 1850 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-22.0.3.tgz#a949b393781d2fdb4773f6ea765dd67ad1da291e" 1851 | dependencies: 1852 | chalk "^2.0.1" 1853 | jest-diff "^22.0.3" 1854 | jest-matcher-utils "^22.0.3" 1855 | mkdirp "^0.5.1" 1856 | natural-compare "^1.4.0" 1857 | pretty-format "^22.0.3" 1858 | 1859 | jest-util@^22.0.4: 1860 | version "22.0.4" 1861 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-22.0.4.tgz#d920a513e0645aaab030cee38e4fe7d5bed8bb6d" 1862 | dependencies: 1863 | callsites "^2.0.0" 1864 | chalk "^2.0.1" 1865 | graceful-fs "^4.1.11" 1866 | is-ci "^1.0.10" 1867 | jest-message-util "^22.0.3" 1868 | jest-validate "^22.0.3" 1869 | mkdirp "^0.5.1" 1870 | 1871 | jest-validate@^22.0.3: 1872 | version "22.0.3" 1873 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-22.0.3.tgz#2850d949a36c48b1a40f7eebae1d8539126f7829" 1874 | dependencies: 1875 | chalk "^2.0.1" 1876 | jest-get-type "^22.0.3" 1877 | leven "^2.1.0" 1878 | pretty-format "^22.0.3" 1879 | 1880 | jest-worker@^22.0.3: 1881 | version "22.0.3" 1882 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-22.0.3.tgz#30433faca67814a8f80559f75ab2ceaa61332fd2" 1883 | dependencies: 1884 | merge-stream "^1.0.1" 1885 | 1886 | jest@^22.0.4: 1887 | version "22.0.4" 1888 | resolved "https://registry.yarnpkg.com/jest/-/jest-22.0.4.tgz#d3cf560ece6b825b115dce80b9826ceb40f87961" 1889 | dependencies: 1890 | jest-cli "^22.0.4" 1891 | 1892 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1893 | version "3.0.2" 1894 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1895 | 1896 | js-yaml@^3.7.0: 1897 | version "3.10.0" 1898 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1899 | dependencies: 1900 | argparse "^1.0.7" 1901 | esprima "^4.0.0" 1902 | 1903 | jsbn@~0.1.0: 1904 | version "0.1.1" 1905 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1906 | 1907 | jsdom@^11.5.1: 1908 | version "11.5.1" 1909 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.5.1.tgz#5df753b8d0bca20142ce21f4f6c039f99a992929" 1910 | dependencies: 1911 | abab "^1.0.3" 1912 | acorn "^5.1.2" 1913 | acorn-globals "^4.0.0" 1914 | array-equal "^1.0.0" 1915 | browser-process-hrtime "^0.1.2" 1916 | content-type-parser "^1.0.1" 1917 | cssom ">= 0.3.2 < 0.4.0" 1918 | cssstyle ">= 0.2.37 < 0.3.0" 1919 | domexception "^1.0.0" 1920 | escodegen "^1.9.0" 1921 | html-encoding-sniffer "^1.0.1" 1922 | left-pad "^1.2.0" 1923 | nwmatcher "^1.4.3" 1924 | parse5 "^3.0.2" 1925 | pn "^1.0.0" 1926 | request "^2.83.0" 1927 | request-promise-native "^1.0.3" 1928 | sax "^1.2.1" 1929 | symbol-tree "^3.2.1" 1930 | tough-cookie "^2.3.3" 1931 | webidl-conversions "^4.0.2" 1932 | whatwg-encoding "^1.0.1" 1933 | whatwg-url "^6.3.0" 1934 | xml-name-validator "^2.0.1" 1935 | 1936 | jsesc@^1.3.0: 1937 | version "1.3.0" 1938 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1939 | 1940 | jsesc@~0.5.0: 1941 | version "0.5.0" 1942 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1943 | 1944 | json-schema-traverse@^0.3.0: 1945 | version "0.3.1" 1946 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1947 | 1948 | json-schema@0.2.3: 1949 | version "0.2.3" 1950 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1951 | 1952 | json-stable-stringify@^1.0.1: 1953 | version "1.0.1" 1954 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1955 | dependencies: 1956 | jsonify "~0.0.0" 1957 | 1958 | json-stringify-safe@~5.0.1: 1959 | version "5.0.1" 1960 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1961 | 1962 | json5@^0.5.1: 1963 | version "0.5.1" 1964 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1965 | 1966 | jsonify@~0.0.0: 1967 | version "0.0.0" 1968 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1969 | 1970 | jsprim@^1.2.2: 1971 | version "1.4.1" 1972 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1973 | dependencies: 1974 | assert-plus "1.0.0" 1975 | extsprintf "1.3.0" 1976 | json-schema "0.2.3" 1977 | verror "1.10.0" 1978 | 1979 | kind-of@^3.0.2: 1980 | version "3.2.2" 1981 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1982 | dependencies: 1983 | is-buffer "^1.1.5" 1984 | 1985 | kind-of@^4.0.0: 1986 | version "4.0.0" 1987 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1988 | dependencies: 1989 | is-buffer "^1.1.5" 1990 | 1991 | lazy-cache@^1.0.3: 1992 | version "1.0.4" 1993 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1994 | 1995 | lcid@^1.0.0: 1996 | version "1.0.0" 1997 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1998 | dependencies: 1999 | invert-kv "^1.0.0" 2000 | 2001 | left-pad@^1.2.0: 2002 | version "1.2.0" 2003 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.2.0.tgz#d30a73c6b8201d8f7d8e7956ba9616087a68e0ee" 2004 | 2005 | leven@^2.1.0: 2006 | version "2.1.0" 2007 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2008 | 2009 | levn@~0.3.0: 2010 | version "0.3.0" 2011 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2012 | dependencies: 2013 | prelude-ls "~1.1.2" 2014 | type-check "~0.3.2" 2015 | 2016 | load-json-file@^1.0.0: 2017 | version "1.1.0" 2018 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2019 | dependencies: 2020 | graceful-fs "^4.1.2" 2021 | parse-json "^2.2.0" 2022 | pify "^2.0.0" 2023 | pinkie-promise "^2.0.0" 2024 | strip-bom "^2.0.0" 2025 | 2026 | locate-path@^2.0.0: 2027 | version "2.0.0" 2028 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2029 | dependencies: 2030 | p-locate "^2.0.0" 2031 | path-exists "^3.0.0" 2032 | 2033 | lodash.sortby@^4.7.0: 2034 | version "4.7.0" 2035 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 2036 | 2037 | lodash@^4.13.1, lodash@^4.14.0, lodash@^4.17.4: 2038 | version "4.17.4" 2039 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2040 | 2041 | longest@^1.0.1: 2042 | version "1.0.1" 2043 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2044 | 2045 | loose-envify@^1.0.0: 2046 | version "1.3.1" 2047 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2048 | dependencies: 2049 | js-tokens "^3.0.0" 2050 | 2051 | lru-cache@^4.0.1: 2052 | version "4.1.1" 2053 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2054 | dependencies: 2055 | pseudomap "^1.0.2" 2056 | yallist "^2.1.2" 2057 | 2058 | makeerror@1.0.x: 2059 | version "1.0.11" 2060 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2061 | dependencies: 2062 | tmpl "1.0.x" 2063 | 2064 | mem@^1.1.0: 2065 | version "1.1.0" 2066 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2067 | dependencies: 2068 | mimic-fn "^1.0.0" 2069 | 2070 | merge-stream@^1.0.1: 2071 | version "1.0.1" 2072 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 2073 | dependencies: 2074 | readable-stream "^2.0.1" 2075 | 2076 | merge@^1.1.3: 2077 | version "1.2.0" 2078 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2079 | 2080 | micromatch@^2.1.5, micromatch@^2.3.11: 2081 | version "2.3.11" 2082 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2083 | dependencies: 2084 | arr-diff "^2.0.0" 2085 | array-unique "^0.2.1" 2086 | braces "^1.8.2" 2087 | expand-brackets "^0.1.4" 2088 | extglob "^0.3.1" 2089 | filename-regex "^2.0.0" 2090 | is-extglob "^1.0.0" 2091 | is-glob "^2.0.1" 2092 | kind-of "^3.0.2" 2093 | normalize-path "^2.0.1" 2094 | object.omit "^2.0.0" 2095 | parse-glob "^3.0.4" 2096 | regex-cache "^0.4.2" 2097 | 2098 | mime-db@~1.30.0: 2099 | version "1.30.0" 2100 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2101 | 2102 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 2103 | version "2.1.17" 2104 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2105 | dependencies: 2106 | mime-db "~1.30.0" 2107 | 2108 | mimic-fn@^1.0.0: 2109 | version "1.1.0" 2110 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2111 | 2112 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2113 | version "3.0.4" 2114 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2115 | dependencies: 2116 | brace-expansion "^1.1.7" 2117 | 2118 | minimist@0.0.8: 2119 | version "0.0.8" 2120 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2121 | 2122 | minimist@^1.1.1, minimist@^1.2.0: 2123 | version "1.2.0" 2124 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2125 | 2126 | minimist@~0.0.1: 2127 | version "0.0.10" 2128 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2129 | 2130 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2131 | version "0.5.1" 2132 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2133 | dependencies: 2134 | minimist "0.0.8" 2135 | 2136 | ms@2.0.0: 2137 | version "2.0.0" 2138 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2139 | 2140 | nan@^2.0.5, nan@^2.3.0: 2141 | version "2.8.0" 2142 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2143 | 2144 | natural-compare@^1.4.0: 2145 | version "1.4.0" 2146 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2147 | 2148 | node-int64@^0.4.0: 2149 | version "0.4.0" 2150 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2151 | 2152 | node-notifier@^5.1.2: 2153 | version "5.1.2" 2154 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2155 | dependencies: 2156 | growly "^1.3.0" 2157 | semver "^5.3.0" 2158 | shellwords "^0.1.0" 2159 | which "^1.2.12" 2160 | 2161 | node-pre-gyp@^0.6.39: 2162 | version "0.6.39" 2163 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2164 | dependencies: 2165 | detect-libc "^1.0.2" 2166 | hawk "3.1.3" 2167 | mkdirp "^0.5.1" 2168 | nopt "^4.0.1" 2169 | npmlog "^4.0.2" 2170 | rc "^1.1.7" 2171 | request "2.81.0" 2172 | rimraf "^2.6.1" 2173 | semver "^5.3.0" 2174 | tar "^2.2.1" 2175 | tar-pack "^3.4.0" 2176 | 2177 | nopt@^4.0.1: 2178 | version "4.0.1" 2179 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2180 | dependencies: 2181 | abbrev "1" 2182 | osenv "^0.1.4" 2183 | 2184 | normalize-package-data@^2.3.2: 2185 | version "2.4.0" 2186 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2187 | dependencies: 2188 | hosted-git-info "^2.1.4" 2189 | is-builtin-module "^1.0.0" 2190 | semver "2 || 3 || 4 || 5" 2191 | validate-npm-package-license "^3.0.1" 2192 | 2193 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2194 | version "2.1.1" 2195 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2196 | dependencies: 2197 | remove-trailing-separator "^1.0.1" 2198 | 2199 | npm-run-path@^2.0.0: 2200 | version "2.0.2" 2201 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2202 | dependencies: 2203 | path-key "^2.0.0" 2204 | 2205 | npmlog@^4.0.2: 2206 | version "4.1.2" 2207 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2208 | dependencies: 2209 | are-we-there-yet "~1.1.2" 2210 | console-control-strings "~1.1.0" 2211 | gauge "~2.7.3" 2212 | set-blocking "~2.0.0" 2213 | 2214 | number-is-nan@^1.0.0: 2215 | version "1.0.1" 2216 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2217 | 2218 | nwmatcher@^1.4.3: 2219 | version "1.4.3" 2220 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c" 2221 | 2222 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 2223 | version "0.8.2" 2224 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2225 | 2226 | object-assign@^4.1.0: 2227 | version "4.1.1" 2228 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2229 | 2230 | object-keys@^1.0.8: 2231 | version "1.0.11" 2232 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2233 | 2234 | object.getownpropertydescriptors@^2.0.3: 2235 | version "2.0.3" 2236 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 2237 | dependencies: 2238 | define-properties "^1.1.2" 2239 | es-abstract "^1.5.1" 2240 | 2241 | object.omit@^2.0.0: 2242 | version "2.0.1" 2243 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2244 | dependencies: 2245 | for-own "^0.1.4" 2246 | is-extendable "^0.1.1" 2247 | 2248 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2249 | version "1.4.0" 2250 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2251 | dependencies: 2252 | wrappy "1" 2253 | 2254 | optimist@^0.6.1: 2255 | version "0.6.1" 2256 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2257 | dependencies: 2258 | minimist "~0.0.1" 2259 | wordwrap "~0.0.2" 2260 | 2261 | optionator@^0.8.1: 2262 | version "0.8.2" 2263 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2264 | dependencies: 2265 | deep-is "~0.1.3" 2266 | fast-levenshtein "~2.0.4" 2267 | levn "~0.3.0" 2268 | prelude-ls "~1.1.2" 2269 | type-check "~0.3.2" 2270 | wordwrap "~1.0.0" 2271 | 2272 | os-homedir@^1.0.0: 2273 | version "1.0.2" 2274 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2275 | 2276 | os-locale@^2.0.0: 2277 | version "2.1.0" 2278 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2279 | dependencies: 2280 | execa "^0.7.0" 2281 | lcid "^1.0.0" 2282 | mem "^1.1.0" 2283 | 2284 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2285 | version "1.0.2" 2286 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2287 | 2288 | osenv@^0.1.4: 2289 | version "0.1.4" 2290 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2291 | dependencies: 2292 | os-homedir "^1.0.0" 2293 | os-tmpdir "^1.0.0" 2294 | 2295 | p-finally@^1.0.0: 2296 | version "1.0.0" 2297 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2298 | 2299 | p-limit@^1.1.0: 2300 | version "1.1.0" 2301 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2302 | 2303 | p-locate@^2.0.0: 2304 | version "2.0.0" 2305 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2306 | dependencies: 2307 | p-limit "^1.1.0" 2308 | 2309 | parse-glob@^3.0.4: 2310 | version "3.0.4" 2311 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2312 | dependencies: 2313 | glob-base "^0.3.0" 2314 | is-dotfile "^1.0.0" 2315 | is-extglob "^1.0.0" 2316 | is-glob "^2.0.0" 2317 | 2318 | parse-json@^2.2.0: 2319 | version "2.2.0" 2320 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2321 | dependencies: 2322 | error-ex "^1.2.0" 2323 | 2324 | parse5@^3.0.2: 2325 | version "3.0.3" 2326 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" 2327 | dependencies: 2328 | "@types/node" "*" 2329 | 2330 | path-exists@^2.0.0: 2331 | version "2.1.0" 2332 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2333 | dependencies: 2334 | pinkie-promise "^2.0.0" 2335 | 2336 | path-exists@^3.0.0: 2337 | version "3.0.0" 2338 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2339 | 2340 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2341 | version "1.0.1" 2342 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2343 | 2344 | path-key@^2.0.0: 2345 | version "2.0.1" 2346 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2347 | 2348 | path-parse@^1.0.5: 2349 | version "1.0.5" 2350 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2351 | 2352 | path-type@^1.0.0: 2353 | version "1.1.0" 2354 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2355 | dependencies: 2356 | graceful-fs "^4.1.2" 2357 | pify "^2.0.0" 2358 | pinkie-promise "^2.0.0" 2359 | 2360 | performance-now@^0.2.0: 2361 | version "0.2.0" 2362 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2363 | 2364 | performance-now@^2.1.0: 2365 | version "2.1.0" 2366 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2367 | 2368 | pify@^2.0.0: 2369 | version "2.3.0" 2370 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2371 | 2372 | pinkie-promise@^2.0.0: 2373 | version "2.0.1" 2374 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2375 | dependencies: 2376 | pinkie "^2.0.0" 2377 | 2378 | pinkie@^2.0.0: 2379 | version "2.0.4" 2380 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2381 | 2382 | pn@^1.0.0: 2383 | version "1.0.0" 2384 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.0.0.tgz#1cf5a30b0d806cd18f88fc41a6b5d4ad615b3ba9" 2385 | 2386 | prelude-ls@~1.1.2: 2387 | version "1.1.2" 2388 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2389 | 2390 | preserve@^0.2.0: 2391 | version "0.2.0" 2392 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2393 | 2394 | pretty-format@^22.0.3: 2395 | version "22.0.3" 2396 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-22.0.3.tgz#a2bfa59fc33ad24aa4429981bb52524b41ba5dd7" 2397 | dependencies: 2398 | ansi-regex "^3.0.0" 2399 | ansi-styles "^3.2.0" 2400 | 2401 | private@^0.1.6, private@^0.1.7: 2402 | version "0.1.8" 2403 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2404 | 2405 | process-nextick-args@~1.0.6: 2406 | version "1.0.7" 2407 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2408 | 2409 | pseudomap@^1.0.2: 2410 | version "1.0.2" 2411 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2412 | 2413 | punycode@^1.4.1: 2414 | version "1.4.1" 2415 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2416 | 2417 | punycode@^2.1.0: 2418 | version "2.1.0" 2419 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d" 2420 | 2421 | qs@~6.4.0: 2422 | version "6.4.0" 2423 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2424 | 2425 | qs@~6.5.1: 2426 | version "6.5.1" 2427 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 2428 | 2429 | randomatic@^1.1.3: 2430 | version "1.1.7" 2431 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2432 | dependencies: 2433 | is-number "^3.0.0" 2434 | kind-of "^4.0.0" 2435 | 2436 | rc@^1.1.7: 2437 | version "1.2.2" 2438 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 2439 | dependencies: 2440 | deep-extend "~0.4.0" 2441 | ini "~1.3.0" 2442 | minimist "^1.2.0" 2443 | strip-json-comments "~2.0.1" 2444 | 2445 | read-pkg-up@^1.0.1: 2446 | version "1.0.1" 2447 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2448 | dependencies: 2449 | find-up "^1.0.0" 2450 | read-pkg "^1.0.0" 2451 | 2452 | read-pkg@^1.0.0: 2453 | version "1.1.0" 2454 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2455 | dependencies: 2456 | load-json-file "^1.0.0" 2457 | normalize-package-data "^2.3.2" 2458 | path-type "^1.0.0" 2459 | 2460 | readable-stream@^2.0.1, readable-stream@^2.0.6, readable-stream@^2.1.4: 2461 | version "2.3.3" 2462 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2463 | dependencies: 2464 | core-util-is "~1.0.0" 2465 | inherits "~2.0.3" 2466 | isarray "~1.0.0" 2467 | process-nextick-args "~1.0.6" 2468 | safe-buffer "~5.1.1" 2469 | string_decoder "~1.0.3" 2470 | util-deprecate "~1.0.1" 2471 | 2472 | realpath-native@^1.0.0: 2473 | version "1.0.0" 2474 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0" 2475 | dependencies: 2476 | util.promisify "^1.0.0" 2477 | 2478 | regenerate@^1.2.1: 2479 | version "1.3.3" 2480 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2481 | 2482 | regenerator-runtime@^0.11.0, regenerator-runtime@^0.11.1: 2483 | version "0.11.1" 2484 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2485 | 2486 | regenerator-transform@^0.10.0: 2487 | version "0.10.1" 2488 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2489 | dependencies: 2490 | babel-runtime "^6.18.0" 2491 | babel-types "^6.19.0" 2492 | private "^0.1.6" 2493 | 2494 | regex-cache@^0.4.2: 2495 | version "0.4.4" 2496 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2497 | dependencies: 2498 | is-equal-shallow "^0.1.3" 2499 | 2500 | regexpu-core@^2.0.0: 2501 | version "2.0.0" 2502 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2503 | dependencies: 2504 | regenerate "^1.2.1" 2505 | regjsgen "^0.2.0" 2506 | regjsparser "^0.1.4" 2507 | 2508 | regjsgen@^0.2.0: 2509 | version "0.2.0" 2510 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2511 | 2512 | regjsparser@^0.1.4: 2513 | version "0.1.5" 2514 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2515 | dependencies: 2516 | jsesc "~0.5.0" 2517 | 2518 | remove-trailing-separator@^1.0.1: 2519 | version "1.1.0" 2520 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2521 | 2522 | repeat-element@^1.1.2: 2523 | version "1.1.2" 2524 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2525 | 2526 | repeat-string@^1.5.2: 2527 | version "1.6.1" 2528 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2529 | 2530 | repeating@^2.0.0: 2531 | version "2.0.1" 2532 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2533 | dependencies: 2534 | is-finite "^1.0.0" 2535 | 2536 | request-promise-core@1.1.1: 2537 | version "1.1.1" 2538 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 2539 | dependencies: 2540 | lodash "^4.13.1" 2541 | 2542 | request-promise-native@^1.0.3: 2543 | version "1.0.5" 2544 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" 2545 | dependencies: 2546 | request-promise-core "1.1.1" 2547 | stealthy-require "^1.1.0" 2548 | tough-cookie ">=2.3.3" 2549 | 2550 | request@2.81.0: 2551 | version "2.81.0" 2552 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2553 | dependencies: 2554 | aws-sign2 "~0.6.0" 2555 | aws4 "^1.2.1" 2556 | caseless "~0.12.0" 2557 | combined-stream "~1.0.5" 2558 | extend "~3.0.0" 2559 | forever-agent "~0.6.1" 2560 | form-data "~2.1.1" 2561 | har-validator "~4.2.1" 2562 | hawk "~3.1.3" 2563 | http-signature "~1.1.0" 2564 | is-typedarray "~1.0.0" 2565 | isstream "~0.1.2" 2566 | json-stringify-safe "~5.0.1" 2567 | mime-types "~2.1.7" 2568 | oauth-sign "~0.8.1" 2569 | performance-now "^0.2.0" 2570 | qs "~6.4.0" 2571 | safe-buffer "^5.0.1" 2572 | stringstream "~0.0.4" 2573 | tough-cookie "~2.3.0" 2574 | tunnel-agent "^0.6.0" 2575 | uuid "^3.0.0" 2576 | 2577 | request@^2.83.0: 2578 | version "2.83.0" 2579 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 2580 | dependencies: 2581 | aws-sign2 "~0.7.0" 2582 | aws4 "^1.6.0" 2583 | caseless "~0.12.0" 2584 | combined-stream "~1.0.5" 2585 | extend "~3.0.1" 2586 | forever-agent "~0.6.1" 2587 | form-data "~2.3.1" 2588 | har-validator "~5.0.3" 2589 | hawk "~6.0.2" 2590 | http-signature "~1.2.0" 2591 | is-typedarray "~1.0.0" 2592 | isstream "~0.1.2" 2593 | json-stringify-safe "~5.0.1" 2594 | mime-types "~2.1.17" 2595 | oauth-sign "~0.8.2" 2596 | performance-now "^2.1.0" 2597 | qs "~6.5.1" 2598 | safe-buffer "^5.1.1" 2599 | stringstream "~0.0.5" 2600 | tough-cookie "~2.3.3" 2601 | tunnel-agent "^0.6.0" 2602 | uuid "^3.1.0" 2603 | 2604 | require-directory@^2.1.1: 2605 | version "2.1.1" 2606 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2607 | 2608 | require-main-filename@^1.0.1: 2609 | version "1.0.1" 2610 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2611 | 2612 | resolve@1.1.7: 2613 | version "1.1.7" 2614 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2615 | 2616 | right-align@^0.1.1: 2617 | version "0.1.3" 2618 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2619 | dependencies: 2620 | align-text "^0.1.1" 2621 | 2622 | rimraf@2, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: 2623 | version "2.6.2" 2624 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2625 | dependencies: 2626 | glob "^7.0.5" 2627 | 2628 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2629 | version "5.1.1" 2630 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2631 | 2632 | sane@^2.0.0: 2633 | version "2.2.0" 2634 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.2.0.tgz#d6d2e2fcab00e3d283c93b912b7c3a20846f1d56" 2635 | dependencies: 2636 | anymatch "^1.3.0" 2637 | exec-sh "^0.2.0" 2638 | fb-watchman "^2.0.0" 2639 | minimatch "^3.0.2" 2640 | minimist "^1.1.1" 2641 | walker "~1.0.5" 2642 | watch "~0.18.0" 2643 | optionalDependencies: 2644 | fsevents "^1.1.1" 2645 | 2646 | sax@^1.2.1: 2647 | version "1.2.4" 2648 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2649 | 2650 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2651 | version "5.4.1" 2652 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2653 | 2654 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2655 | version "2.0.0" 2656 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2657 | 2658 | shebang-command@^1.2.0: 2659 | version "1.2.0" 2660 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2661 | dependencies: 2662 | shebang-regex "^1.0.0" 2663 | 2664 | shebang-regex@^1.0.0: 2665 | version "1.0.0" 2666 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2667 | 2668 | shellwords@^0.1.0: 2669 | version "0.1.1" 2670 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 2671 | 2672 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2673 | version "3.0.2" 2674 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2675 | 2676 | slash@^1.0.0: 2677 | version "1.0.0" 2678 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2679 | 2680 | sntp@1.x.x: 2681 | version "1.0.9" 2682 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2683 | dependencies: 2684 | hoek "2.x.x" 2685 | 2686 | sntp@2.x.x: 2687 | version "2.1.0" 2688 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 2689 | dependencies: 2690 | hoek "4.x.x" 2691 | 2692 | source-map-support@^0.4.15: 2693 | version "0.4.18" 2694 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2695 | dependencies: 2696 | source-map "^0.5.6" 2697 | 2698 | source-map-support@^0.5.0: 2699 | version "0.5.0" 2700 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.0.tgz#2018a7ad2bdf8faf2691e5fddab26bed5a2bacab" 2701 | dependencies: 2702 | source-map "^0.6.0" 2703 | 2704 | source-map@^0.4.4: 2705 | version "0.4.4" 2706 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2707 | dependencies: 2708 | amdefine ">=0.0.4" 2709 | 2710 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.6: 2711 | version "0.5.7" 2712 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2713 | 2714 | source-map@^0.6.0: 2715 | version "0.6.1" 2716 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2717 | 2718 | spdx-correct@~1.0.0: 2719 | version "1.0.2" 2720 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2721 | dependencies: 2722 | spdx-license-ids "^1.0.2" 2723 | 2724 | spdx-expression-parse@~1.0.0: 2725 | version "1.0.4" 2726 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2727 | 2728 | spdx-license-ids@^1.0.2: 2729 | version "1.2.2" 2730 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2731 | 2732 | sprintf-js@~1.0.2: 2733 | version "1.0.3" 2734 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2735 | 2736 | sshpk@^1.7.0: 2737 | version "1.13.1" 2738 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2739 | dependencies: 2740 | asn1 "~0.2.3" 2741 | assert-plus "^1.0.0" 2742 | dashdash "^1.12.0" 2743 | getpass "^0.1.1" 2744 | optionalDependencies: 2745 | bcrypt-pbkdf "^1.0.0" 2746 | ecc-jsbn "~0.1.1" 2747 | jsbn "~0.1.0" 2748 | tweetnacl "~0.14.0" 2749 | 2750 | stack-utils@^1.0.1: 2751 | version "1.0.1" 2752 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 2753 | 2754 | stealthy-require@^1.1.0: 2755 | version "1.1.1" 2756 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 2757 | 2758 | string-length@^2.0.0: 2759 | version "2.0.0" 2760 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 2761 | dependencies: 2762 | astral-regex "^1.0.0" 2763 | strip-ansi "^4.0.0" 2764 | 2765 | string-width@^1.0.1, string-width@^1.0.2: 2766 | version "1.0.2" 2767 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2768 | dependencies: 2769 | code-point-at "^1.0.0" 2770 | is-fullwidth-code-point "^1.0.0" 2771 | strip-ansi "^3.0.0" 2772 | 2773 | string-width@^2.0.0: 2774 | version "2.1.1" 2775 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2776 | dependencies: 2777 | is-fullwidth-code-point "^2.0.0" 2778 | strip-ansi "^4.0.0" 2779 | 2780 | string_decoder@~1.0.3: 2781 | version "1.0.3" 2782 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2783 | dependencies: 2784 | safe-buffer "~5.1.0" 2785 | 2786 | stringstream@~0.0.4, stringstream@~0.0.5: 2787 | version "0.0.5" 2788 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2789 | 2790 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2791 | version "3.0.1" 2792 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2793 | dependencies: 2794 | ansi-regex "^2.0.0" 2795 | 2796 | strip-ansi@^4.0.0: 2797 | version "4.0.0" 2798 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2799 | dependencies: 2800 | ansi-regex "^3.0.0" 2801 | 2802 | strip-bom@3.0.0: 2803 | version "3.0.0" 2804 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2805 | 2806 | strip-bom@^2.0.0: 2807 | version "2.0.0" 2808 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2809 | dependencies: 2810 | is-utf8 "^0.2.0" 2811 | 2812 | strip-eof@^1.0.0: 2813 | version "1.0.0" 2814 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2815 | 2816 | strip-json-comments@~2.0.1: 2817 | version "2.0.1" 2818 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2819 | 2820 | supports-color@^2.0.0: 2821 | version "2.0.0" 2822 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2823 | 2824 | supports-color@^3.1.2: 2825 | version "3.2.3" 2826 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2827 | dependencies: 2828 | has-flag "^1.0.0" 2829 | 2830 | supports-color@^4.0.0: 2831 | version "4.5.0" 2832 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 2833 | dependencies: 2834 | has-flag "^2.0.0" 2835 | 2836 | symbol-tree@^3.2.1: 2837 | version "3.2.2" 2838 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2839 | 2840 | tar-pack@^3.4.0: 2841 | version "3.4.1" 2842 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2843 | dependencies: 2844 | debug "^2.2.0" 2845 | fstream "^1.0.10" 2846 | fstream-ignore "^1.0.5" 2847 | once "^1.3.3" 2848 | readable-stream "^2.1.4" 2849 | rimraf "^2.5.1" 2850 | tar "^2.2.1" 2851 | uid-number "^0.0.6" 2852 | 2853 | tar@^2.2.1: 2854 | version "2.2.1" 2855 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2856 | dependencies: 2857 | block-stream "*" 2858 | fstream "^1.0.2" 2859 | inherits "2" 2860 | 2861 | test-exclude@^4.1.1: 2862 | version "4.1.1" 2863 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 2864 | dependencies: 2865 | arrify "^1.0.1" 2866 | micromatch "^2.3.11" 2867 | object-assign "^4.1.0" 2868 | read-pkg-up "^1.0.1" 2869 | require-main-filename "^1.0.1" 2870 | 2871 | throat@^4.0.0: 2872 | version "4.1.0" 2873 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 2874 | 2875 | tmpl@1.0.x: 2876 | version "1.0.4" 2877 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2878 | 2879 | to-fast-properties@^1.0.3: 2880 | version "1.0.3" 2881 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2882 | 2883 | tough-cookie@>=2.3.3, tough-cookie@^2.3.3, tough-cookie@~2.3.0, tough-cookie@~2.3.3: 2884 | version "2.3.3" 2885 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2886 | dependencies: 2887 | punycode "^1.4.1" 2888 | 2889 | tr46@^1.0.0: 2890 | version "1.0.1" 2891 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 2892 | dependencies: 2893 | punycode "^2.1.0" 2894 | 2895 | trim-right@^1.0.1: 2896 | version "1.0.1" 2897 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2898 | 2899 | tunnel-agent@^0.6.0: 2900 | version "0.6.0" 2901 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2902 | dependencies: 2903 | safe-buffer "^5.0.1" 2904 | 2905 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2906 | version "0.14.5" 2907 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2908 | 2909 | type-check@~0.3.2: 2910 | version "0.3.2" 2911 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2912 | dependencies: 2913 | prelude-ls "~1.1.2" 2914 | 2915 | typescript@^2.6.2: 2916 | version "2.6.2" 2917 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.6.2.tgz#3c5b6fd7f6de0914269027f03c0946758f7673a4" 2918 | 2919 | uglify-js@^2.6: 2920 | version "2.8.29" 2921 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2922 | dependencies: 2923 | source-map "~0.5.1" 2924 | yargs "~3.10.0" 2925 | optionalDependencies: 2926 | uglify-to-browserify "~1.0.0" 2927 | 2928 | uglify-to-browserify@~1.0.0: 2929 | version "1.0.2" 2930 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2931 | 2932 | uid-number@^0.0.6: 2933 | version "0.0.6" 2934 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2935 | 2936 | util-deprecate@~1.0.1: 2937 | version "1.0.2" 2938 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2939 | 2940 | util.promisify@^1.0.0: 2941 | version "1.0.0" 2942 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 2943 | dependencies: 2944 | define-properties "^1.1.2" 2945 | object.getownpropertydescriptors "^2.0.3" 2946 | 2947 | uuid@^3.0.0, uuid@^3.1.0: 2948 | version "3.1.0" 2949 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2950 | 2951 | validate-npm-package-license@^3.0.1: 2952 | version "3.0.1" 2953 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2954 | dependencies: 2955 | spdx-correct "~1.0.0" 2956 | spdx-expression-parse "~1.0.0" 2957 | 2958 | verror@1.10.0: 2959 | version "1.10.0" 2960 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2961 | dependencies: 2962 | assert-plus "^1.0.0" 2963 | core-util-is "1.0.2" 2964 | extsprintf "^1.2.0" 2965 | 2966 | walker@~1.0.5: 2967 | version "1.0.7" 2968 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2969 | dependencies: 2970 | makeerror "1.0.x" 2971 | 2972 | watch@~0.18.0: 2973 | version "0.18.0" 2974 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 2975 | dependencies: 2976 | exec-sh "^0.2.0" 2977 | minimist "^1.2.0" 2978 | 2979 | weak@^1.0.1: 2980 | version "1.0.1" 2981 | resolved "https://registry.yarnpkg.com/weak/-/weak-1.0.1.tgz#ab99aab30706959aa0200cb8cf545bb9cb33b99e" 2982 | dependencies: 2983 | bindings "^1.2.1" 2984 | nan "^2.0.5" 2985 | 2986 | webidl-conversions@^4.0.1, webidl-conversions@^4.0.2: 2987 | version "4.0.2" 2988 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 2989 | 2990 | whatwg-encoding@^1.0.1: 2991 | version "1.0.3" 2992 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 2993 | dependencies: 2994 | iconv-lite "0.4.19" 2995 | 2996 | whatwg-url@^6.3.0: 2997 | version "6.4.0" 2998 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.4.0.tgz#08fdf2b9e872783a7a1f6216260a1d66cc722e08" 2999 | dependencies: 3000 | lodash.sortby "^4.7.0" 3001 | tr46 "^1.0.0" 3002 | webidl-conversions "^4.0.1" 3003 | 3004 | which-module@^2.0.0: 3005 | version "2.0.0" 3006 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3007 | 3008 | which@^1.2.12, which@^1.2.9: 3009 | version "1.3.0" 3010 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3011 | dependencies: 3012 | isexe "^2.0.0" 3013 | 3014 | wide-align@^1.1.0: 3015 | version "1.1.2" 3016 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3017 | dependencies: 3018 | string-width "^1.0.2" 3019 | 3020 | window-size@0.1.0: 3021 | version "0.1.0" 3022 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3023 | 3024 | wordwrap@0.0.2: 3025 | version "0.0.2" 3026 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3027 | 3028 | wordwrap@~0.0.2: 3029 | version "0.0.3" 3030 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3031 | 3032 | wordwrap@~1.0.0: 3033 | version "1.0.0" 3034 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3035 | 3036 | wrap-ansi@^2.0.0: 3037 | version "2.1.0" 3038 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3039 | dependencies: 3040 | string-width "^1.0.1" 3041 | strip-ansi "^3.0.1" 3042 | 3043 | wrappy@1: 3044 | version "1.0.2" 3045 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3046 | 3047 | write-file-atomic@^2.1.0: 3048 | version "2.3.0" 3049 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3050 | dependencies: 3051 | graceful-fs "^4.1.11" 3052 | imurmurhash "^0.1.4" 3053 | signal-exit "^3.0.2" 3054 | 3055 | xml-name-validator@^2.0.1: 3056 | version "2.0.1" 3057 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3058 | 3059 | y18n@^3.2.1: 3060 | version "3.2.1" 3061 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3062 | 3063 | yallist@^2.1.2: 3064 | version "2.1.2" 3065 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3066 | 3067 | yargs-parser@^8.0.0: 3068 | version "8.1.0" 3069 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" 3070 | dependencies: 3071 | camelcase "^4.1.0" 3072 | 3073 | yargs@^10.0.3: 3074 | version "10.0.3" 3075 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.0.3.tgz#6542debd9080ad517ec5048fb454efe9e4d4aaae" 3076 | dependencies: 3077 | cliui "^3.2.0" 3078 | decamelize "^1.1.1" 3079 | find-up "^2.1.0" 3080 | get-caller-file "^1.0.1" 3081 | os-locale "^2.0.0" 3082 | require-directory "^2.1.1" 3083 | require-main-filename "^1.0.1" 3084 | set-blocking "^2.0.0" 3085 | string-width "^2.0.0" 3086 | which-module "^2.0.0" 3087 | y18n "^3.2.1" 3088 | yargs-parser "^8.0.0" 3089 | 3090 | yargs@~3.10.0: 3091 | version "3.10.0" 3092 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3093 | dependencies: 3094 | camelcase "^1.0.2" 3095 | cliui "^2.1.0" 3096 | decamelize "^1.0.0" 3097 | window-size "0.1.0" 3098 | --------------------------------------------------------------------------------