├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── jest.config.json ├── logo.png ├── package.json ├── src ├── index.spec.ts └── index.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | 3 | # Logs 4 | logs 5 | *.log 6 | npm-debug.log* 7 | yarn-debug.log* 8 | yarn-error.log* 9 | 10 | # Runtime data 11 | pids 12 | *.pid 13 | *.seed 14 | *.pid.lock 15 | 16 | # Directory for instrumented libs generated by jscoverage/JSCover 17 | lib-cov 18 | 19 | # Coverage directory used by tools like istanbul 20 | coverage 21 | 22 | # nyc test coverage 23 | .nyc_output 24 | 25 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 26 | .grunt 27 | 28 | # Bower dependency directory (https://bower.io/) 29 | bower_components 30 | 31 | # node-waf configuration 32 | .lock-wscript 33 | 34 | # Compiled binary addons (http://nodejs.org/api/addons.html) 35 | build/Release 36 | 37 | # Dependency directories 38 | node_modules/ 39 | jspm_packages/ 40 | 41 | # Typescript v1 declaration files 42 | typings/ 43 | 44 | # Optional npm cache directory 45 | .npm 46 | 47 | # Optional eslint cache 48 | .eslintcache 49 | 50 | # Optional REPL history 51 | .node_repl_history 52 | 53 | # Output of 'npm pack' 54 | *.tgz 55 | 56 | # Yarn Integrity file 57 | .yarn-integrity 58 | 59 | # dotenv environment variables file 60 | .env 61 | 62 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 8 4 | - 6 5 | cache: yarn 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # CHANGELOG 2 | 3 | ## 2.0.1 4 | 5 | + Upgrade internal packages ([#13](https://github.com/airtoxin/redux-cirquit/pull/13)) 6 | 7 | ## 2.0.0 (2018-04-20) 8 | 9 | ### Bugfix 10 | 11 | + Fix broken compilation of destructuring ([#9](https://github.com/airtoxin/redux-cirquit/pull/9),[#10](https://github.com/airtoxin/redux-cirquit/pull/10),[#11](https://github.com/airtoxin/redux-cirquit/pull/11)) 12 | 13 | ### Feature 14 | 15 | + Improve type definitions(Upgrading redux to v4.0.0) ([#12](https://github.com/airtoxin/redux-cirquit/pull/12)) 16 | 17 | ### Breaking change feature 18 | 19 | + Rename `CirquitAction` to `Operation` ([#8](https://github.com/airtoxin/redux-cirquit/pull/8)) 20 | 21 | This change only affect to createCirquitAction method's name. 22 | 23 | __before__ 24 | 25 | ```js 26 | createCirquitAction(/* any arguments */); 27 | ``` 28 | 29 | __after__ 30 | 31 | ```js 32 | createOperation(/* any arguments */); 33 | ``` 34 | 35 | ## 1.4.0 (2018-04-05) 36 | 37 | ### Features 38 | 39 | + Add temporal improvement of TypeScript's typings ([#6](https://github.com/airtoxin/redux-cirquit/pull/6)) 40 | + Add auto generated type definitions of flow ([#7](https://github.com/airtoxin/redux-cirquit/pull/7)) 41 | 42 | ## 1.3.0 (2018-04-01) 43 | 44 | ### Features 45 | 46 | + add `namespace` option to targeting reducer ([#3](https://github.com/airtoxin/redux-cirquit/pull/3)) 47 | + change action interface that created by `createCirquitAction` ([#4](https://github.com/airtoxin/redux-cirquit/pull/4)) 48 | 49 | ### Breaking change 50 | 51 | + `createCirquitAction` is now receives object formed option. 52 | 53 | __before__ 54 | 55 | ```js 56 | createCirquitAction(reducer, "my-reducer"); 57 | ``` 58 | 59 | __after__ 60 | 61 | ```js 62 | createCirquitAction(reducer, { 63 | reducerName: "my-reducer" 64 | }); 65 | ``` 66 | 67 | ## 1.2.0 (2018-03-31) 68 | 69 | ### Features 70 | 71 | + add optional `name` argument to define reducer's name explicitly ([#2](https://github.com/airtoxin/redux-cirquit/pull/2)) 72 | 73 | ## 1.1.0 (2018-03-27) 74 | 75 | First release 76 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Ryoji Ishii 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # redux-cirquit [![Build Status](https://travis-ci.org/airtoxin/redux-cirquit.svg?branch=master)](https://travis-ci.org/airtoxin/redux-cirquit) 2 | 3 | __To realize operation based short-circuiting redux.__ 4 | 5 | 6 | 7 | ## Concept 8 | 9 | The aim of redux-cirquit is to realize operation based application system on redux ecosystem. 10 | 11 | Redux is an implementation of Flux based on __event based__ application system. 12 | Its concept is good but bit tired, 13 | because event system requires to define event elements separately each other (EventName, EventPublisher, EventSubscriber) to keep loose-coupling between event publisher and subscriber. 14 | 15 | Event based application system is suitable for gigantic large sized application, but overkill for small or medium sized application. 16 | And we almost define its event elements (event publisher and subscriber) tightly-coupled. 17 | Tightly-couped event system is nearly equals to __operation based__ application system. 18 | If you use redux with operation based application system, there are no reason to define event elements separately (ActionTypes, Action, ActionCreator and Reducer). 19 | 20 | Operation based application system is much simpler than event based. 21 | There is only exists "Operation", so your ActionCreator (with dispatch) is called as operation. 22 | This is a redux-cirquit. 23 | 24 | ```js 25 | const increment = amount => createOperation(state => ({ 26 | ...state, 27 | counter: { 28 | count: state.counter.count + amount 29 | } 30 | })); 31 | // execute increment operation 32 | store.dispatch(increment(1)); 33 | ``` 34 | 35 | ## Install 36 | 37 | `$ npm install redux-cirquit` or `$ yarn add redux-cirquit` 38 | 39 | ## Usage 40 | 41 | ```js 42 | import { createStore } from "redux"; 43 | import { createCirquitReducer, createOperation } from "redux-cirquit"; 44 | 45 | const initialState = { 46 | counter: { 47 | count: 0 48 | } 49 | }; 50 | const cirquitReducer = createCirquitReducer(initialState); 51 | const store = createStore(cirquitReducer); 52 | 53 | const increment = amount => createOperation(state => ({ 54 | ...state, 55 | counter: { 56 | count: state.counter.count + amount 57 | } 58 | })); 59 | 60 | store.dispatch(increment(1)); // state is { counter: { count: 1 } } 61 | ``` 62 | 63 | with combineReducers 64 | 65 | ```js 66 | const store = createStore(combineReducers({ 67 | counter: createCirquitReducer(initialCounterState, { namespace: "counter" }), 68 | user: createCirquitReducer(initialUserState, { namespace: "user" }) 69 | })); 70 | 71 | const increment = amount => createOperation(state => ({ 72 | ...state, 73 | count: state.count + amount 74 | }), { namespace: "counter" }); 75 | 76 | store.dispatch(increment(1)); 77 | ``` 78 | 79 | [Full example](https://github.com/airtoxin/redux-cirquit-example) 80 | 81 | ## API 82 | 83 | ### export createCirquitReducer\(initialState: State, options?: { namespace?: string }): Redux.Reducer\ 84 | 85 | Creates redux-cirquit's reducer. 86 | If you want to split reducer using `combineReducers`, you should specify `namespace` in option. 87 | 88 | ### export createOperation\(reducer: (s: State) => State, options?: OperationOptions }): Redux.Action 89 | 90 | Creates operation to reduce state. 91 | The operation is actually redux's action. 92 | 93 | #### OperationOptions = { namespace?: string, meta?: { reducerName?: string, ...anyProps } } 94 | 95 | If you use splitted reducer, you should set same `namespace` of reducer related to this action. 96 | `meta` properties is almostly pass through to returned action's meta property except `meta.reducerName` property, so you can define any debugging informations in `meta`. 97 | `meta.reducerName` is optional property to define action name. 98 | If not specify `meta.reducerName`, [function name](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/name) or "anonymous" is used. 99 | 100 | ### getActionType(namespace: string): string 101 | 102 | Get action type used in redux-cirquit internally. 103 | 104 | ## Articles 105 | 106 | [それでもやっぱり redux は面倒くさい](https://qiita.com/airtoxin/items/1632d523ad95adf6f3fe) (Japanese) 107 | 108 | ## [Changelog](/CHANGELOG.md) 109 | 110 | ## License 111 | 112 | MIT 113 | -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "transform": { 3 | "^.+\\.tsx?$": "ts-jest" 4 | }, 5 | "testRegex": "/src/.*\\.spec\\.(jsx?|tsx?)$", 6 | "moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"] 7 | } 8 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtoxin/redux-cirquit/4a60d274dd9a73182a4f8764e548b03aa7b92271/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "redux-cirquit", 3 | "version": "2.0.1", 4 | "description": "short-circuiting action -> reducer handling in redux.", 5 | "main": "dist/index.js", 6 | "types": "dist/index.d.ts", 7 | "directories": { 8 | "lib": "dist" 9 | }, 10 | "scripts": { 11 | "fmt": "prettier --parser typescript '{,!(node_modules|dist)/**/}*.ts{,x}' --write", 12 | "clean": "rimraf dist", 13 | "build": "npm-run-all --serial clean build:ts build:flow", 14 | "build:ts": "tsc", 15 | "build:flow": "flowgen --output-file dist/index.js.flow dist/index.d.ts", 16 | "test": "npm-run-all --parallel test:*", 17 | "test:unit": "jest --config jest.config.json", 18 | "test:fmt": "prettier --list-different --parser typescript '{,!(node_modules|dist)/**/}*.ts{,x}'", 19 | "test:compile": "tsc --noEmit", 20 | "prepublish": "npm-run-all --serial test build" 21 | }, 22 | "repository": { 23 | "type": "git", 24 | "url": "https://github.com/airtoxin/redux-cirquit" 25 | }, 26 | "keywords": [ 27 | "redux", 28 | "flux", 29 | "react", 30 | "state" 31 | ], 32 | "author": "airtoxin", 33 | "files": [ 34 | "dist" 35 | ], 36 | "license": "MIT", 37 | "devDependencies": { 38 | "@types/jest": "^22.2.3", 39 | "flowgen": "^1.2.2", 40 | "jest": "^22.4.4", 41 | "npm-run-all": "^4.1.3", 42 | "prettier": "^1.12.1", 43 | "redux": "^4.0.0", 44 | "rimraf": "^2.6.2", 45 | "ts-jest": "^22.4.6", 46 | "tslib": "^1.9.1", 47 | "tslint": "^5.10.0", 48 | "tslint-config-prettier": "^1.13.0", 49 | "tslint-config-standard": "^7.0.0", 50 | "tslint-plugin-prettier": "^1.3.0", 51 | "typescript": "^2.8.3" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /src/index.spec.ts: -------------------------------------------------------------------------------- 1 | import "jest"; 2 | import { 3 | getActionType, 4 | createCirquitReducer, 5 | createOperation, 6 | CirquitReducer, 7 | Operation 8 | } from "./index"; 9 | import { createStore, Dispatch } from "redux"; 10 | 11 | interface State { 12 | counter: { 13 | count: number; 14 | }; 15 | } 16 | 17 | const initialState: State = { 18 | counter: { 19 | count: 0 20 | } 21 | }; 22 | 23 | const noopReducer: CirquitReducer = state => state; 24 | 25 | const incrementActionWithoutNamespace = createOperation(state => ({ 26 | counter: { 27 | count: state.counter.count + 1 28 | } 29 | })); 30 | 31 | const incrementActionWithNamespace = createOperation( 32 | state => ({ 33 | counter: { 34 | count: state.counter.count + 1 35 | } 36 | }), 37 | { namespace: "my-namespace" } 38 | ); 39 | 40 | describe("interface between redux", () => { 41 | it("createOperation should return redux action", () => { 42 | const dispatch = jest.fn>(); 43 | const action = createOperation(noopReducer); 44 | // type checking 45 | dispatch(action); 46 | // dummy assertion 47 | expect(true).toBe(true); 48 | }); 49 | 50 | it("createCirquitReducer should return redux reducer", () => { 51 | const reducer = createCirquitReducer(initialState); 52 | // type checking 53 | createStore, any, any>(reducer); 54 | expect(true).toBe(true); 55 | }); 56 | }); 57 | 58 | describe("createOperation", () => { 59 | it("should return operation action", () => { 60 | expect(createOperation(noopReducer)).toEqual({ 61 | type: getActionType(), 62 | meta: { 63 | reducerName: "noopReducer" 64 | }, 65 | payload: { 66 | reducer: noopReducer 67 | } 68 | }); 69 | }); 70 | 71 | describe("meta option", () => { 72 | it("should pass through meta options to action meta", () => { 73 | const meta = { a: "a", b: "b" }; 74 | expect(createOperation(noopReducer, { meta }).meta).toEqual({ 75 | ...meta, 76 | reducerName: "noopReducer" 77 | }); 78 | }); 79 | }); 80 | 81 | describe("reducerName option", () => { 82 | it("should be anonymous when reducer is arrow function", () => { 83 | expect(createOperation(state => state).meta.reducerName).toBe( 84 | "anonymous" 85 | ); 86 | }); 87 | 88 | it("should be anonymous when reducer is anonymous function", () => { 89 | expect( 90 | createOperation(function(state: State) { 91 | return state; 92 | }).meta.reducerName 93 | ).toBe("anonymous"); 94 | }); 95 | 96 | it("should named by inferred arrow function", () => { 97 | const namedReducer = (state: State) => state; 98 | expect(createOperation(namedReducer).meta.reducerName).toBe( 99 | "namedReducer" 100 | ); 101 | }); 102 | 103 | it("should named by named function", () => { 104 | expect( 105 | createOperation(function namedReducer(state: State) { 106 | return state; 107 | }).meta.reducerName 108 | ).toBe("namedReducer"); 109 | }); 110 | 111 | it("should named when invoked with reducerName option", () => { 112 | const namedReducer = (state: State) => state; 113 | expect( 114 | createOperation(namedReducer, { 115 | meta: { reducerName: "nameParams" } 116 | }).meta.reducerName 117 | ).toBe("nameParams"); 118 | }); 119 | }); 120 | 121 | describe("namespace option", () => { 122 | it("should be namespace defined action when specified namespace option", () => { 123 | expect( 124 | createOperation(noopReducer, { namespace: "my-namespace" }).type 125 | ).toBe("@@cirquit/my-namespace"); 126 | }); 127 | }); 128 | }); 129 | 130 | describe("createCirquitReducer's reducer", () => { 131 | it("should return initialState when invoke with @@init action", () => { 132 | const reducer = createCirquitReducer(initialState); 133 | expect(reducer(undefined as any, { type: "@@init" } as any)).toEqual( 134 | initialState 135 | ); 136 | }); 137 | 138 | it("should return reduced state when invoke with cirquitAction", () => { 139 | const reducer = createCirquitReducer(initialState); 140 | expect(reducer(initialState, incrementActionWithoutNamespace)).toEqual({ 141 | counter: { 142 | count: 1 143 | } 144 | }); 145 | }); 146 | 147 | describe("namespace option", () => { 148 | it("should react when action and reducer has same namespace", () => { 149 | const reducer = createCirquitReducer(initialState, { 150 | namespace: "my-namespace" 151 | }); 152 | expect(reducer(initialState, incrementActionWithNamespace)).toEqual({ 153 | counter: { 154 | count: 1 155 | } 156 | }); 157 | }); 158 | 159 | it("should not react when action and reducer has different namespace", () => { 160 | const reducer = createCirquitReducer(initialState, { 161 | namespace: "another-namespace" 162 | }); 163 | expect(reducer(initialState, incrementActionWithNamespace)).toEqual( 164 | initialState 165 | ); 166 | }); 167 | 168 | it("should not react when action has namespace, reducer has not namespace", () => { 169 | const reducer = createCirquitReducer(initialState); 170 | expect(reducer(initialState, incrementActionWithNamespace)).toEqual( 171 | initialState 172 | ); 173 | }); 174 | 175 | it("should not react when action has not namespace, reducer has namespace", () => { 176 | const reducer = createCirquitReducer(initialState, { 177 | namespace: "my-namespace" 178 | }); 179 | expect(reducer(initialState, incrementActionWithoutNamespace)).toEqual( 180 | initialState 181 | ); 182 | }); 183 | }); 184 | }); 185 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { Action, Reducer } from "redux"; 2 | 3 | export const getActionType = (namespace: string = "") => 4 | `@@cirquit/${namespace}`; 5 | 6 | export interface CirquitReducer { 7 | (state: State): State; 8 | name?: string; 9 | } 10 | 11 | export interface OperationMeta { 12 | reducerName?: string; 13 | [key: string]: any; 14 | } 15 | 16 | export interface Operation extends Action { 17 | type: string; 18 | meta: OperationMeta; 19 | payload: { 20 | reducer: CirquitReducer; 21 | }; 22 | } 23 | 24 | export interface OperationOptions { 25 | namespace?: string; 26 | meta?: OperationMeta; 27 | } 28 | 29 | export const createOperation = ( 30 | reducer: CirquitReducer, 31 | options: OperationOptions = {} 32 | ): Operation => ({ 33 | type: getActionType(options.namespace), 34 | meta: { 35 | ...options.meta, 36 | reducerName: 37 | (options.meta && options.meta.reducerName) || reducer.name || "anonymous" 38 | }, 39 | payload: { 40 | reducer 41 | } 42 | }); 43 | 44 | export interface CirquitReducerOptions { 45 | namespace?: string; 46 | } 47 | 48 | export const createCirquitReducer = ( 49 | initialState: State, 50 | options: CirquitReducerOptions = {} 51 | ): Reducer> => ( 52 | state: State = initialState, 53 | action: Operation 54 | ): State => { 55 | switch (action.type) { 56 | case getActionType(options.namespace): { 57 | return action.payload.reducer(state); 58 | } 59 | default: { 60 | return state; 61 | } 62 | } 63 | }; 64 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "module": "commonjs", 5 | "declaration": true, 6 | "outDir": "./dist", 7 | "strict": true, 8 | "noErrorTruncation": true, 9 | "noImplicitAny": true, 10 | "noImplicitReturns": true, 11 | "noImplicitThis": true, 12 | "noUnusedLocals": true, 13 | "noUnusedParameters": true 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": ["tslint-plugin-prettier"], 3 | "extends": ["tslint-config-standard", "tslint-config-prettier"] 4 | } 5 | -------------------------------------------------------------------------------- /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.42" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.42.tgz#a9c83233fa7cd06b39dc77adbb908616ff4f1962" 8 | dependencies: 9 | "@babel/highlight" "7.0.0-beta.42" 10 | 11 | "@babel/highlight@7.0.0-beta.42": 12 | version "7.0.0-beta.42" 13 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.42.tgz#a502a1c0d6f99b2b0e81d468a1b0c0e81e3f3623" 14 | dependencies: 15 | chalk "^2.0.0" 16 | esutils "^2.0.2" 17 | js-tokens "^3.0.0" 18 | 19 | "@types/jest@^22.2.3": 20 | version "22.2.3" 21 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-22.2.3.tgz#0157c0316dc3722c43a7b71de3fdf3acbccef10d" 22 | 23 | abab@^1.0.4: 24 | version "1.0.4" 25 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 26 | 27 | abbrev@1: 28 | version "1.1.1" 29 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 30 | 31 | acorn-globals@^4.1.0: 32 | version "4.1.0" 33 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538" 34 | dependencies: 35 | acorn "^5.0.0" 36 | 37 | acorn@^5.0.0, acorn@^5.3.0: 38 | version "5.7.4" 39 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e" 40 | 41 | ajv@^4.9.1: 42 | version "4.11.8" 43 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 44 | dependencies: 45 | co "^4.6.0" 46 | json-stable-stringify "^1.0.1" 47 | 48 | ajv@^5.1.0: 49 | version "5.5.2" 50 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 51 | dependencies: 52 | co "^4.6.0" 53 | fast-deep-equal "^1.0.0" 54 | fast-json-stable-stringify "^2.0.0" 55 | json-schema-traverse "^0.3.0" 56 | 57 | ansi-escapes@^3.0.0: 58 | version "3.1.0" 59 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 60 | 61 | ansi-regex@^2.0.0: 62 | version "2.1.1" 63 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 64 | 65 | ansi-regex@^3.0.0: 66 | version "3.0.0" 67 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 68 | 69 | ansi-styles@^2.2.1: 70 | version "2.2.1" 71 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 72 | 73 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 74 | version "3.2.1" 75 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 76 | dependencies: 77 | color-convert "^1.9.0" 78 | 79 | anymatch@^1.3.0: 80 | version "1.3.2" 81 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 82 | dependencies: 83 | micromatch "^2.1.5" 84 | normalize-path "^2.0.0" 85 | 86 | anymatch@^2.0.0: 87 | version "2.0.0" 88 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 89 | dependencies: 90 | micromatch "^3.1.4" 91 | normalize-path "^2.1.1" 92 | 93 | append-transform@^0.4.0: 94 | version "0.4.0" 95 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 96 | dependencies: 97 | default-require-extensions "^1.0.0" 98 | 99 | aproba@^1.0.3: 100 | version "1.2.0" 101 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 102 | 103 | are-we-there-yet@~1.1.2: 104 | version "1.1.4" 105 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 106 | dependencies: 107 | delegates "^1.0.0" 108 | readable-stream "^2.0.6" 109 | 110 | argparse@^1.0.7: 111 | version "1.0.10" 112 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 113 | dependencies: 114 | sprintf-js "~1.0.2" 115 | 116 | arr-diff@^2.0.0: 117 | version "2.0.0" 118 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 119 | dependencies: 120 | arr-flatten "^1.0.1" 121 | 122 | arr-diff@^4.0.0: 123 | version "4.0.0" 124 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 125 | 126 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 127 | version "1.1.0" 128 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 129 | 130 | arr-union@^3.1.0: 131 | version "3.1.0" 132 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 133 | 134 | array-equal@^1.0.0: 135 | version "1.0.0" 136 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 137 | 138 | array-filter@~0.0.0: 139 | version "0.0.1" 140 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 141 | 142 | array-map@~0.0.0: 143 | version "0.0.0" 144 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 145 | 146 | array-reduce@~0.0.0: 147 | version "0.0.0" 148 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 149 | 150 | array-unique@^0.2.1: 151 | version "0.2.1" 152 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 153 | 154 | array-unique@^0.3.2: 155 | version "0.3.2" 156 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 157 | 158 | arrify@^1.0.1: 159 | version "1.0.1" 160 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 161 | 162 | asn1@~0.2.3: 163 | version "0.2.3" 164 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 165 | 166 | assert-plus@1.0.0, assert-plus@^1.0.0: 167 | version "1.0.0" 168 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 169 | 170 | assert-plus@^0.2.0: 171 | version "0.2.0" 172 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 173 | 174 | assign-symbols@^1.0.0: 175 | version "1.0.0" 176 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 177 | 178 | astral-regex@^1.0.0: 179 | version "1.0.0" 180 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 181 | 182 | async-each@^1.0.0: 183 | version "1.0.1" 184 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 185 | 186 | async-limiter@~1.0.0: 187 | version "1.0.0" 188 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 189 | 190 | async@^2.1.4: 191 | version "2.6.0" 192 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 193 | dependencies: 194 | lodash "^4.14.0" 195 | 196 | asynckit@^0.4.0: 197 | version "0.4.0" 198 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 199 | 200 | atob@^2.0.0: 201 | version "2.0.3" 202 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.0.3.tgz#19c7a760473774468f20b2d2d03372ad7d4cbf5d" 203 | 204 | aws-sign2@~0.6.0: 205 | version "0.6.0" 206 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 207 | 208 | aws-sign2@~0.7.0: 209 | version "0.7.0" 210 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 211 | 212 | aws4@^1.2.1, aws4@^1.6.0: 213 | version "1.6.0" 214 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 215 | 216 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 217 | version "6.26.0" 218 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 219 | dependencies: 220 | chalk "^1.1.3" 221 | esutils "^2.0.2" 222 | js-tokens "^3.0.2" 223 | 224 | babel-core@^6.0.0, babel-core@^6.26.0: 225 | version "6.26.0" 226 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 227 | dependencies: 228 | babel-code-frame "^6.26.0" 229 | babel-generator "^6.26.0" 230 | babel-helpers "^6.24.1" 231 | babel-messages "^6.23.0" 232 | babel-register "^6.26.0" 233 | babel-runtime "^6.26.0" 234 | babel-template "^6.26.0" 235 | babel-traverse "^6.26.0" 236 | babel-types "^6.26.0" 237 | babylon "^6.18.0" 238 | convert-source-map "^1.5.0" 239 | debug "^2.6.8" 240 | json5 "^0.5.1" 241 | lodash "^4.17.4" 242 | minimatch "^3.0.4" 243 | path-is-absolute "^1.0.1" 244 | private "^0.1.7" 245 | slash "^1.0.0" 246 | source-map "^0.5.6" 247 | 248 | babel-core@^6.26.3: 249 | version "6.26.3" 250 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 251 | dependencies: 252 | babel-code-frame "^6.26.0" 253 | babel-generator "^6.26.0" 254 | babel-helpers "^6.24.1" 255 | babel-messages "^6.23.0" 256 | babel-register "^6.26.0" 257 | babel-runtime "^6.26.0" 258 | babel-template "^6.26.0" 259 | babel-traverse "^6.26.0" 260 | babel-types "^6.26.0" 261 | babylon "^6.18.0" 262 | convert-source-map "^1.5.1" 263 | debug "^2.6.9" 264 | json5 "^0.5.1" 265 | lodash "^4.17.4" 266 | minimatch "^3.0.4" 267 | path-is-absolute "^1.0.1" 268 | private "^0.1.8" 269 | slash "^1.0.0" 270 | source-map "^0.5.7" 271 | 272 | babel-generator@^6.18.0, babel-generator@^6.26.0: 273 | version "6.26.1" 274 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 275 | dependencies: 276 | babel-messages "^6.23.0" 277 | babel-runtime "^6.26.0" 278 | babel-types "^6.26.0" 279 | detect-indent "^4.0.0" 280 | jsesc "^1.3.0" 281 | lodash "^4.17.4" 282 | source-map "^0.5.7" 283 | trim-right "^1.0.1" 284 | 285 | babel-helpers@^6.24.1: 286 | version "6.24.1" 287 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 288 | dependencies: 289 | babel-runtime "^6.22.0" 290 | babel-template "^6.24.1" 291 | 292 | babel-jest@^22.4.4: 293 | version "22.4.4" 294 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-22.4.4.tgz#977259240420e227444ebe49e226a61e49ea659d" 295 | dependencies: 296 | babel-plugin-istanbul "^4.1.5" 297 | babel-preset-jest "^22.4.4" 298 | 299 | babel-messages@^6.23.0: 300 | version "6.23.0" 301 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 302 | dependencies: 303 | babel-runtime "^6.22.0" 304 | 305 | babel-plugin-istanbul@^4.1.5: 306 | version "4.1.5" 307 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" 308 | dependencies: 309 | find-up "^2.1.0" 310 | istanbul-lib-instrument "^1.7.5" 311 | test-exclude "^4.1.1" 312 | 313 | babel-plugin-istanbul@^4.1.6: 314 | version "4.1.6" 315 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" 316 | dependencies: 317 | babel-plugin-syntax-object-rest-spread "^6.13.0" 318 | find-up "^2.1.0" 319 | istanbul-lib-instrument "^1.10.1" 320 | test-exclude "^4.2.1" 321 | 322 | babel-plugin-jest-hoist@^22.4.3: 323 | version "22.4.3" 324 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-22.4.3.tgz#7d8bcccadc2667f96a0dcc6afe1891875ee6c14a" 325 | 326 | babel-plugin-jest-hoist@^22.4.4: 327 | version "22.4.4" 328 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-22.4.4.tgz#b9851906eab34c7bf6f8c895a2b08bea1a844c0b" 329 | 330 | babel-plugin-syntax-object-rest-spread@^6.13.0: 331 | version "6.13.0" 332 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 333 | 334 | babel-plugin-transform-es2015-modules-commonjs@^6.26.2: 335 | version "6.26.2" 336 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" 337 | dependencies: 338 | babel-plugin-transform-strict-mode "^6.24.1" 339 | babel-runtime "^6.26.0" 340 | babel-template "^6.26.0" 341 | babel-types "^6.26.0" 342 | 343 | babel-plugin-transform-strict-mode@^6.24.1: 344 | version "6.24.1" 345 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 346 | dependencies: 347 | babel-runtime "^6.22.0" 348 | babel-types "^6.24.1" 349 | 350 | babel-preset-jest@^22.4.3: 351 | version "22.4.3" 352 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-22.4.3.tgz#e92eef9813b7026ab4ca675799f37419b5a44156" 353 | dependencies: 354 | babel-plugin-jest-hoist "^22.4.3" 355 | babel-plugin-syntax-object-rest-spread "^6.13.0" 356 | 357 | babel-preset-jest@^22.4.4: 358 | version "22.4.4" 359 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-22.4.4.tgz#ec9fbd8bcd7dfd24b8b5320e0e688013235b7c39" 360 | dependencies: 361 | babel-plugin-jest-hoist "^22.4.4" 362 | babel-plugin-syntax-object-rest-spread "^6.13.0" 363 | 364 | babel-register@^6.26.0: 365 | version "6.26.0" 366 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 367 | dependencies: 368 | babel-core "^6.26.0" 369 | babel-runtime "^6.26.0" 370 | core-js "^2.5.0" 371 | home-or-tmp "^2.0.0" 372 | lodash "^4.17.4" 373 | mkdirp "^0.5.1" 374 | source-map-support "^0.4.15" 375 | 376 | babel-runtime@^6.22.0, babel-runtime@^6.26.0, babel-runtime@^6.9.2: 377 | version "6.26.0" 378 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 379 | dependencies: 380 | core-js "^2.4.0" 381 | regenerator-runtime "^0.11.0" 382 | 383 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 384 | version "6.26.0" 385 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 386 | dependencies: 387 | babel-runtime "^6.26.0" 388 | babel-traverse "^6.26.0" 389 | babel-types "^6.26.0" 390 | babylon "^6.18.0" 391 | lodash "^4.17.4" 392 | 393 | babel-traverse@^6.18.0, babel-traverse@^6.26.0: 394 | version "6.26.0" 395 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 396 | dependencies: 397 | babel-code-frame "^6.26.0" 398 | babel-messages "^6.23.0" 399 | babel-runtime "^6.26.0" 400 | babel-types "^6.26.0" 401 | babylon "^6.18.0" 402 | debug "^2.6.8" 403 | globals "^9.18.0" 404 | invariant "^2.2.2" 405 | lodash "^4.17.4" 406 | 407 | babel-types@^6.18.0, babel-types@^6.24.1, babel-types@^6.26.0: 408 | version "6.26.0" 409 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 410 | dependencies: 411 | babel-runtime "^6.26.0" 412 | esutils "^2.0.2" 413 | lodash "^4.17.4" 414 | to-fast-properties "^1.0.3" 415 | 416 | babylon@^6.18.0: 417 | version "6.18.0" 418 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 419 | 420 | balanced-match@^1.0.0: 421 | version "1.0.0" 422 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 423 | 424 | base@^0.11.1: 425 | version "0.11.2" 426 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 427 | dependencies: 428 | cache-base "^1.0.1" 429 | class-utils "^0.3.5" 430 | component-emitter "^1.2.1" 431 | define-property "^1.0.0" 432 | isobject "^3.0.1" 433 | mixin-deep "^1.2.0" 434 | pascalcase "^0.1.1" 435 | 436 | bcrypt-pbkdf@^1.0.0: 437 | version "1.0.1" 438 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 439 | dependencies: 440 | tweetnacl "^0.14.3" 441 | 442 | binary-extensions@^1.0.0: 443 | version "1.11.0" 444 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 445 | 446 | block-stream@*: 447 | version "0.0.9" 448 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 449 | dependencies: 450 | inherits "~2.0.0" 451 | 452 | bluebird@^3.0.5: 453 | version "3.5.1" 454 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 455 | 456 | boom@2.x.x: 457 | version "2.10.1" 458 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 459 | dependencies: 460 | hoek "2.x.x" 461 | 462 | boom@4.x.x: 463 | version "4.3.1" 464 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 465 | dependencies: 466 | hoek "4.x.x" 467 | 468 | boom@5.x.x: 469 | version "5.2.0" 470 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 471 | dependencies: 472 | hoek "4.x.x" 473 | 474 | brace-expansion@^1.1.7: 475 | version "1.1.11" 476 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 477 | dependencies: 478 | balanced-match "^1.0.0" 479 | concat-map "0.0.1" 480 | 481 | braces@^1.8.2: 482 | version "1.8.5" 483 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 484 | dependencies: 485 | expand-range "^1.8.1" 486 | preserve "^0.2.0" 487 | repeat-element "^1.1.2" 488 | 489 | braces@^2.3.1: 490 | version "2.3.1" 491 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.1.tgz#7086c913b4e5a08dbe37ac0ee6a2500c4ba691bb" 492 | dependencies: 493 | arr-flatten "^1.1.0" 494 | array-unique "^0.3.2" 495 | define-property "^1.0.0" 496 | extend-shallow "^2.0.1" 497 | fill-range "^4.0.0" 498 | isobject "^3.0.1" 499 | kind-of "^6.0.2" 500 | repeat-element "^1.1.2" 501 | snapdragon "^0.8.1" 502 | snapdragon-node "^2.0.1" 503 | split-string "^3.0.2" 504 | to-regex "^3.0.1" 505 | 506 | browser-process-hrtime@^0.1.2: 507 | version "0.1.2" 508 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e" 509 | 510 | browser-resolve@^1.11.2: 511 | version "1.11.2" 512 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 513 | dependencies: 514 | resolve "1.1.7" 515 | 516 | bser@^2.0.0: 517 | version "2.0.0" 518 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 519 | dependencies: 520 | node-int64 "^0.4.0" 521 | 522 | buffer-from@^1.0.0: 523 | version "1.0.0" 524 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531" 525 | 526 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 527 | version "1.1.1" 528 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 529 | 530 | cache-base@^1.0.1: 531 | version "1.0.1" 532 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 533 | dependencies: 534 | collection-visit "^1.0.0" 535 | component-emitter "^1.2.1" 536 | get-value "^2.0.6" 537 | has-value "^1.0.0" 538 | isobject "^3.0.1" 539 | set-value "^2.0.0" 540 | to-object-path "^0.3.0" 541 | union-value "^1.0.0" 542 | unset-value "^1.0.0" 543 | 544 | callsites@^2.0.0: 545 | version "2.0.0" 546 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 547 | 548 | camelcase@^4.1.0: 549 | version "4.1.0" 550 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 551 | 552 | caseless@~0.12.0: 553 | version "0.12.0" 554 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 555 | 556 | chalk@^1.1.3: 557 | version "1.1.3" 558 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 559 | dependencies: 560 | ansi-styles "^2.2.1" 561 | escape-string-regexp "^1.0.2" 562 | has-ansi "^2.0.0" 563 | strip-ansi "^3.0.0" 564 | supports-color "^2.0.0" 565 | 566 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0: 567 | version "2.3.2" 568 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.2.tgz#250dc96b07491bfd601e648d66ddf5f60c7a5c65" 569 | dependencies: 570 | ansi-styles "^3.2.1" 571 | escape-string-regexp "^1.0.5" 572 | supports-color "^5.3.0" 573 | 574 | chokidar@^1.6.0: 575 | version "1.7.0" 576 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 577 | dependencies: 578 | anymatch "^1.3.0" 579 | async-each "^1.0.0" 580 | glob-parent "^2.0.0" 581 | inherits "^2.0.1" 582 | is-binary-path "^1.0.0" 583 | is-glob "^2.0.0" 584 | path-is-absolute "^1.0.0" 585 | readdirp "^2.0.0" 586 | optionalDependencies: 587 | fsevents "^1.0.0" 588 | 589 | ci-info@^1.0.0: 590 | version "1.1.3" 591 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2" 592 | 593 | class-utils@^0.3.5: 594 | version "0.3.6" 595 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 596 | dependencies: 597 | arr-union "^3.1.0" 598 | define-property "^0.2.5" 599 | isobject "^3.0.0" 600 | static-extend "^0.1.1" 601 | 602 | cliui@^4.0.0: 603 | version "4.0.0" 604 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.0.0.tgz#743d4650e05f36d1ed2575b59638d87322bfbbcc" 605 | dependencies: 606 | string-width "^2.1.1" 607 | strip-ansi "^4.0.0" 608 | wrap-ansi "^2.0.0" 609 | 610 | co@^4.6.0: 611 | version "4.6.0" 612 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 613 | 614 | code-point-at@^1.0.0: 615 | version "1.1.0" 616 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 617 | 618 | collection-visit@^1.0.0: 619 | version "1.0.0" 620 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 621 | dependencies: 622 | map-visit "^1.0.0" 623 | object-visit "^1.0.0" 624 | 625 | color-convert@^1.9.0: 626 | version "1.9.1" 627 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 628 | dependencies: 629 | color-name "^1.1.1" 630 | 631 | color-name@^1.1.1: 632 | version "1.1.3" 633 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 634 | 635 | combined-stream@1.0.6, combined-stream@^1.0.5, combined-stream@~1.0.5: 636 | version "1.0.6" 637 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 638 | dependencies: 639 | delayed-stream "~1.0.0" 640 | 641 | commander@^2.11.0, commander@^2.12.1, commander@^2.9.0: 642 | version "2.15.1" 643 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" 644 | 645 | compare-versions@^3.1.0: 646 | version "3.1.0" 647 | resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.1.0.tgz#43310256a5c555aaed4193c04d8f154cf9c6efd5" 648 | 649 | component-emitter@^1.2.1: 650 | version "1.2.1" 651 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 652 | 653 | concat-map@0.0.1: 654 | version "0.0.1" 655 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 656 | 657 | config-chain@~1.1.5: 658 | version "1.1.11" 659 | resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2" 660 | dependencies: 661 | ini "^1.3.4" 662 | proto-list "~1.2.1" 663 | 664 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 665 | version "1.1.0" 666 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 667 | 668 | content-type-parser@^1.0.2: 669 | version "1.0.2" 670 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7" 671 | 672 | convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.5.1: 673 | version "1.5.1" 674 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 675 | 676 | copy-descriptor@^0.1.0: 677 | version "0.1.1" 678 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 679 | 680 | core-js@^2.4.0, core-js@^2.5.0: 681 | version "2.5.3" 682 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 683 | 684 | core-util-is@1.0.2, core-util-is@~1.0.0: 685 | version "1.0.2" 686 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 687 | 688 | cpx@^1.5.0: 689 | version "1.5.0" 690 | resolved "https://registry.yarnpkg.com/cpx/-/cpx-1.5.0.tgz#185be018511d87270dedccc293171e37655ab88f" 691 | dependencies: 692 | babel-runtime "^6.9.2" 693 | chokidar "^1.6.0" 694 | duplexer "^0.1.1" 695 | glob "^7.0.5" 696 | glob2base "^0.0.12" 697 | minimatch "^3.0.2" 698 | mkdirp "^0.5.1" 699 | resolve "^1.1.7" 700 | safe-buffer "^5.0.1" 701 | shell-quote "^1.6.1" 702 | subarg "^1.0.0" 703 | 704 | cross-spawn@^5.0.1: 705 | version "5.1.0" 706 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 707 | dependencies: 708 | lru-cache "^4.0.1" 709 | shebang-command "^1.2.0" 710 | which "^1.2.9" 711 | 712 | cross-spawn@^6.0.4: 713 | version "6.0.5" 714 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 715 | dependencies: 716 | nice-try "^1.0.4" 717 | path-key "^2.0.1" 718 | semver "^5.5.0" 719 | shebang-command "^1.2.0" 720 | which "^1.2.9" 721 | 722 | cryptiles@2.x.x: 723 | version "2.0.5" 724 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 725 | dependencies: 726 | boom "2.x.x" 727 | 728 | cryptiles@3.x.x: 729 | version "3.1.2" 730 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 731 | dependencies: 732 | boom "5.x.x" 733 | 734 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 735 | version "0.3.2" 736 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 737 | 738 | "cssstyle@>= 0.2.37 < 0.3.0": 739 | version "0.2.37" 740 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 741 | dependencies: 742 | cssom "0.3.x" 743 | 744 | dashdash@^1.12.0: 745 | version "1.14.1" 746 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 747 | dependencies: 748 | assert-plus "^1.0.0" 749 | 750 | debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 751 | version "2.6.9" 752 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 753 | dependencies: 754 | ms "2.0.0" 755 | 756 | debug@^3.1.0: 757 | version "3.1.0" 758 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 759 | dependencies: 760 | ms "2.0.0" 761 | 762 | decamelize@^1.1.1: 763 | version "1.2.0" 764 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 765 | 766 | decode-uri-component@^0.2.0: 767 | version "0.2.0" 768 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 769 | 770 | deep-extend@~0.4.0: 771 | version "0.4.2" 772 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 773 | 774 | deep-is@~0.1.3: 775 | version "0.1.3" 776 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 777 | 778 | default-require-extensions@^1.0.0: 779 | version "1.0.0" 780 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 781 | dependencies: 782 | strip-bom "^2.0.0" 783 | 784 | define-properties@^1.1.2: 785 | version "1.1.2" 786 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 787 | dependencies: 788 | foreach "^2.0.5" 789 | object-keys "^1.0.8" 790 | 791 | define-property@^0.2.5: 792 | version "0.2.5" 793 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 794 | dependencies: 795 | is-descriptor "^0.1.0" 796 | 797 | define-property@^1.0.0: 798 | version "1.0.0" 799 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 800 | dependencies: 801 | is-descriptor "^1.0.0" 802 | 803 | define-property@^2.0.2: 804 | version "2.0.2" 805 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 806 | dependencies: 807 | is-descriptor "^1.0.2" 808 | isobject "^3.0.1" 809 | 810 | delayed-stream@~1.0.0: 811 | version "1.0.0" 812 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 813 | 814 | delegates@^1.0.0: 815 | version "1.0.0" 816 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 817 | 818 | detect-indent@^4.0.0: 819 | version "4.0.0" 820 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 821 | dependencies: 822 | repeating "^2.0.0" 823 | 824 | detect-libc@^1.0.2: 825 | version "1.0.3" 826 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 827 | 828 | detect-newline@^2.1.0: 829 | version "2.1.0" 830 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 831 | 832 | diff@^3.2.0: 833 | version "3.5.0" 834 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 835 | 836 | doctrine@^0.7.2: 837 | version "0.7.2" 838 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-0.7.2.tgz#7cb860359ba3be90e040b26b729ce4bfa654c523" 839 | dependencies: 840 | esutils "^1.1.6" 841 | isarray "0.0.1" 842 | 843 | domexception@^1.0.0: 844 | version "1.0.1" 845 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" 846 | dependencies: 847 | webidl-conversions "^4.0.2" 848 | 849 | duplexer@^0.1.1, duplexer@~0.1.1: 850 | version "0.1.1" 851 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 852 | 853 | ecc-jsbn@~0.1.1: 854 | version "0.1.1" 855 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 856 | dependencies: 857 | jsbn "~0.1.0" 858 | 859 | editorconfig@^0.13.2: 860 | version "0.13.3" 861 | resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.13.3.tgz#e5219e587951d60958fd94ea9a9a008cdeff1b34" 862 | dependencies: 863 | bluebird "^3.0.5" 864 | commander "^2.9.0" 865 | lru-cache "^3.2.0" 866 | semver "^5.1.0" 867 | sigmund "^1.0.1" 868 | 869 | error-ex@^1.2.0, error-ex@^1.3.1: 870 | version "1.3.1" 871 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 872 | dependencies: 873 | is-arrayish "^0.2.1" 874 | 875 | es-abstract@^1.4.3, es-abstract@^1.5.1: 876 | version "1.11.0" 877 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.11.0.tgz#cce87d518f0496893b1a30cd8461835535480681" 878 | dependencies: 879 | es-to-primitive "^1.1.1" 880 | function-bind "^1.1.1" 881 | has "^1.0.1" 882 | is-callable "^1.1.3" 883 | is-regex "^1.0.4" 884 | 885 | es-to-primitive@^1.1.1: 886 | version "1.1.1" 887 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 888 | dependencies: 889 | is-callable "^1.1.1" 890 | is-date-object "^1.0.1" 891 | is-symbol "^1.0.1" 892 | 893 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 894 | version "1.0.5" 895 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 896 | 897 | escodegen@^1.9.0: 898 | version "1.9.1" 899 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.1.tgz#dbae17ef96c8e4bedb1356f4504fa4cc2f7cb7e2" 900 | dependencies: 901 | esprima "^3.1.3" 902 | estraverse "^4.2.0" 903 | esutils "^2.0.2" 904 | optionator "^0.8.1" 905 | optionalDependencies: 906 | source-map "~0.6.1" 907 | 908 | eslint-plugin-prettier@^2.2.0: 909 | version "2.6.0" 910 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.6.0.tgz#33e4e228bdb06142d03c560ce04ec23f6c767dd7" 911 | dependencies: 912 | fast-diff "^1.1.1" 913 | jest-docblock "^21.0.0" 914 | 915 | esprima@^3.1.3: 916 | version "3.1.3" 917 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 918 | 919 | esprima@^4.0.0: 920 | version "4.0.0" 921 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 922 | 923 | estraverse@^4.2.0: 924 | version "4.2.0" 925 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 926 | 927 | esutils@^1.1.6: 928 | version "1.1.6" 929 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-1.1.6.tgz#c01ccaa9ae4b897c6d0c3e210ae52f3c7a844375" 930 | 931 | esutils@^2.0.2: 932 | version "2.0.2" 933 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 934 | 935 | event-stream@~3.3.0: 936 | version "3.3.4" 937 | resolved "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 938 | dependencies: 939 | duplexer "~0.1.1" 940 | from "~0" 941 | map-stream "~0.1.0" 942 | pause-stream "0.0.11" 943 | split "0.3" 944 | stream-combiner "~0.0.4" 945 | through "~2.3.1" 946 | 947 | exec-sh@^0.2.0: 948 | version "0.2.1" 949 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 950 | dependencies: 951 | merge "^1.1.3" 952 | 953 | execa@^0.7.0: 954 | version "0.7.0" 955 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 956 | dependencies: 957 | cross-spawn "^5.0.1" 958 | get-stream "^3.0.0" 959 | is-stream "^1.1.0" 960 | npm-run-path "^2.0.0" 961 | p-finally "^1.0.0" 962 | signal-exit "^3.0.0" 963 | strip-eof "^1.0.0" 964 | 965 | exit@^0.1.2: 966 | version "0.1.2" 967 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 968 | 969 | expand-brackets@^0.1.4: 970 | version "0.1.5" 971 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 972 | dependencies: 973 | is-posix-bracket "^0.1.0" 974 | 975 | expand-brackets@^2.1.4: 976 | version "2.1.4" 977 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 978 | dependencies: 979 | debug "^2.3.3" 980 | define-property "^0.2.5" 981 | extend-shallow "^2.0.1" 982 | posix-character-classes "^0.1.0" 983 | regex-not "^1.0.0" 984 | snapdragon "^0.8.1" 985 | to-regex "^3.0.1" 986 | 987 | expand-range@^1.8.1: 988 | version "1.8.2" 989 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 990 | dependencies: 991 | fill-range "^2.1.0" 992 | 993 | expect@^22.4.0, expect@^22.4.3: 994 | version "22.4.3" 995 | resolved "https://registry.yarnpkg.com/expect/-/expect-22.4.3.tgz#d5a29d0a0e1fb2153557caef2674d4547e914674" 996 | dependencies: 997 | ansi-styles "^3.2.0" 998 | jest-diff "^22.4.3" 999 | jest-get-type "^22.4.3" 1000 | jest-matcher-utils "^22.4.3" 1001 | jest-message-util "^22.4.3" 1002 | jest-regex-util "^22.4.3" 1003 | 1004 | extend-shallow@^2.0.1: 1005 | version "2.0.1" 1006 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1007 | dependencies: 1008 | is-extendable "^0.1.0" 1009 | 1010 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1011 | version "3.0.2" 1012 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1013 | dependencies: 1014 | assign-symbols "^1.0.0" 1015 | is-extendable "^1.0.1" 1016 | 1017 | extend@~3.0.0, extend@~3.0.1: 1018 | version "3.0.2" 1019 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1020 | 1021 | extglob@^0.3.1: 1022 | version "0.3.2" 1023 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1024 | dependencies: 1025 | is-extglob "^1.0.0" 1026 | 1027 | extglob@^2.0.4: 1028 | version "2.0.4" 1029 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1030 | dependencies: 1031 | array-unique "^0.3.2" 1032 | define-property "^1.0.0" 1033 | expand-brackets "^2.1.4" 1034 | extend-shallow "^2.0.1" 1035 | fragment-cache "^0.2.1" 1036 | regex-not "^1.0.0" 1037 | snapdragon "^0.8.1" 1038 | to-regex "^3.0.1" 1039 | 1040 | extsprintf@1.3.0: 1041 | version "1.3.0" 1042 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1043 | 1044 | extsprintf@^1.2.0: 1045 | version "1.4.0" 1046 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1047 | 1048 | fast-deep-equal@^1.0.0: 1049 | version "1.1.0" 1050 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1051 | 1052 | fast-diff@^1.1.1: 1053 | version "1.1.2" 1054 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.2.tgz#4b62c42b8e03de3f848460b639079920695d0154" 1055 | 1056 | fast-json-stable-stringify@^2.0.0: 1057 | version "2.0.0" 1058 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1059 | 1060 | fast-levenshtein@~2.0.4: 1061 | version "2.0.6" 1062 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1063 | 1064 | fb-watchman@^2.0.0: 1065 | version "2.0.0" 1066 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1067 | dependencies: 1068 | bser "^2.0.0" 1069 | 1070 | filename-regex@^2.0.0: 1071 | version "2.0.1" 1072 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1073 | 1074 | fileset@^2.0.2: 1075 | version "2.0.3" 1076 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1077 | dependencies: 1078 | glob "^7.0.3" 1079 | minimatch "^3.0.3" 1080 | 1081 | fill-range@^2.1.0: 1082 | version "2.2.3" 1083 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1084 | dependencies: 1085 | is-number "^2.1.0" 1086 | isobject "^2.0.0" 1087 | randomatic "^1.1.3" 1088 | repeat-element "^1.1.2" 1089 | repeat-string "^1.5.2" 1090 | 1091 | fill-range@^4.0.0: 1092 | version "4.0.0" 1093 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1094 | dependencies: 1095 | extend-shallow "^2.0.1" 1096 | is-number "^3.0.0" 1097 | repeat-string "^1.6.1" 1098 | to-regex-range "^2.1.0" 1099 | 1100 | find-index@^0.1.1: 1101 | version "0.1.1" 1102 | resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" 1103 | 1104 | find-up@^1.0.0: 1105 | version "1.1.2" 1106 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1107 | dependencies: 1108 | path-exists "^2.0.0" 1109 | pinkie-promise "^2.0.0" 1110 | 1111 | find-up@^2.1.0: 1112 | version "2.1.0" 1113 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1114 | dependencies: 1115 | locate-path "^2.0.0" 1116 | 1117 | flowgen@^1.2.2: 1118 | version "1.2.2" 1119 | resolved "https://registry.yarnpkg.com/flowgen/-/flowgen-1.2.2.tgz#3db933b3149eb2569adc5df5d45b5c9c90c8b41c" 1120 | dependencies: 1121 | commander "^2.11.0" 1122 | js-beautify "^1.6.7" 1123 | lodash "^4.17.4" 1124 | paralleljs "^0.2.1" 1125 | typescript "^2.4.2" 1126 | typescript-compiler "^1.4.1-2" 1127 | 1128 | for-in@^1.0.1, for-in@^1.0.2: 1129 | version "1.0.2" 1130 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1131 | 1132 | for-own@^0.1.4: 1133 | version "0.1.5" 1134 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1135 | dependencies: 1136 | for-in "^1.0.1" 1137 | 1138 | foreach@^2.0.5: 1139 | version "2.0.5" 1140 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1141 | 1142 | forever-agent@~0.6.1: 1143 | version "0.6.1" 1144 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1145 | 1146 | form-data@~2.1.1: 1147 | version "2.1.4" 1148 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1149 | dependencies: 1150 | asynckit "^0.4.0" 1151 | combined-stream "^1.0.5" 1152 | mime-types "^2.1.12" 1153 | 1154 | form-data@~2.3.1: 1155 | version "2.3.2" 1156 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 1157 | dependencies: 1158 | asynckit "^0.4.0" 1159 | combined-stream "1.0.6" 1160 | mime-types "^2.1.12" 1161 | 1162 | fragment-cache@^0.2.1: 1163 | version "0.2.1" 1164 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1165 | dependencies: 1166 | map-cache "^0.2.2" 1167 | 1168 | from@~0: 1169 | version "0.1.7" 1170 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 1171 | 1172 | fs-extra@6.0.0: 1173 | version "6.0.0" 1174 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-6.0.0.tgz#0f0afb290bb3deb87978da816fcd3c7797f3a817" 1175 | dependencies: 1176 | graceful-fs "^4.1.2" 1177 | jsonfile "^4.0.0" 1178 | universalify "^0.1.0" 1179 | 1180 | fs.realpath@^1.0.0: 1181 | version "1.0.0" 1182 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1183 | 1184 | fsevents@^1.0.0, fsevents@^1.1.1: 1185 | version "1.1.3" 1186 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1187 | dependencies: 1188 | nan "^2.3.0" 1189 | node-pre-gyp "^0.6.39" 1190 | 1191 | fstream-ignore@^1.0.5: 1192 | version "1.0.5" 1193 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1194 | dependencies: 1195 | fstream "^1.0.0" 1196 | inherits "2" 1197 | minimatch "^3.0.0" 1198 | 1199 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1200 | version "1.0.11" 1201 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1202 | dependencies: 1203 | graceful-fs "^4.1.2" 1204 | inherits "~2.0.0" 1205 | mkdirp ">=0.5 0" 1206 | rimraf "2" 1207 | 1208 | function-bind@^1.0.2, function-bind@^1.1.1: 1209 | version "1.1.1" 1210 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1211 | 1212 | gauge@~2.7.3: 1213 | version "2.7.4" 1214 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1215 | dependencies: 1216 | aproba "^1.0.3" 1217 | console-control-strings "^1.0.0" 1218 | has-unicode "^2.0.0" 1219 | object-assign "^4.1.0" 1220 | signal-exit "^3.0.0" 1221 | string-width "^1.0.1" 1222 | strip-ansi "^3.0.1" 1223 | wide-align "^1.1.0" 1224 | 1225 | get-caller-file@^1.0.1: 1226 | version "1.0.2" 1227 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1228 | 1229 | get-stream@^3.0.0: 1230 | version "3.0.0" 1231 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1232 | 1233 | get-value@^2.0.3, get-value@^2.0.6: 1234 | version "2.0.6" 1235 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1236 | 1237 | getpass@^0.1.1: 1238 | version "0.1.7" 1239 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1240 | dependencies: 1241 | assert-plus "^1.0.0" 1242 | 1243 | glob-base@^0.3.0: 1244 | version "0.3.0" 1245 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1246 | dependencies: 1247 | glob-parent "^2.0.0" 1248 | is-glob "^2.0.0" 1249 | 1250 | glob-parent@^2.0.0: 1251 | version "2.0.0" 1252 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1253 | dependencies: 1254 | is-glob "^2.0.0" 1255 | 1256 | glob2base@^0.0.12: 1257 | version "0.0.12" 1258 | resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" 1259 | dependencies: 1260 | find-index "^0.1.1" 1261 | 1262 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1263 | version "7.1.2" 1264 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1265 | dependencies: 1266 | fs.realpath "^1.0.0" 1267 | inflight "^1.0.4" 1268 | inherits "2" 1269 | minimatch "^3.0.4" 1270 | once "^1.3.0" 1271 | path-is-absolute "^1.0.0" 1272 | 1273 | globals@^9.18.0: 1274 | version "9.18.0" 1275 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1276 | 1277 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1278 | version "4.1.11" 1279 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1280 | 1281 | growly@^1.3.0: 1282 | version "1.3.0" 1283 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1284 | 1285 | handlebars@^4.0.3: 1286 | version "4.7.7" 1287 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" 1288 | dependencies: 1289 | minimist "^1.2.5" 1290 | neo-async "^2.6.0" 1291 | source-map "^0.6.1" 1292 | wordwrap "^1.0.0" 1293 | optionalDependencies: 1294 | uglify-js "^3.1.4" 1295 | 1296 | har-schema@^1.0.5: 1297 | version "1.0.5" 1298 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1299 | 1300 | har-schema@^2.0.0: 1301 | version "2.0.0" 1302 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1303 | 1304 | har-validator@~4.2.1: 1305 | version "4.2.1" 1306 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1307 | dependencies: 1308 | ajv "^4.9.1" 1309 | har-schema "^1.0.5" 1310 | 1311 | har-validator@~5.0.3: 1312 | version "5.0.3" 1313 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1314 | dependencies: 1315 | ajv "^5.1.0" 1316 | har-schema "^2.0.0" 1317 | 1318 | has-ansi@^2.0.0: 1319 | version "2.0.0" 1320 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1321 | dependencies: 1322 | ansi-regex "^2.0.0" 1323 | 1324 | has-flag@^1.0.0: 1325 | version "1.0.0" 1326 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1327 | 1328 | has-flag@^3.0.0: 1329 | version "3.0.0" 1330 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1331 | 1332 | has-unicode@^2.0.0: 1333 | version "2.0.1" 1334 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1335 | 1336 | has-value@^0.3.1: 1337 | version "0.3.1" 1338 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1339 | dependencies: 1340 | get-value "^2.0.3" 1341 | has-values "^0.1.4" 1342 | isobject "^2.0.0" 1343 | 1344 | has-value@^1.0.0: 1345 | version "1.0.0" 1346 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1347 | dependencies: 1348 | get-value "^2.0.6" 1349 | has-values "^1.0.0" 1350 | isobject "^3.0.0" 1351 | 1352 | has-values@^0.1.4: 1353 | version "0.1.4" 1354 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1355 | 1356 | has-values@^1.0.0: 1357 | version "1.0.0" 1358 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1359 | dependencies: 1360 | is-number "^3.0.0" 1361 | kind-of "^4.0.0" 1362 | 1363 | has@^1.0.1: 1364 | version "1.0.1" 1365 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1366 | dependencies: 1367 | function-bind "^1.0.2" 1368 | 1369 | hawk@3.1.3, hawk@~3.1.3: 1370 | version "3.1.3" 1371 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1372 | dependencies: 1373 | boom "2.x.x" 1374 | cryptiles "2.x.x" 1375 | hoek "2.x.x" 1376 | sntp "1.x.x" 1377 | 1378 | hawk@~6.0.2: 1379 | version "6.0.2" 1380 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1381 | dependencies: 1382 | boom "4.x.x" 1383 | cryptiles "3.x.x" 1384 | hoek "4.x.x" 1385 | sntp "2.x.x" 1386 | 1387 | hoek@2.x.x: 1388 | version "2.16.3" 1389 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1390 | 1391 | hoek@4.x.x: 1392 | version "4.2.1" 1393 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb" 1394 | 1395 | home-or-tmp@^2.0.0: 1396 | version "2.0.0" 1397 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1398 | dependencies: 1399 | os-homedir "^1.0.0" 1400 | os-tmpdir "^1.0.1" 1401 | 1402 | hosted-git-info@^2.1.4: 1403 | version "2.6.0" 1404 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" 1405 | 1406 | html-encoding-sniffer@^1.0.2: 1407 | version "1.0.2" 1408 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1409 | dependencies: 1410 | whatwg-encoding "^1.0.1" 1411 | 1412 | http-signature@~1.1.0: 1413 | version "1.1.1" 1414 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1415 | dependencies: 1416 | assert-plus "^0.2.0" 1417 | jsprim "^1.2.2" 1418 | sshpk "^1.7.0" 1419 | 1420 | http-signature@~1.2.0: 1421 | version "1.2.0" 1422 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1423 | dependencies: 1424 | assert-plus "^1.0.0" 1425 | jsprim "^1.2.2" 1426 | sshpk "^1.7.0" 1427 | 1428 | iconv-lite@0.4.19: 1429 | version "0.4.19" 1430 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1431 | 1432 | import-local@^1.0.0: 1433 | version "1.0.0" 1434 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc" 1435 | dependencies: 1436 | pkg-dir "^2.0.0" 1437 | resolve-cwd "^2.0.0" 1438 | 1439 | imurmurhash@^0.1.4: 1440 | version "0.1.4" 1441 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1442 | 1443 | inflight@^1.0.4: 1444 | version "1.0.6" 1445 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1446 | dependencies: 1447 | once "^1.3.0" 1448 | wrappy "1" 1449 | 1450 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 1451 | version "2.0.3" 1452 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1453 | 1454 | ini@^1.3.4, ini@~1.3.0: 1455 | version "1.3.8" 1456 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 1457 | 1458 | invariant@^2.2.2: 1459 | version "2.2.4" 1460 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1461 | dependencies: 1462 | loose-envify "^1.0.0" 1463 | 1464 | invert-kv@^1.0.0: 1465 | version "1.0.0" 1466 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1467 | 1468 | is-accessor-descriptor@^0.1.6: 1469 | version "0.1.6" 1470 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1471 | dependencies: 1472 | kind-of "^3.0.2" 1473 | 1474 | is-accessor-descriptor@^1.0.0: 1475 | version "1.0.0" 1476 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1477 | dependencies: 1478 | kind-of "^6.0.0" 1479 | 1480 | is-arrayish@^0.2.1: 1481 | version "0.2.1" 1482 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1483 | 1484 | is-binary-path@^1.0.0: 1485 | version "1.0.1" 1486 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1487 | dependencies: 1488 | binary-extensions "^1.0.0" 1489 | 1490 | is-buffer@^1.1.5: 1491 | version "1.1.6" 1492 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1493 | 1494 | is-builtin-module@^1.0.0: 1495 | version "1.0.0" 1496 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1497 | dependencies: 1498 | builtin-modules "^1.0.0" 1499 | 1500 | is-callable@^1.1.1, is-callable@^1.1.3: 1501 | version "1.1.3" 1502 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1503 | 1504 | is-ci@^1.0.10: 1505 | version "1.1.0" 1506 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 1507 | dependencies: 1508 | ci-info "^1.0.0" 1509 | 1510 | is-data-descriptor@^0.1.4: 1511 | version "0.1.4" 1512 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1513 | dependencies: 1514 | kind-of "^3.0.2" 1515 | 1516 | is-data-descriptor@^1.0.0: 1517 | version "1.0.0" 1518 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1519 | dependencies: 1520 | kind-of "^6.0.0" 1521 | 1522 | is-date-object@^1.0.1: 1523 | version "1.0.1" 1524 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1525 | 1526 | is-descriptor@^0.1.0: 1527 | version "0.1.6" 1528 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1529 | dependencies: 1530 | is-accessor-descriptor "^0.1.6" 1531 | is-data-descriptor "^0.1.4" 1532 | kind-of "^5.0.0" 1533 | 1534 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1535 | version "1.0.2" 1536 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1537 | dependencies: 1538 | is-accessor-descriptor "^1.0.0" 1539 | is-data-descriptor "^1.0.0" 1540 | kind-of "^6.0.2" 1541 | 1542 | is-dotfile@^1.0.0: 1543 | version "1.0.3" 1544 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1545 | 1546 | is-equal-shallow@^0.1.3: 1547 | version "0.1.3" 1548 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1549 | dependencies: 1550 | is-primitive "^2.0.0" 1551 | 1552 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1553 | version "0.1.1" 1554 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1555 | 1556 | is-extendable@^1.0.1: 1557 | version "1.0.1" 1558 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1559 | dependencies: 1560 | is-plain-object "^2.0.4" 1561 | 1562 | is-extglob@^1.0.0: 1563 | version "1.0.0" 1564 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1565 | 1566 | is-finite@^1.0.0: 1567 | version "1.0.2" 1568 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1569 | dependencies: 1570 | number-is-nan "^1.0.0" 1571 | 1572 | is-fullwidth-code-point@^1.0.0: 1573 | version "1.0.0" 1574 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1575 | dependencies: 1576 | number-is-nan "^1.0.0" 1577 | 1578 | is-fullwidth-code-point@^2.0.0: 1579 | version "2.0.0" 1580 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1581 | 1582 | is-generator-fn@^1.0.0: 1583 | version "1.0.0" 1584 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1585 | 1586 | is-glob@^2.0.0, is-glob@^2.0.1: 1587 | version "2.0.1" 1588 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1589 | dependencies: 1590 | is-extglob "^1.0.0" 1591 | 1592 | is-number@^2.1.0: 1593 | version "2.1.0" 1594 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1595 | dependencies: 1596 | kind-of "^3.0.2" 1597 | 1598 | is-number@^3.0.0: 1599 | version "3.0.0" 1600 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1601 | dependencies: 1602 | kind-of "^3.0.2" 1603 | 1604 | is-number@^4.0.0: 1605 | version "4.0.0" 1606 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1607 | 1608 | is-odd@^2.0.0: 1609 | version "2.0.0" 1610 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 1611 | dependencies: 1612 | is-number "^4.0.0" 1613 | 1614 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1615 | version "2.0.4" 1616 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1617 | dependencies: 1618 | isobject "^3.0.1" 1619 | 1620 | is-posix-bracket@^0.1.0: 1621 | version "0.1.1" 1622 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1623 | 1624 | is-primitive@^2.0.0: 1625 | version "2.0.0" 1626 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1627 | 1628 | is-regex@^1.0.4: 1629 | version "1.0.4" 1630 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1631 | dependencies: 1632 | has "^1.0.1" 1633 | 1634 | is-stream@^1.1.0: 1635 | version "1.1.0" 1636 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1637 | 1638 | is-symbol@^1.0.1: 1639 | version "1.0.1" 1640 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1641 | 1642 | is-typedarray@~1.0.0: 1643 | version "1.0.0" 1644 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1645 | 1646 | is-utf8@^0.2.0: 1647 | version "0.2.1" 1648 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1649 | 1650 | is-windows@^1.0.2: 1651 | version "1.0.2" 1652 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1653 | 1654 | isarray@0.0.1: 1655 | version "0.0.1" 1656 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1657 | 1658 | isarray@1.0.0, isarray@~1.0.0: 1659 | version "1.0.0" 1660 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1661 | 1662 | isexe@^2.0.0: 1663 | version "2.0.0" 1664 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1665 | 1666 | isobject@^2.0.0: 1667 | version "2.1.0" 1668 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1669 | dependencies: 1670 | isarray "1.0.0" 1671 | 1672 | isobject@^3.0.0, isobject@^3.0.1: 1673 | version "3.0.1" 1674 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1675 | 1676 | isstream@~0.1.2: 1677 | version "0.1.2" 1678 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1679 | 1680 | istanbul-api@^1.1.14: 1681 | version "1.3.1" 1682 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.1.tgz#4c3b05d18c0016d1022e079b98dc82c40f488954" 1683 | dependencies: 1684 | async "^2.1.4" 1685 | compare-versions "^3.1.0" 1686 | fileset "^2.0.2" 1687 | istanbul-lib-coverage "^1.2.0" 1688 | istanbul-lib-hook "^1.2.0" 1689 | istanbul-lib-instrument "^1.10.1" 1690 | istanbul-lib-report "^1.1.4" 1691 | istanbul-lib-source-maps "^1.2.4" 1692 | istanbul-reports "^1.3.0" 1693 | js-yaml "^3.7.0" 1694 | mkdirp "^0.5.1" 1695 | once "^1.4.0" 1696 | 1697 | istanbul-lib-coverage@^1.1.1, istanbul-lib-coverage@^1.1.2, istanbul-lib-coverage@^1.2.0: 1698 | version "1.2.0" 1699 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341" 1700 | 1701 | istanbul-lib-hook@^1.2.0: 1702 | version "1.2.0" 1703 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.0.tgz#ae556fd5a41a6e8efa0b1002b1e416dfeaf9816c" 1704 | dependencies: 1705 | append-transform "^0.4.0" 1706 | 1707 | istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.8.0: 1708 | version "1.10.1" 1709 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b" 1710 | dependencies: 1711 | babel-generator "^6.18.0" 1712 | babel-template "^6.16.0" 1713 | babel-traverse "^6.18.0" 1714 | babel-types "^6.18.0" 1715 | babylon "^6.18.0" 1716 | istanbul-lib-coverage "^1.2.0" 1717 | semver "^5.3.0" 1718 | 1719 | istanbul-lib-report@^1.1.4: 1720 | version "1.1.4" 1721 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5" 1722 | dependencies: 1723 | istanbul-lib-coverage "^1.2.0" 1724 | mkdirp "^0.5.1" 1725 | path-parse "^1.0.5" 1726 | supports-color "^3.1.2" 1727 | 1728 | istanbul-lib-source-maps@^1.2.1: 1729 | version "1.2.3" 1730 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.3.tgz#20fb54b14e14b3fb6edb6aca3571fd2143db44e6" 1731 | dependencies: 1732 | debug "^3.1.0" 1733 | istanbul-lib-coverage "^1.1.2" 1734 | mkdirp "^0.5.1" 1735 | rimraf "^2.6.1" 1736 | source-map "^0.5.3" 1737 | 1738 | istanbul-lib-source-maps@^1.2.4: 1739 | version "1.2.4" 1740 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.4.tgz#cc7ccad61629f4efff8e2f78adb8c522c9976ec7" 1741 | dependencies: 1742 | debug "^3.1.0" 1743 | istanbul-lib-coverage "^1.2.0" 1744 | mkdirp "^0.5.1" 1745 | rimraf "^2.6.1" 1746 | source-map "^0.5.3" 1747 | 1748 | istanbul-reports@^1.3.0: 1749 | version "1.3.0" 1750 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.3.0.tgz#2f322e81e1d9520767597dca3c20a0cce89a3554" 1751 | dependencies: 1752 | handlebars "^4.0.3" 1753 | 1754 | jest-changed-files@^22.2.0: 1755 | version "22.4.3" 1756 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-22.4.3.tgz#8882181e022c38bd46a2e4d18d44d19d90a90fb2" 1757 | dependencies: 1758 | throat "^4.0.0" 1759 | 1760 | jest-cli@^22.4.4: 1761 | version "22.4.4" 1762 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-22.4.4.tgz#68cd2a2aae983adb1e6638248ca21082fd6d9e90" 1763 | dependencies: 1764 | ansi-escapes "^3.0.0" 1765 | chalk "^2.0.1" 1766 | exit "^0.1.2" 1767 | glob "^7.1.2" 1768 | graceful-fs "^4.1.11" 1769 | import-local "^1.0.0" 1770 | is-ci "^1.0.10" 1771 | istanbul-api "^1.1.14" 1772 | istanbul-lib-coverage "^1.1.1" 1773 | istanbul-lib-instrument "^1.8.0" 1774 | istanbul-lib-source-maps "^1.2.1" 1775 | jest-changed-files "^22.2.0" 1776 | jest-config "^22.4.4" 1777 | jest-environment-jsdom "^22.4.1" 1778 | jest-get-type "^22.1.0" 1779 | jest-haste-map "^22.4.2" 1780 | jest-message-util "^22.4.0" 1781 | jest-regex-util "^22.1.0" 1782 | jest-resolve-dependencies "^22.1.0" 1783 | jest-runner "^22.4.4" 1784 | jest-runtime "^22.4.4" 1785 | jest-snapshot "^22.4.0" 1786 | jest-util "^22.4.1" 1787 | jest-validate "^22.4.4" 1788 | jest-worker "^22.2.2" 1789 | micromatch "^2.3.11" 1790 | node-notifier "^5.2.1" 1791 | realpath-native "^1.0.0" 1792 | rimraf "^2.5.4" 1793 | slash "^1.0.0" 1794 | string-length "^2.0.0" 1795 | strip-ansi "^4.0.0" 1796 | which "^1.2.12" 1797 | yargs "^10.0.3" 1798 | 1799 | jest-config@^22.4.3: 1800 | version "22.4.3" 1801 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-22.4.3.tgz#0e9d57db267839ea31309119b41dc2fa31b76403" 1802 | dependencies: 1803 | chalk "^2.0.1" 1804 | glob "^7.1.1" 1805 | jest-environment-jsdom "^22.4.3" 1806 | jest-environment-node "^22.4.3" 1807 | jest-get-type "^22.4.3" 1808 | jest-jasmine2 "^22.4.3" 1809 | jest-regex-util "^22.4.3" 1810 | jest-resolve "^22.4.3" 1811 | jest-util "^22.4.3" 1812 | jest-validate "^22.4.3" 1813 | pretty-format "^22.4.3" 1814 | 1815 | jest-config@^22.4.4: 1816 | version "22.4.4" 1817 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-22.4.4.tgz#72a521188720597169cd8b4ff86934ef5752d86a" 1818 | dependencies: 1819 | chalk "^2.0.1" 1820 | glob "^7.1.1" 1821 | jest-environment-jsdom "^22.4.1" 1822 | jest-environment-node "^22.4.1" 1823 | jest-get-type "^22.1.0" 1824 | jest-jasmine2 "^22.4.4" 1825 | jest-regex-util "^22.1.0" 1826 | jest-resolve "^22.4.2" 1827 | jest-util "^22.4.1" 1828 | jest-validate "^22.4.4" 1829 | pretty-format "^22.4.0" 1830 | 1831 | jest-diff@^22.4.0, jest-diff@^22.4.3: 1832 | version "22.4.3" 1833 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-22.4.3.tgz#e18cc3feff0aeef159d02310f2686d4065378030" 1834 | dependencies: 1835 | chalk "^2.0.1" 1836 | diff "^3.2.0" 1837 | jest-get-type "^22.4.3" 1838 | pretty-format "^22.4.3" 1839 | 1840 | jest-docblock@^21.0.0: 1841 | version "21.2.0" 1842 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 1843 | 1844 | jest-docblock@^22.4.0, jest-docblock@^22.4.3: 1845 | version "22.4.3" 1846 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.4.3.tgz#50886f132b42b280c903c592373bb6e93bb68b19" 1847 | dependencies: 1848 | detect-newline "^2.1.0" 1849 | 1850 | jest-environment-jsdom@^22.4.1, jest-environment-jsdom@^22.4.3: 1851 | version "22.4.3" 1852 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-22.4.3.tgz#d67daa4155e33516aecdd35afd82d4abf0fa8a1e" 1853 | dependencies: 1854 | jest-mock "^22.4.3" 1855 | jest-util "^22.4.3" 1856 | jsdom "^11.5.1" 1857 | 1858 | jest-environment-node@^22.4.1, jest-environment-node@^22.4.3: 1859 | version "22.4.3" 1860 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-22.4.3.tgz#54c4eaa374c83dd52a9da8759be14ebe1d0b9129" 1861 | dependencies: 1862 | jest-mock "^22.4.3" 1863 | jest-util "^22.4.3" 1864 | 1865 | jest-get-type@^22.1.0, jest-get-type@^22.4.3: 1866 | version "22.4.3" 1867 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" 1868 | 1869 | jest-haste-map@^22.4.2: 1870 | version "22.4.3" 1871 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-22.4.3.tgz#25842fa2ba350200767ac27f658d58b9d5c2e20b" 1872 | dependencies: 1873 | fb-watchman "^2.0.0" 1874 | graceful-fs "^4.1.11" 1875 | jest-docblock "^22.4.3" 1876 | jest-serializer "^22.4.3" 1877 | jest-worker "^22.4.3" 1878 | micromatch "^2.3.11" 1879 | sane "^2.0.0" 1880 | 1881 | jest-jasmine2@^22.4.3: 1882 | version "22.4.3" 1883 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-22.4.3.tgz#4daf64cd14c793da9db34a7c7b8dcfe52a745965" 1884 | dependencies: 1885 | chalk "^2.0.1" 1886 | co "^4.6.0" 1887 | expect "^22.4.3" 1888 | graceful-fs "^4.1.11" 1889 | is-generator-fn "^1.0.0" 1890 | jest-diff "^22.4.3" 1891 | jest-matcher-utils "^22.4.3" 1892 | jest-message-util "^22.4.3" 1893 | jest-snapshot "^22.4.3" 1894 | jest-util "^22.4.3" 1895 | source-map-support "^0.5.0" 1896 | 1897 | jest-jasmine2@^22.4.4: 1898 | version "22.4.4" 1899 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-22.4.4.tgz#c55f92c961a141f693f869f5f081a79a10d24e23" 1900 | dependencies: 1901 | chalk "^2.0.1" 1902 | co "^4.6.0" 1903 | expect "^22.4.0" 1904 | graceful-fs "^4.1.11" 1905 | is-generator-fn "^1.0.0" 1906 | jest-diff "^22.4.0" 1907 | jest-matcher-utils "^22.4.0" 1908 | jest-message-util "^22.4.0" 1909 | jest-snapshot "^22.4.0" 1910 | jest-util "^22.4.1" 1911 | source-map-support "^0.5.0" 1912 | 1913 | jest-leak-detector@^22.4.0: 1914 | version "22.4.3" 1915 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-22.4.3.tgz#2b7b263103afae8c52b6b91241a2de40117e5b35" 1916 | dependencies: 1917 | pretty-format "^22.4.3" 1918 | 1919 | jest-matcher-utils@^22.4.0, jest-matcher-utils@^22.4.3: 1920 | version "22.4.3" 1921 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-22.4.3.tgz#4632fe428ebc73ebc194d3c7b65d37b161f710ff" 1922 | dependencies: 1923 | chalk "^2.0.1" 1924 | jest-get-type "^22.4.3" 1925 | pretty-format "^22.4.3" 1926 | 1927 | jest-message-util@^22.4.0, jest-message-util@^22.4.3: 1928 | version "22.4.3" 1929 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-22.4.3.tgz#cf3d38aafe4befddbfc455e57d65d5239e399eb7" 1930 | dependencies: 1931 | "@babel/code-frame" "^7.0.0-beta.35" 1932 | chalk "^2.0.1" 1933 | micromatch "^2.3.11" 1934 | slash "^1.0.0" 1935 | stack-utils "^1.0.1" 1936 | 1937 | jest-mock@^22.4.3: 1938 | version "22.4.3" 1939 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-22.4.3.tgz#f63ba2f07a1511772cdc7979733397df770aabc7" 1940 | 1941 | jest-regex-util@^22.1.0, jest-regex-util@^22.4.3: 1942 | version "22.4.3" 1943 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-22.4.3.tgz#a826eb191cdf22502198c5401a1fc04de9cef5af" 1944 | 1945 | jest-resolve-dependencies@^22.1.0: 1946 | version "22.4.3" 1947 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-22.4.3.tgz#e2256a5a846732dc3969cb72f3c9ad7725a8195e" 1948 | dependencies: 1949 | jest-regex-util "^22.4.3" 1950 | 1951 | jest-resolve@^22.4.2, jest-resolve@^22.4.3: 1952 | version "22.4.3" 1953 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-22.4.3.tgz#0ce9d438c8438229aa9b916968ec6b05c1abb4ea" 1954 | dependencies: 1955 | browser-resolve "^1.11.2" 1956 | chalk "^2.0.1" 1957 | 1958 | jest-runner@^22.4.4: 1959 | version "22.4.4" 1960 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-22.4.4.tgz#dfca7b7553e0fa617e7b1291aeb7ce83e540a907" 1961 | dependencies: 1962 | exit "^0.1.2" 1963 | jest-config "^22.4.4" 1964 | jest-docblock "^22.4.0" 1965 | jest-haste-map "^22.4.2" 1966 | jest-jasmine2 "^22.4.4" 1967 | jest-leak-detector "^22.4.0" 1968 | jest-message-util "^22.4.0" 1969 | jest-runtime "^22.4.4" 1970 | jest-util "^22.4.1" 1971 | jest-worker "^22.2.2" 1972 | throat "^4.0.0" 1973 | 1974 | jest-runtime@^22.4.4: 1975 | version "22.4.4" 1976 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-22.4.4.tgz#9ba7792fc75582a5be0f79af6f8fe8adea314048" 1977 | dependencies: 1978 | babel-core "^6.0.0" 1979 | babel-jest "^22.4.4" 1980 | babel-plugin-istanbul "^4.1.5" 1981 | chalk "^2.0.1" 1982 | convert-source-map "^1.4.0" 1983 | exit "^0.1.2" 1984 | graceful-fs "^4.1.11" 1985 | jest-config "^22.4.4" 1986 | jest-haste-map "^22.4.2" 1987 | jest-regex-util "^22.1.0" 1988 | jest-resolve "^22.4.2" 1989 | jest-util "^22.4.1" 1990 | jest-validate "^22.4.4" 1991 | json-stable-stringify "^1.0.1" 1992 | micromatch "^2.3.11" 1993 | realpath-native "^1.0.0" 1994 | slash "^1.0.0" 1995 | strip-bom "3.0.0" 1996 | write-file-atomic "^2.1.0" 1997 | yargs "^10.0.3" 1998 | 1999 | jest-serializer@^22.4.3: 2000 | version "22.4.3" 2001 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-22.4.3.tgz#a679b81a7f111e4766235f4f0c46d230ee0f7436" 2002 | 2003 | jest-snapshot@^22.4.0, jest-snapshot@^22.4.3: 2004 | version "22.4.3" 2005 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-22.4.3.tgz#b5c9b42846ffb9faccb76b841315ba67887362d2" 2006 | dependencies: 2007 | chalk "^2.0.1" 2008 | jest-diff "^22.4.3" 2009 | jest-matcher-utils "^22.4.3" 2010 | mkdirp "^0.5.1" 2011 | natural-compare "^1.4.0" 2012 | pretty-format "^22.4.3" 2013 | 2014 | jest-util@^22.4.1, jest-util@^22.4.3: 2015 | version "22.4.3" 2016 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-22.4.3.tgz#c70fec8eec487c37b10b0809dc064a7ecf6aafac" 2017 | dependencies: 2018 | callsites "^2.0.0" 2019 | chalk "^2.0.1" 2020 | graceful-fs "^4.1.11" 2021 | is-ci "^1.0.10" 2022 | jest-message-util "^22.4.3" 2023 | mkdirp "^0.5.1" 2024 | source-map "^0.6.0" 2025 | 2026 | jest-validate@^22.4.3: 2027 | version "22.4.3" 2028 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-22.4.3.tgz#0780954a5a7daaeec8d3c10834b9280865976b30" 2029 | dependencies: 2030 | chalk "^2.0.1" 2031 | jest-config "^22.4.3" 2032 | jest-get-type "^22.4.3" 2033 | leven "^2.1.0" 2034 | pretty-format "^22.4.3" 2035 | 2036 | jest-validate@^22.4.4: 2037 | version "22.4.4" 2038 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-22.4.4.tgz#1dd0b616ef46c995de61810d85f57119dbbcec4d" 2039 | dependencies: 2040 | chalk "^2.0.1" 2041 | jest-config "^22.4.4" 2042 | jest-get-type "^22.1.0" 2043 | leven "^2.1.0" 2044 | pretty-format "^22.4.0" 2045 | 2046 | jest-worker@^22.2.2, jest-worker@^22.4.3: 2047 | version "22.4.3" 2048 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-22.4.3.tgz#5c421417cba1c0abf64bf56bd5fb7968d79dd40b" 2049 | dependencies: 2050 | merge-stream "^1.0.1" 2051 | 2052 | jest@^22.4.4: 2053 | version "22.4.4" 2054 | resolved "https://registry.yarnpkg.com/jest/-/jest-22.4.4.tgz#ffb36c9654b339a13e10b3d4b338eb3e9d49f6eb" 2055 | dependencies: 2056 | import-local "^1.0.0" 2057 | jest-cli "^22.4.4" 2058 | 2059 | js-beautify@^1.6.7: 2060 | version "1.7.5" 2061 | resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.7.5.tgz#69d9651ef60dbb649f65527b53674950138a7919" 2062 | dependencies: 2063 | config-chain "~1.1.5" 2064 | editorconfig "^0.13.2" 2065 | mkdirp "~0.5.0" 2066 | nopt "~3.0.1" 2067 | 2068 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2069 | version "3.0.2" 2070 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2071 | 2072 | js-yaml@^3.7.0: 2073 | version "3.11.0" 2074 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef" 2075 | dependencies: 2076 | argparse "^1.0.7" 2077 | esprima "^4.0.0" 2078 | 2079 | jsbn@~0.1.0: 2080 | version "0.1.1" 2081 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2082 | 2083 | jsdom@^11.5.1: 2084 | version "11.6.2" 2085 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.6.2.tgz#25d1ef332d48adf77fc5221fe2619967923f16bb" 2086 | dependencies: 2087 | abab "^1.0.4" 2088 | acorn "^5.3.0" 2089 | acorn-globals "^4.1.0" 2090 | array-equal "^1.0.0" 2091 | browser-process-hrtime "^0.1.2" 2092 | content-type-parser "^1.0.2" 2093 | cssom ">= 0.3.2 < 0.4.0" 2094 | cssstyle ">= 0.2.37 < 0.3.0" 2095 | domexception "^1.0.0" 2096 | escodegen "^1.9.0" 2097 | html-encoding-sniffer "^1.0.2" 2098 | left-pad "^1.2.0" 2099 | nwmatcher "^1.4.3" 2100 | parse5 "4.0.0" 2101 | pn "^1.1.0" 2102 | request "^2.83.0" 2103 | request-promise-native "^1.0.5" 2104 | sax "^1.2.4" 2105 | symbol-tree "^3.2.2" 2106 | tough-cookie "^2.3.3" 2107 | w3c-hr-time "^1.0.1" 2108 | webidl-conversions "^4.0.2" 2109 | whatwg-encoding "^1.0.3" 2110 | whatwg-url "^6.4.0" 2111 | ws "^4.0.0" 2112 | xml-name-validator "^3.0.0" 2113 | 2114 | jsesc@^1.3.0: 2115 | version "1.3.0" 2116 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2117 | 2118 | json-parse-better-errors@^1.0.1: 2119 | version "1.0.1" 2120 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz#50183cd1b2d25275de069e9e71b467ac9eab973a" 2121 | 2122 | json-schema-traverse@^0.3.0: 2123 | version "0.3.1" 2124 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2125 | 2126 | json-schema@0.2.3: 2127 | version "0.2.3" 2128 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2129 | 2130 | json-stable-stringify@^1.0.1: 2131 | version "1.0.1" 2132 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2133 | dependencies: 2134 | jsonify "~0.0.0" 2135 | 2136 | json-stringify-safe@~5.0.1: 2137 | version "5.0.1" 2138 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2139 | 2140 | json5@^0.5.1: 2141 | version "0.5.1" 2142 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2143 | 2144 | jsonfile@^4.0.0: 2145 | version "4.0.0" 2146 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 2147 | optionalDependencies: 2148 | graceful-fs "^4.1.6" 2149 | 2150 | jsonify@~0.0.0: 2151 | version "0.0.0" 2152 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2153 | 2154 | jsprim@^1.2.2: 2155 | version "1.4.1" 2156 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2157 | dependencies: 2158 | assert-plus "1.0.0" 2159 | extsprintf "1.3.0" 2160 | json-schema "0.2.3" 2161 | verror "1.10.0" 2162 | 2163 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2164 | version "3.2.2" 2165 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2166 | dependencies: 2167 | is-buffer "^1.1.5" 2168 | 2169 | kind-of@^4.0.0: 2170 | version "4.0.0" 2171 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2172 | dependencies: 2173 | is-buffer "^1.1.5" 2174 | 2175 | kind-of@^5.0.0: 2176 | version "5.1.0" 2177 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2178 | 2179 | kind-of@^6.0.0, kind-of@^6.0.2: 2180 | version "6.0.2" 2181 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2182 | 2183 | lcid@^1.0.0: 2184 | version "1.0.0" 2185 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2186 | dependencies: 2187 | invert-kv "^1.0.0" 2188 | 2189 | left-pad@^1.2.0: 2190 | version "1.2.0" 2191 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.2.0.tgz#d30a73c6b8201d8f7d8e7956ba9616087a68e0ee" 2192 | 2193 | leven@^2.1.0: 2194 | version "2.1.0" 2195 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2196 | 2197 | levn@~0.3.0: 2198 | version "0.3.0" 2199 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2200 | dependencies: 2201 | prelude-ls "~1.1.2" 2202 | type-check "~0.3.2" 2203 | 2204 | load-json-file@^1.0.0: 2205 | version "1.1.0" 2206 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2207 | dependencies: 2208 | graceful-fs "^4.1.2" 2209 | parse-json "^2.2.0" 2210 | pify "^2.0.0" 2211 | pinkie-promise "^2.0.0" 2212 | strip-bom "^2.0.0" 2213 | 2214 | load-json-file@^4.0.0: 2215 | version "4.0.0" 2216 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 2217 | dependencies: 2218 | graceful-fs "^4.1.2" 2219 | parse-json "^4.0.0" 2220 | pify "^3.0.0" 2221 | strip-bom "^3.0.0" 2222 | 2223 | locate-path@^2.0.0: 2224 | version "2.0.0" 2225 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2226 | dependencies: 2227 | p-locate "^2.0.0" 2228 | path-exists "^3.0.0" 2229 | 2230 | lodash.sortby@^4.7.0: 2231 | version "4.7.0" 2232 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 2233 | 2234 | lodash@^4.13.1, lodash@^4.14.0, lodash@^4.17.10, lodash@^4.17.4: 2235 | version "4.17.21" 2236 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 2237 | 2238 | loose-envify@^1.0.0, loose-envify@^1.1.0: 2239 | version "1.3.1" 2240 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2241 | dependencies: 2242 | js-tokens "^3.0.0" 2243 | 2244 | lru-cache@^3.2.0: 2245 | version "3.2.0" 2246 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-3.2.0.tgz#71789b3b7f5399bec8565dda38aa30d2a097efee" 2247 | dependencies: 2248 | pseudomap "^1.0.1" 2249 | 2250 | lru-cache@^4.0.1: 2251 | version "4.1.2" 2252 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f" 2253 | dependencies: 2254 | pseudomap "^1.0.2" 2255 | yallist "^2.1.2" 2256 | 2257 | makeerror@1.0.x: 2258 | version "1.0.11" 2259 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2260 | dependencies: 2261 | tmpl "1.0.x" 2262 | 2263 | map-cache@^0.2.2: 2264 | version "0.2.2" 2265 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2266 | 2267 | map-stream@~0.1.0: 2268 | version "0.1.0" 2269 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 2270 | 2271 | map-visit@^1.0.0: 2272 | version "1.0.0" 2273 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2274 | dependencies: 2275 | object-visit "^1.0.0" 2276 | 2277 | mem@^1.1.0: 2278 | version "1.1.0" 2279 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2280 | dependencies: 2281 | mimic-fn "^1.0.0" 2282 | 2283 | memorystream@^0.3.1: 2284 | version "0.3.1" 2285 | resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" 2286 | 2287 | merge-stream@^1.0.1: 2288 | version "1.0.1" 2289 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 2290 | dependencies: 2291 | readable-stream "^2.0.1" 2292 | 2293 | merge@^1.1.3: 2294 | version "1.2.1" 2295 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" 2296 | 2297 | micromatch@^2.1.5, micromatch@^2.3.11: 2298 | version "2.3.11" 2299 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2300 | dependencies: 2301 | arr-diff "^2.0.0" 2302 | array-unique "^0.2.1" 2303 | braces "^1.8.2" 2304 | expand-brackets "^0.1.4" 2305 | extglob "^0.3.1" 2306 | filename-regex "^2.0.0" 2307 | is-extglob "^1.0.0" 2308 | is-glob "^2.0.1" 2309 | kind-of "^3.0.2" 2310 | normalize-path "^2.0.1" 2311 | object.omit "^2.0.0" 2312 | parse-glob "^3.0.4" 2313 | regex-cache "^0.4.2" 2314 | 2315 | micromatch@^3.1.4, micromatch@^3.1.8: 2316 | version "3.1.10" 2317 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2318 | dependencies: 2319 | arr-diff "^4.0.0" 2320 | array-unique "^0.3.2" 2321 | braces "^2.3.1" 2322 | define-property "^2.0.2" 2323 | extend-shallow "^3.0.2" 2324 | extglob "^2.0.4" 2325 | fragment-cache "^0.2.1" 2326 | kind-of "^6.0.2" 2327 | nanomatch "^1.2.9" 2328 | object.pick "^1.3.0" 2329 | regex-not "^1.0.0" 2330 | snapdragon "^0.8.1" 2331 | to-regex "^3.0.2" 2332 | 2333 | mime-db@~1.33.0: 2334 | version "1.33.0" 2335 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 2336 | 2337 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 2338 | version "2.1.18" 2339 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 2340 | dependencies: 2341 | mime-db "~1.33.0" 2342 | 2343 | mimic-fn@^1.0.0: 2344 | version "1.2.0" 2345 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2346 | 2347 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2348 | version "3.0.4" 2349 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2350 | dependencies: 2351 | brace-expansion "^1.1.7" 2352 | 2353 | minimist@0.0.8: 2354 | version "0.0.8" 2355 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2356 | 2357 | minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5: 2358 | version "1.2.5" 2359 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2360 | 2361 | mixin-deep@^1.2.0: 2362 | version "1.3.2" 2363 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 2364 | dependencies: 2365 | for-in "^1.0.2" 2366 | is-extendable "^1.0.1" 2367 | 2368 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0: 2369 | version "0.5.1" 2370 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2371 | dependencies: 2372 | minimist "0.0.8" 2373 | 2374 | ms@2.0.0: 2375 | version "2.0.0" 2376 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2377 | 2378 | nan@^2.3.0: 2379 | version "2.10.0" 2380 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 2381 | 2382 | nanomatch@^1.2.9: 2383 | version "1.2.9" 2384 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 2385 | dependencies: 2386 | arr-diff "^4.0.0" 2387 | array-unique "^0.3.2" 2388 | define-property "^2.0.2" 2389 | extend-shallow "^3.0.2" 2390 | fragment-cache "^0.2.1" 2391 | is-odd "^2.0.0" 2392 | is-windows "^1.0.2" 2393 | kind-of "^6.0.2" 2394 | object.pick "^1.3.0" 2395 | regex-not "^1.0.0" 2396 | snapdragon "^0.8.1" 2397 | to-regex "^3.0.1" 2398 | 2399 | natural-compare@^1.4.0: 2400 | version "1.4.0" 2401 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2402 | 2403 | neo-async@^2.6.0: 2404 | version "2.6.2" 2405 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 2406 | 2407 | nice-try@^1.0.4: 2408 | version "1.0.4" 2409 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.4.tgz#d93962f6c52f2c1558c0fbda6d512819f1efe1c4" 2410 | 2411 | node-int64@^0.4.0: 2412 | version "0.4.0" 2413 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2414 | 2415 | node-notifier@^5.2.1: 2416 | version "5.2.1" 2417 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" 2418 | dependencies: 2419 | growly "^1.3.0" 2420 | semver "^5.4.1" 2421 | shellwords "^0.1.1" 2422 | which "^1.3.0" 2423 | 2424 | node-pre-gyp@^0.6.39: 2425 | version "0.6.39" 2426 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2427 | dependencies: 2428 | detect-libc "^1.0.2" 2429 | hawk "3.1.3" 2430 | mkdirp "^0.5.1" 2431 | nopt "^4.0.1" 2432 | npmlog "^4.0.2" 2433 | rc "^1.1.7" 2434 | request "2.81.0" 2435 | rimraf "^2.6.1" 2436 | semver "^5.3.0" 2437 | tar "^2.2.1" 2438 | tar-pack "^3.4.0" 2439 | 2440 | nopt@^4.0.1: 2441 | version "4.0.1" 2442 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2443 | dependencies: 2444 | abbrev "1" 2445 | osenv "^0.1.4" 2446 | 2447 | nopt@~3.0.1: 2448 | version "3.0.6" 2449 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2450 | dependencies: 2451 | abbrev "1" 2452 | 2453 | normalize-package-data@^2.3.2: 2454 | version "2.4.0" 2455 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2456 | dependencies: 2457 | hosted-git-info "^2.1.4" 2458 | is-builtin-module "^1.0.0" 2459 | semver "2 || 3 || 4 || 5" 2460 | validate-npm-package-license "^3.0.1" 2461 | 2462 | normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1: 2463 | version "2.1.1" 2464 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2465 | dependencies: 2466 | remove-trailing-separator "^1.0.1" 2467 | 2468 | npm-run-all@^4.1.3: 2469 | version "4.1.3" 2470 | resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.3.tgz#49f15b55a66bb4101664ce270cb18e7103f8f185" 2471 | dependencies: 2472 | ansi-styles "^3.2.0" 2473 | chalk "^2.1.0" 2474 | cross-spawn "^6.0.4" 2475 | memorystream "^0.3.1" 2476 | minimatch "^3.0.4" 2477 | ps-tree "^1.1.0" 2478 | read-pkg "^3.0.0" 2479 | shell-quote "^1.6.1" 2480 | string.prototype.padend "^3.0.0" 2481 | 2482 | npm-run-path@^2.0.0: 2483 | version "2.0.2" 2484 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2485 | dependencies: 2486 | path-key "^2.0.0" 2487 | 2488 | npmlog@^4.0.2: 2489 | version "4.1.2" 2490 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2491 | dependencies: 2492 | are-we-there-yet "~1.1.2" 2493 | console-control-strings "~1.1.0" 2494 | gauge "~2.7.3" 2495 | set-blocking "~2.0.0" 2496 | 2497 | number-is-nan@^1.0.0: 2498 | version "1.0.1" 2499 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2500 | 2501 | nwmatcher@^1.4.3: 2502 | version "1.4.4" 2503 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.4.tgz#2285631f34a95f0d0395cd900c96ed39b58f346e" 2504 | 2505 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 2506 | version "0.8.2" 2507 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2508 | 2509 | object-assign@^4.1.0: 2510 | version "4.1.1" 2511 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2512 | 2513 | object-copy@^0.1.0: 2514 | version "0.1.0" 2515 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2516 | dependencies: 2517 | copy-descriptor "^0.1.0" 2518 | define-property "^0.2.5" 2519 | kind-of "^3.0.3" 2520 | 2521 | object-keys@^1.0.8: 2522 | version "1.0.11" 2523 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2524 | 2525 | object-visit@^1.0.0: 2526 | version "1.0.1" 2527 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2528 | dependencies: 2529 | isobject "^3.0.0" 2530 | 2531 | object.getownpropertydescriptors@^2.0.3: 2532 | version "2.0.3" 2533 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 2534 | dependencies: 2535 | define-properties "^1.1.2" 2536 | es-abstract "^1.5.1" 2537 | 2538 | object.omit@^2.0.0: 2539 | version "2.0.1" 2540 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2541 | dependencies: 2542 | for-own "^0.1.4" 2543 | is-extendable "^0.1.1" 2544 | 2545 | object.pick@^1.3.0: 2546 | version "1.3.0" 2547 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2548 | dependencies: 2549 | isobject "^3.0.1" 2550 | 2551 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2552 | version "1.4.0" 2553 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2554 | dependencies: 2555 | wrappy "1" 2556 | 2557 | optionator@^0.8.1: 2558 | version "0.8.2" 2559 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2560 | dependencies: 2561 | deep-is "~0.1.3" 2562 | fast-levenshtein "~2.0.4" 2563 | levn "~0.3.0" 2564 | prelude-ls "~1.1.2" 2565 | type-check "~0.3.2" 2566 | wordwrap "~1.0.0" 2567 | 2568 | os-homedir@^1.0.0: 2569 | version "1.0.2" 2570 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2571 | 2572 | os-locale@^2.0.0: 2573 | version "2.1.0" 2574 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2575 | dependencies: 2576 | execa "^0.7.0" 2577 | lcid "^1.0.0" 2578 | mem "^1.1.0" 2579 | 2580 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2581 | version "1.0.2" 2582 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2583 | 2584 | osenv@^0.1.4: 2585 | version "0.1.5" 2586 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2587 | dependencies: 2588 | os-homedir "^1.0.0" 2589 | os-tmpdir "^1.0.0" 2590 | 2591 | p-finally@^1.0.0: 2592 | version "1.0.0" 2593 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2594 | 2595 | p-limit@^1.1.0: 2596 | version "1.2.0" 2597 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 2598 | dependencies: 2599 | p-try "^1.0.0" 2600 | 2601 | p-locate@^2.0.0: 2602 | version "2.0.0" 2603 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2604 | dependencies: 2605 | p-limit "^1.1.0" 2606 | 2607 | p-try@^1.0.0: 2608 | version "1.0.0" 2609 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2610 | 2611 | paralleljs@^0.2.1: 2612 | version "0.2.1" 2613 | resolved "https://registry.yarnpkg.com/paralleljs/-/paralleljs-0.2.1.tgz#ebca745d3e09c01e2bebcc14858891ff4510e926" 2614 | 2615 | parse-glob@^3.0.4: 2616 | version "3.0.4" 2617 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2618 | dependencies: 2619 | glob-base "^0.3.0" 2620 | is-dotfile "^1.0.0" 2621 | is-extglob "^1.0.0" 2622 | is-glob "^2.0.0" 2623 | 2624 | parse-json@^2.2.0: 2625 | version "2.2.0" 2626 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2627 | dependencies: 2628 | error-ex "^1.2.0" 2629 | 2630 | parse-json@^4.0.0: 2631 | version "4.0.0" 2632 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2633 | dependencies: 2634 | error-ex "^1.3.1" 2635 | json-parse-better-errors "^1.0.1" 2636 | 2637 | parse5@4.0.0: 2638 | version "4.0.0" 2639 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" 2640 | 2641 | pascalcase@^0.1.1: 2642 | version "0.1.1" 2643 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2644 | 2645 | path-exists@^2.0.0: 2646 | version "2.1.0" 2647 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2648 | dependencies: 2649 | pinkie-promise "^2.0.0" 2650 | 2651 | path-exists@^3.0.0: 2652 | version "3.0.0" 2653 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2654 | 2655 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2656 | version "1.0.1" 2657 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2658 | 2659 | path-key@^2.0.0, path-key@^2.0.1: 2660 | version "2.0.1" 2661 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2662 | 2663 | path-parse@^1.0.5: 2664 | version "1.0.5" 2665 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2666 | 2667 | path-type@^1.0.0: 2668 | version "1.1.0" 2669 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2670 | dependencies: 2671 | graceful-fs "^4.1.2" 2672 | pify "^2.0.0" 2673 | pinkie-promise "^2.0.0" 2674 | 2675 | path-type@^3.0.0: 2676 | version "3.0.0" 2677 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 2678 | dependencies: 2679 | pify "^3.0.0" 2680 | 2681 | pause-stream@0.0.11: 2682 | version "0.0.11" 2683 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 2684 | dependencies: 2685 | through "~2.3" 2686 | 2687 | performance-now@^0.2.0: 2688 | version "0.2.0" 2689 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2690 | 2691 | performance-now@^2.1.0: 2692 | version "2.1.0" 2693 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2694 | 2695 | pify@^2.0.0: 2696 | version "2.3.0" 2697 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2698 | 2699 | pify@^3.0.0: 2700 | version "3.0.0" 2701 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2702 | 2703 | pinkie-promise@^2.0.0: 2704 | version "2.0.1" 2705 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2706 | dependencies: 2707 | pinkie "^2.0.0" 2708 | 2709 | pinkie@^2.0.0: 2710 | version "2.0.4" 2711 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2712 | 2713 | pkg-dir@^2.0.0: 2714 | version "2.0.0" 2715 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2716 | dependencies: 2717 | find-up "^2.1.0" 2718 | 2719 | pn@^1.1.0: 2720 | version "1.1.0" 2721 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" 2722 | 2723 | posix-character-classes@^0.1.0: 2724 | version "0.1.1" 2725 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2726 | 2727 | prelude-ls@~1.1.2: 2728 | version "1.1.2" 2729 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2730 | 2731 | preserve@^0.2.0: 2732 | version "0.2.0" 2733 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2734 | 2735 | prettier@^1.12.1: 2736 | version "1.12.1" 2737 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.12.1.tgz#c1ad20e803e7749faf905a409d2367e06bbe7325" 2738 | 2739 | pretty-format@^22.4.0, pretty-format@^22.4.3: 2740 | version "22.4.3" 2741 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-22.4.3.tgz#f873d780839a9c02e9664c8a082e9ee79eaac16f" 2742 | dependencies: 2743 | ansi-regex "^3.0.0" 2744 | ansi-styles "^3.2.0" 2745 | 2746 | private@^0.1.7, private@^0.1.8: 2747 | version "0.1.8" 2748 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2749 | 2750 | process-nextick-args@~2.0.0: 2751 | version "2.0.0" 2752 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2753 | 2754 | proto-list@~1.2.1: 2755 | version "1.2.4" 2756 | resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 2757 | 2758 | ps-tree@^1.1.0: 2759 | version "1.1.0" 2760 | resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" 2761 | dependencies: 2762 | event-stream "~3.3.0" 2763 | 2764 | pseudomap@^1.0.1, pseudomap@^1.0.2: 2765 | version "1.0.2" 2766 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2767 | 2768 | punycode@^1.4.1: 2769 | version "1.4.1" 2770 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2771 | 2772 | punycode@^2.1.0: 2773 | version "2.1.0" 2774 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d" 2775 | 2776 | qs@~6.4.0: 2777 | version "6.4.0" 2778 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2779 | 2780 | qs@~6.5.1: 2781 | version "6.5.1" 2782 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 2783 | 2784 | randomatic@^1.1.3: 2785 | version "1.1.7" 2786 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2787 | dependencies: 2788 | is-number "^3.0.0" 2789 | kind-of "^4.0.0" 2790 | 2791 | rc@^1.1.7: 2792 | version "1.2.6" 2793 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.6.tgz#eb18989c6d4f4f162c399f79ddd29f3835568092" 2794 | dependencies: 2795 | deep-extend "~0.4.0" 2796 | ini "~1.3.0" 2797 | minimist "^1.2.0" 2798 | strip-json-comments "~2.0.1" 2799 | 2800 | read-pkg-up@^1.0.1: 2801 | version "1.0.1" 2802 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2803 | dependencies: 2804 | find-up "^1.0.0" 2805 | read-pkg "^1.0.0" 2806 | 2807 | read-pkg@^1.0.0: 2808 | version "1.1.0" 2809 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2810 | dependencies: 2811 | load-json-file "^1.0.0" 2812 | normalize-package-data "^2.3.2" 2813 | path-type "^1.0.0" 2814 | 2815 | read-pkg@^3.0.0: 2816 | version "3.0.0" 2817 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 2818 | dependencies: 2819 | load-json-file "^4.0.0" 2820 | normalize-package-data "^2.3.2" 2821 | path-type "^3.0.0" 2822 | 2823 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 2824 | version "2.3.5" 2825 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.5.tgz#b4f85003a938cbb6ecbce2a124fb1012bd1a838d" 2826 | dependencies: 2827 | core-util-is "~1.0.0" 2828 | inherits "~2.0.3" 2829 | isarray "~1.0.0" 2830 | process-nextick-args "~2.0.0" 2831 | safe-buffer "~5.1.1" 2832 | string_decoder "~1.0.3" 2833 | util-deprecate "~1.0.1" 2834 | 2835 | readdirp@^2.0.0: 2836 | version "2.1.0" 2837 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2838 | dependencies: 2839 | graceful-fs "^4.1.2" 2840 | minimatch "^3.0.2" 2841 | readable-stream "^2.0.2" 2842 | set-immediate-shim "^1.0.1" 2843 | 2844 | realpath-native@^1.0.0: 2845 | version "1.0.0" 2846 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0" 2847 | dependencies: 2848 | util.promisify "^1.0.0" 2849 | 2850 | redux@^4.0.0: 2851 | version "4.0.0" 2852 | resolved "https://registry.yarnpkg.com/redux/-/redux-4.0.0.tgz#aa698a92b729315d22b34a0553d7e6533555cc03" 2853 | dependencies: 2854 | loose-envify "^1.1.0" 2855 | symbol-observable "^1.2.0" 2856 | 2857 | regenerator-runtime@^0.11.0: 2858 | version "0.11.1" 2859 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2860 | 2861 | regex-cache@^0.4.2: 2862 | version "0.4.4" 2863 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2864 | dependencies: 2865 | is-equal-shallow "^0.1.3" 2866 | 2867 | regex-not@^1.0.0, regex-not@^1.0.2: 2868 | version "1.0.2" 2869 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2870 | dependencies: 2871 | extend-shallow "^3.0.2" 2872 | safe-regex "^1.1.0" 2873 | 2874 | remove-trailing-separator@^1.0.1: 2875 | version "1.1.0" 2876 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2877 | 2878 | repeat-element@^1.1.2: 2879 | version "1.1.2" 2880 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2881 | 2882 | repeat-string@^1.5.2, repeat-string@^1.6.1: 2883 | version "1.6.1" 2884 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2885 | 2886 | repeating@^2.0.0: 2887 | version "2.0.1" 2888 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2889 | dependencies: 2890 | is-finite "^1.0.0" 2891 | 2892 | request-promise-core@1.1.1: 2893 | version "1.1.1" 2894 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 2895 | dependencies: 2896 | lodash "^4.13.1" 2897 | 2898 | request-promise-native@^1.0.5: 2899 | version "1.0.5" 2900 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" 2901 | dependencies: 2902 | request-promise-core "1.1.1" 2903 | stealthy-require "^1.1.0" 2904 | tough-cookie ">=2.3.3" 2905 | 2906 | request@2.81.0: 2907 | version "2.81.0" 2908 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2909 | dependencies: 2910 | aws-sign2 "~0.6.0" 2911 | aws4 "^1.2.1" 2912 | caseless "~0.12.0" 2913 | combined-stream "~1.0.5" 2914 | extend "~3.0.0" 2915 | forever-agent "~0.6.1" 2916 | form-data "~2.1.1" 2917 | har-validator "~4.2.1" 2918 | hawk "~3.1.3" 2919 | http-signature "~1.1.0" 2920 | is-typedarray "~1.0.0" 2921 | isstream "~0.1.2" 2922 | json-stringify-safe "~5.0.1" 2923 | mime-types "~2.1.7" 2924 | oauth-sign "~0.8.1" 2925 | performance-now "^0.2.0" 2926 | qs "~6.4.0" 2927 | safe-buffer "^5.0.1" 2928 | stringstream "~0.0.4" 2929 | tough-cookie "~2.3.0" 2930 | tunnel-agent "^0.6.0" 2931 | uuid "^3.0.0" 2932 | 2933 | request@^2.83.0: 2934 | version "2.85.0" 2935 | resolved "https://registry.yarnpkg.com/request/-/request-2.85.0.tgz#5a03615a47c61420b3eb99b7dba204f83603e1fa" 2936 | dependencies: 2937 | aws-sign2 "~0.7.0" 2938 | aws4 "^1.6.0" 2939 | caseless "~0.12.0" 2940 | combined-stream "~1.0.5" 2941 | extend "~3.0.1" 2942 | forever-agent "~0.6.1" 2943 | form-data "~2.3.1" 2944 | har-validator "~5.0.3" 2945 | hawk "~6.0.2" 2946 | http-signature "~1.2.0" 2947 | is-typedarray "~1.0.0" 2948 | isstream "~0.1.2" 2949 | json-stringify-safe "~5.0.1" 2950 | mime-types "~2.1.17" 2951 | oauth-sign "~0.8.2" 2952 | performance-now "^2.1.0" 2953 | qs "~6.5.1" 2954 | safe-buffer "^5.1.1" 2955 | stringstream "~0.0.5" 2956 | tough-cookie "~2.3.3" 2957 | tunnel-agent "^0.6.0" 2958 | uuid "^3.1.0" 2959 | 2960 | require-directory@^2.1.1: 2961 | version "2.1.1" 2962 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2963 | 2964 | require-main-filename@^1.0.1: 2965 | version "1.0.1" 2966 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2967 | 2968 | resolve-cwd@^2.0.0: 2969 | version "2.0.0" 2970 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 2971 | dependencies: 2972 | resolve-from "^3.0.0" 2973 | 2974 | resolve-from@^3.0.0: 2975 | version "3.0.0" 2976 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2977 | 2978 | resolve-url@^0.2.1: 2979 | version "0.2.1" 2980 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2981 | 2982 | resolve@1.1.7: 2983 | version "1.1.7" 2984 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2985 | 2986 | resolve@^1.1.7, resolve@^1.3.2: 2987 | version "1.6.0" 2988 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.6.0.tgz#0fbd21278b27b4004481c395349e7aba60a9ff5c" 2989 | dependencies: 2990 | path-parse "^1.0.5" 2991 | 2992 | ret@~0.1.10: 2993 | version "0.1.15" 2994 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2995 | 2996 | rimraf@2, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2: 2997 | version "2.6.2" 2998 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2999 | dependencies: 3000 | glob "^7.0.5" 3001 | 3002 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3003 | version "5.1.1" 3004 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3005 | 3006 | safe-regex@^1.1.0: 3007 | version "1.1.0" 3008 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3009 | dependencies: 3010 | ret "~0.1.10" 3011 | 3012 | sane@^2.0.0: 3013 | version "2.5.0" 3014 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.5.0.tgz#6359cd676f5efd9988b264d8ce3b827dd6b27bec" 3015 | dependencies: 3016 | anymatch "^2.0.0" 3017 | exec-sh "^0.2.0" 3018 | fb-watchman "^2.0.0" 3019 | micromatch "^3.1.4" 3020 | minimist "^1.1.1" 3021 | walker "~1.0.5" 3022 | watch "~0.18.0" 3023 | optionalDependencies: 3024 | fsevents "^1.1.1" 3025 | 3026 | sax@^1.2.4: 3027 | version "1.2.4" 3028 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3029 | 3030 | "semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0: 3031 | version "5.5.0" 3032 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 3033 | 3034 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3035 | version "2.0.0" 3036 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3037 | 3038 | set-immediate-shim@^1.0.1: 3039 | version "1.0.1" 3040 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3041 | 3042 | set-value@^0.4.3: 3043 | version "0.4.3" 3044 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 3045 | dependencies: 3046 | extend-shallow "^2.0.1" 3047 | is-extendable "^0.1.1" 3048 | is-plain-object "^2.0.1" 3049 | to-object-path "^0.3.0" 3050 | 3051 | set-value@^2.0.0: 3052 | version "2.0.0" 3053 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3054 | dependencies: 3055 | extend-shallow "^2.0.1" 3056 | is-extendable "^0.1.1" 3057 | is-plain-object "^2.0.3" 3058 | split-string "^3.0.1" 3059 | 3060 | shebang-command@^1.2.0: 3061 | version "1.2.0" 3062 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3063 | dependencies: 3064 | shebang-regex "^1.0.0" 3065 | 3066 | shebang-regex@^1.0.0: 3067 | version "1.0.0" 3068 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3069 | 3070 | shell-quote@^1.6.1: 3071 | version "1.6.1" 3072 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 3073 | dependencies: 3074 | array-filter "~0.0.0" 3075 | array-map "~0.0.0" 3076 | array-reduce "~0.0.0" 3077 | jsonify "~0.0.0" 3078 | 3079 | shellwords@^0.1.1: 3080 | version "0.1.1" 3081 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3082 | 3083 | sigmund@^1.0.1: 3084 | version "1.0.1" 3085 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 3086 | 3087 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3088 | version "3.0.2" 3089 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3090 | 3091 | slash@^1.0.0: 3092 | version "1.0.0" 3093 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3094 | 3095 | snapdragon-node@^2.0.1: 3096 | version "2.1.1" 3097 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3098 | dependencies: 3099 | define-property "^1.0.0" 3100 | isobject "^3.0.0" 3101 | snapdragon-util "^3.0.1" 3102 | 3103 | snapdragon-util@^3.0.1: 3104 | version "3.0.1" 3105 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3106 | dependencies: 3107 | kind-of "^3.2.0" 3108 | 3109 | snapdragon@^0.8.1: 3110 | version "0.8.2" 3111 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3112 | dependencies: 3113 | base "^0.11.1" 3114 | debug "^2.2.0" 3115 | define-property "^0.2.5" 3116 | extend-shallow "^2.0.1" 3117 | map-cache "^0.2.2" 3118 | source-map "^0.5.6" 3119 | source-map-resolve "^0.5.0" 3120 | use "^3.1.0" 3121 | 3122 | sntp@1.x.x: 3123 | version "1.0.9" 3124 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3125 | dependencies: 3126 | hoek "2.x.x" 3127 | 3128 | sntp@2.x.x: 3129 | version "2.1.0" 3130 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 3131 | dependencies: 3132 | hoek "4.x.x" 3133 | 3134 | source-map-resolve@^0.5.0: 3135 | version "0.5.1" 3136 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a" 3137 | dependencies: 3138 | atob "^2.0.0" 3139 | decode-uri-component "^0.2.0" 3140 | resolve-url "^0.2.1" 3141 | source-map-url "^0.4.0" 3142 | urix "^0.1.0" 3143 | 3144 | source-map-support@^0.4.15: 3145 | version "0.4.18" 3146 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3147 | dependencies: 3148 | source-map "^0.5.6" 3149 | 3150 | source-map-support@^0.5.0: 3151 | version "0.5.4" 3152 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.4.tgz#54456efa89caa9270af7cd624cc2f123e51fbae8" 3153 | dependencies: 3154 | source-map "^0.6.0" 3155 | 3156 | source-map-support@^0.5.5: 3157 | version "0.5.6" 3158 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.6.tgz#4435cee46b1aab62b8e8610ce60f788091c51c13" 3159 | dependencies: 3160 | buffer-from "^1.0.0" 3161 | source-map "^0.6.0" 3162 | 3163 | source-map-url@^0.4.0: 3164 | version "0.4.0" 3165 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3166 | 3167 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7: 3168 | version "0.5.7" 3169 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3170 | 3171 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 3172 | version "0.6.1" 3173 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3174 | 3175 | spdx-correct@^3.0.0: 3176 | version "3.0.0" 3177 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 3178 | dependencies: 3179 | spdx-expression-parse "^3.0.0" 3180 | spdx-license-ids "^3.0.0" 3181 | 3182 | spdx-exceptions@^2.1.0: 3183 | version "2.1.0" 3184 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 3185 | 3186 | spdx-expression-parse@^3.0.0: 3187 | version "3.0.0" 3188 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 3189 | dependencies: 3190 | spdx-exceptions "^2.1.0" 3191 | spdx-license-ids "^3.0.0" 3192 | 3193 | spdx-license-ids@^3.0.0: 3194 | version "3.0.0" 3195 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 3196 | 3197 | split-string@^3.0.1, split-string@^3.0.2: 3198 | version "3.1.0" 3199 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3200 | dependencies: 3201 | extend-shallow "^3.0.0" 3202 | 3203 | split@0.3: 3204 | version "0.3.3" 3205 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 3206 | dependencies: 3207 | through "2" 3208 | 3209 | sprintf-js@~1.0.2: 3210 | version "1.0.3" 3211 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3212 | 3213 | sshpk@^1.7.0: 3214 | version "1.14.1" 3215 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb" 3216 | dependencies: 3217 | asn1 "~0.2.3" 3218 | assert-plus "^1.0.0" 3219 | dashdash "^1.12.0" 3220 | getpass "^0.1.1" 3221 | optionalDependencies: 3222 | bcrypt-pbkdf "^1.0.0" 3223 | ecc-jsbn "~0.1.1" 3224 | jsbn "~0.1.0" 3225 | tweetnacl "~0.14.0" 3226 | 3227 | stack-utils@^1.0.1: 3228 | version "1.0.1" 3229 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 3230 | 3231 | static-extend@^0.1.1: 3232 | version "0.1.2" 3233 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3234 | dependencies: 3235 | define-property "^0.2.5" 3236 | object-copy "^0.1.0" 3237 | 3238 | stealthy-require@^1.1.0: 3239 | version "1.1.1" 3240 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 3241 | 3242 | stream-combiner@~0.0.4: 3243 | version "0.0.4" 3244 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 3245 | dependencies: 3246 | duplexer "~0.1.1" 3247 | 3248 | string-length@^2.0.0: 3249 | version "2.0.0" 3250 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 3251 | dependencies: 3252 | astral-regex "^1.0.0" 3253 | strip-ansi "^4.0.0" 3254 | 3255 | string-width@^1.0.1, string-width@^1.0.2: 3256 | version "1.0.2" 3257 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3258 | dependencies: 3259 | code-point-at "^1.0.0" 3260 | is-fullwidth-code-point "^1.0.0" 3261 | strip-ansi "^3.0.0" 3262 | 3263 | string-width@^2.0.0, string-width@^2.1.1: 3264 | version "2.1.1" 3265 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3266 | dependencies: 3267 | is-fullwidth-code-point "^2.0.0" 3268 | strip-ansi "^4.0.0" 3269 | 3270 | string.prototype.padend@^3.0.0: 3271 | version "3.0.0" 3272 | resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.0.0.tgz#f3aaef7c1719f170c5eab1c32bf780d96e21f2f0" 3273 | dependencies: 3274 | define-properties "^1.1.2" 3275 | es-abstract "^1.4.3" 3276 | function-bind "^1.0.2" 3277 | 3278 | string_decoder@~1.0.3: 3279 | version "1.0.3" 3280 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3281 | dependencies: 3282 | safe-buffer "~5.1.0" 3283 | 3284 | stringstream@~0.0.4, stringstream@~0.0.5: 3285 | version "0.0.6" 3286 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" 3287 | 3288 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3289 | version "3.0.1" 3290 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3291 | dependencies: 3292 | ansi-regex "^2.0.0" 3293 | 3294 | strip-ansi@^4.0.0: 3295 | version "4.0.0" 3296 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3297 | dependencies: 3298 | ansi-regex "^3.0.0" 3299 | 3300 | strip-bom@3.0.0, strip-bom@^3.0.0: 3301 | version "3.0.0" 3302 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3303 | 3304 | strip-bom@^2.0.0: 3305 | version "2.0.0" 3306 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3307 | dependencies: 3308 | is-utf8 "^0.2.0" 3309 | 3310 | strip-eof@^1.0.0: 3311 | version "1.0.0" 3312 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3313 | 3314 | strip-json-comments@~2.0.1: 3315 | version "2.0.1" 3316 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3317 | 3318 | subarg@^1.0.0: 3319 | version "1.0.0" 3320 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" 3321 | dependencies: 3322 | minimist "^1.1.0" 3323 | 3324 | supports-color@^2.0.0: 3325 | version "2.0.0" 3326 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3327 | 3328 | supports-color@^3.1.2: 3329 | version "3.2.3" 3330 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3331 | dependencies: 3332 | has-flag "^1.0.0" 3333 | 3334 | supports-color@^5.3.0: 3335 | version "5.3.0" 3336 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.3.0.tgz#5b24ac15db80fa927cf5227a4a33fd3c4c7676c0" 3337 | dependencies: 3338 | has-flag "^3.0.0" 3339 | 3340 | symbol-observable@^1.2.0: 3341 | version "1.2.0" 3342 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" 3343 | 3344 | symbol-tree@^3.2.2: 3345 | version "3.2.2" 3346 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3347 | 3348 | tar-pack@^3.4.0: 3349 | version "3.4.1" 3350 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 3351 | dependencies: 3352 | debug "^2.2.0" 3353 | fstream "^1.0.10" 3354 | fstream-ignore "^1.0.5" 3355 | once "^1.3.3" 3356 | readable-stream "^2.1.4" 3357 | rimraf "^2.5.1" 3358 | tar "^2.2.1" 3359 | uid-number "^0.0.6" 3360 | 3361 | tar@^2.2.1: 3362 | version "2.2.1" 3363 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3364 | dependencies: 3365 | block-stream "*" 3366 | fstream "^1.0.2" 3367 | inherits "2" 3368 | 3369 | test-exclude@^4.1.1, test-exclude@^4.2.1: 3370 | version "4.2.1" 3371 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" 3372 | dependencies: 3373 | arrify "^1.0.1" 3374 | micromatch "^3.1.8" 3375 | object-assign "^4.1.0" 3376 | read-pkg-up "^1.0.1" 3377 | require-main-filename "^1.0.1" 3378 | 3379 | throat@^4.0.0: 3380 | version "4.1.0" 3381 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3382 | 3383 | through@2, through@~2.3, through@~2.3.1: 3384 | version "2.3.8" 3385 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3386 | 3387 | tmpl@1.0.x: 3388 | version "1.0.5" 3389 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" 3390 | 3391 | to-fast-properties@^1.0.3: 3392 | version "1.0.3" 3393 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3394 | 3395 | to-object-path@^0.3.0: 3396 | version "0.3.0" 3397 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3398 | dependencies: 3399 | kind-of "^3.0.2" 3400 | 3401 | to-regex-range@^2.1.0: 3402 | version "2.1.1" 3403 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3404 | dependencies: 3405 | is-number "^3.0.0" 3406 | repeat-string "^1.6.1" 3407 | 3408 | to-regex@^3.0.1, to-regex@^3.0.2: 3409 | version "3.0.2" 3410 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3411 | dependencies: 3412 | define-property "^2.0.2" 3413 | extend-shallow "^3.0.2" 3414 | regex-not "^1.0.2" 3415 | safe-regex "^1.1.0" 3416 | 3417 | tough-cookie@>=2.3.3, tough-cookie@^2.3.3, tough-cookie@~2.3.0, tough-cookie@~2.3.3: 3418 | version "2.3.4" 3419 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 3420 | dependencies: 3421 | punycode "^1.4.1" 3422 | 3423 | tr46@^1.0.0: 3424 | version "1.0.1" 3425 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 3426 | dependencies: 3427 | punycode "^2.1.0" 3428 | 3429 | trim-right@^1.0.1: 3430 | version "1.0.1" 3431 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3432 | 3433 | ts-jest@^22.4.6: 3434 | version "22.4.6" 3435 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-22.4.6.tgz#a5d7f5e8b809626d1f4143209d301287472ec344" 3436 | dependencies: 3437 | babel-core "^6.26.3" 3438 | babel-plugin-istanbul "^4.1.6" 3439 | babel-plugin-transform-es2015-modules-commonjs "^6.26.2" 3440 | babel-preset-jest "^22.4.3" 3441 | cpx "^1.5.0" 3442 | fs-extra "6.0.0" 3443 | jest-config "^22.4.3" 3444 | lodash "^4.17.10" 3445 | pkg-dir "^2.0.0" 3446 | source-map-support "^0.5.5" 3447 | yargs "^11.0.0" 3448 | 3449 | tslib@^1.0.0, tslib@^1.7.1, tslib@^1.8.0, tslib@^1.8.1: 3450 | version "1.9.0" 3451 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8" 3452 | 3453 | tslib@^1.9.1: 3454 | version "1.9.1" 3455 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.1.tgz#a5d1f0532a49221c87755cfcc89ca37197242ba7" 3456 | 3457 | tslint-config-prettier@^1.13.0: 3458 | version "1.13.0" 3459 | resolved "https://registry.yarnpkg.com/tslint-config-prettier/-/tslint-config-prettier-1.13.0.tgz#189e821931ad89e0364e4e292d5c44a14e90ecd6" 3460 | 3461 | tslint-config-standard@^7.0.0: 3462 | version "7.0.0" 3463 | resolved "https://registry.yarnpkg.com/tslint-config-standard/-/tslint-config-standard-7.0.0.tgz#47bbf25578ed2212456f892d51e1abe884a29f15" 3464 | dependencies: 3465 | tslint-eslint-rules "^4.1.1" 3466 | 3467 | tslint-eslint-rules@^4.1.1: 3468 | version "4.1.1" 3469 | resolved "https://registry.yarnpkg.com/tslint-eslint-rules/-/tslint-eslint-rules-4.1.1.tgz#7c30e7882f26bc276bff91d2384975c69daf88ba" 3470 | dependencies: 3471 | doctrine "^0.7.2" 3472 | tslib "^1.0.0" 3473 | tsutils "^1.4.0" 3474 | 3475 | tslint-plugin-prettier@^1.3.0: 3476 | version "1.3.0" 3477 | resolved "https://registry.yarnpkg.com/tslint-plugin-prettier/-/tslint-plugin-prettier-1.3.0.tgz#7eb65d19ea786a859501a42491b78c5de2031a3f" 3478 | dependencies: 3479 | eslint-plugin-prettier "^2.2.0" 3480 | tslib "^1.7.1" 3481 | 3482 | tslint@^5.10.0: 3483 | version "5.10.0" 3484 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.10.0.tgz#11e26bccb88afa02dd0d9956cae3d4540b5f54c3" 3485 | dependencies: 3486 | babel-code-frame "^6.22.0" 3487 | builtin-modules "^1.1.1" 3488 | chalk "^2.3.0" 3489 | commander "^2.12.1" 3490 | diff "^3.2.0" 3491 | glob "^7.1.1" 3492 | js-yaml "^3.7.0" 3493 | minimatch "^3.0.4" 3494 | resolve "^1.3.2" 3495 | semver "^5.3.0" 3496 | tslib "^1.8.0" 3497 | tsutils "^2.12.1" 3498 | 3499 | tsutils@^1.4.0: 3500 | version "1.9.1" 3501 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-1.9.1.tgz#b9f9ab44e55af9681831d5f28d0aeeaf5c750cb0" 3502 | 3503 | tsutils@^2.12.1: 3504 | version "2.22.2" 3505 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.22.2.tgz#0b9f3d87aa3eb95bd32d26ce2b88aa329a657951" 3506 | dependencies: 3507 | tslib "^1.8.1" 3508 | 3509 | tunnel-agent@^0.6.0: 3510 | version "0.6.0" 3511 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3512 | dependencies: 3513 | safe-buffer "^5.0.1" 3514 | 3515 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3516 | version "0.14.5" 3517 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3518 | 3519 | type-check@~0.3.2: 3520 | version "0.3.2" 3521 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3522 | dependencies: 3523 | prelude-ls "~1.1.2" 3524 | 3525 | typescript-compiler@^1.4.1-2: 3526 | version "1.4.1-2" 3527 | resolved "https://registry.yarnpkg.com/typescript-compiler/-/typescript-compiler-1.4.1-2.tgz#ba4f7db22d91534a1929d90009dce161eb72fd3f" 3528 | 3529 | typescript@^2.4.2: 3530 | version "2.8.1" 3531 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.8.1.tgz#6160e4f8f195d5ba81d4876f9c0cc1fbc0820624" 3532 | 3533 | typescript@^2.8.3: 3534 | version "2.8.3" 3535 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.8.3.tgz#5d817f9b6f31bb871835f4edf0089f21abe6c170" 3536 | 3537 | uglify-js@^3.1.4: 3538 | version "3.13.1" 3539 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.1.tgz#2749d4b8b5b7d67460b4a418023ff73c3fefa60a" 3540 | 3541 | uid-number@^0.0.6: 3542 | version "0.0.6" 3543 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3544 | 3545 | union-value@^1.0.0: 3546 | version "1.0.0" 3547 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3548 | dependencies: 3549 | arr-union "^3.1.0" 3550 | get-value "^2.0.6" 3551 | is-extendable "^0.1.1" 3552 | set-value "^0.4.3" 3553 | 3554 | universalify@^0.1.0: 3555 | version "0.1.1" 3556 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" 3557 | 3558 | unset-value@^1.0.0: 3559 | version "1.0.0" 3560 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3561 | dependencies: 3562 | has-value "^0.3.1" 3563 | isobject "^3.0.0" 3564 | 3565 | urix@^0.1.0: 3566 | version "0.1.0" 3567 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3568 | 3569 | use@^3.1.0: 3570 | version "3.1.0" 3571 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544" 3572 | dependencies: 3573 | kind-of "^6.0.2" 3574 | 3575 | util-deprecate@~1.0.1: 3576 | version "1.0.2" 3577 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3578 | 3579 | util.promisify@^1.0.0: 3580 | version "1.0.0" 3581 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 3582 | dependencies: 3583 | define-properties "^1.1.2" 3584 | object.getownpropertydescriptors "^2.0.3" 3585 | 3586 | uuid@^3.0.0, uuid@^3.1.0: 3587 | version "3.2.1" 3588 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 3589 | 3590 | validate-npm-package-license@^3.0.1: 3591 | version "3.0.3" 3592 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 3593 | dependencies: 3594 | spdx-correct "^3.0.0" 3595 | spdx-expression-parse "^3.0.0" 3596 | 3597 | verror@1.10.0: 3598 | version "1.10.0" 3599 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3600 | dependencies: 3601 | assert-plus "^1.0.0" 3602 | core-util-is "1.0.2" 3603 | extsprintf "^1.2.0" 3604 | 3605 | w3c-hr-time@^1.0.1: 3606 | version "1.0.1" 3607 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" 3608 | dependencies: 3609 | browser-process-hrtime "^0.1.2" 3610 | 3611 | walker@~1.0.5: 3612 | version "1.0.7" 3613 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3614 | dependencies: 3615 | makeerror "1.0.x" 3616 | 3617 | watch@~0.18.0: 3618 | version "0.18.0" 3619 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 3620 | dependencies: 3621 | exec-sh "^0.2.0" 3622 | minimist "^1.2.0" 3623 | 3624 | webidl-conversions@^4.0.1, webidl-conversions@^4.0.2: 3625 | version "4.0.2" 3626 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 3627 | 3628 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: 3629 | version "1.0.3" 3630 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 3631 | dependencies: 3632 | iconv-lite "0.4.19" 3633 | 3634 | whatwg-url@^6.4.0: 3635 | version "6.4.0" 3636 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.4.0.tgz#08fdf2b9e872783a7a1f6216260a1d66cc722e08" 3637 | dependencies: 3638 | lodash.sortby "^4.7.0" 3639 | tr46 "^1.0.0" 3640 | webidl-conversions "^4.0.1" 3641 | 3642 | which-module@^2.0.0: 3643 | version "2.0.0" 3644 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3645 | 3646 | which@^1.2.12, which@^1.2.9, which@^1.3.0: 3647 | version "1.3.0" 3648 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3649 | dependencies: 3650 | isexe "^2.0.0" 3651 | 3652 | wide-align@^1.1.0: 3653 | version "1.1.2" 3654 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3655 | dependencies: 3656 | string-width "^1.0.2" 3657 | 3658 | wordwrap@^1.0.0, wordwrap@~1.0.0: 3659 | version "1.0.0" 3660 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3661 | 3662 | wrap-ansi@^2.0.0: 3663 | version "2.1.0" 3664 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3665 | dependencies: 3666 | string-width "^1.0.1" 3667 | strip-ansi "^3.0.1" 3668 | 3669 | wrappy@1: 3670 | version "1.0.2" 3671 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3672 | 3673 | write-file-atomic@^2.1.0: 3674 | version "2.3.0" 3675 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3676 | dependencies: 3677 | graceful-fs "^4.1.11" 3678 | imurmurhash "^0.1.4" 3679 | signal-exit "^3.0.2" 3680 | 3681 | ws@^4.0.0: 3682 | version "4.1.0" 3683 | resolved "https://registry.yarnpkg.com/ws/-/ws-4.1.0.tgz#a979b5d7d4da68bf54efe0408967c324869a7289" 3684 | dependencies: 3685 | async-limiter "~1.0.0" 3686 | safe-buffer "~5.1.0" 3687 | 3688 | xml-name-validator@^3.0.0: 3689 | version "3.0.0" 3690 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 3691 | 3692 | y18n@^3.2.1: 3693 | version "3.2.2" 3694 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.2.tgz#85c901bd6470ce71fc4bb723ad209b70f7f28696" 3695 | 3696 | yallist@^2.1.2: 3697 | version "2.1.2" 3698 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3699 | 3700 | yargs-parser@^8.1.0: 3701 | version "8.1.0" 3702 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" 3703 | dependencies: 3704 | camelcase "^4.1.0" 3705 | 3706 | yargs-parser@^9.0.2: 3707 | version "9.0.2" 3708 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 3709 | dependencies: 3710 | camelcase "^4.1.0" 3711 | 3712 | yargs@^10.0.3: 3713 | version "10.1.2" 3714 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.1.2.tgz#454d074c2b16a51a43e2fb7807e4f9de69ccb5c5" 3715 | dependencies: 3716 | cliui "^4.0.0" 3717 | decamelize "^1.1.1" 3718 | find-up "^2.1.0" 3719 | get-caller-file "^1.0.1" 3720 | os-locale "^2.0.0" 3721 | require-directory "^2.1.1" 3722 | require-main-filename "^1.0.1" 3723 | set-blocking "^2.0.0" 3724 | string-width "^2.0.0" 3725 | which-module "^2.0.0" 3726 | y18n "^3.2.1" 3727 | yargs-parser "^8.1.0" 3728 | 3729 | yargs@^11.0.0: 3730 | version "11.0.0" 3731 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.0.0.tgz#c052931006c5eee74610e5fc0354bedfd08a201b" 3732 | dependencies: 3733 | cliui "^4.0.0" 3734 | decamelize "^1.1.1" 3735 | find-up "^2.1.0" 3736 | get-caller-file "^1.0.1" 3737 | os-locale "^2.0.0" 3738 | require-directory "^2.1.1" 3739 | require-main-filename "^1.0.1" 3740 | set-blocking "^2.0.0" 3741 | string-width "^2.0.0" 3742 | which-module "^2.0.0" 3743 | y18n "^3.2.1" 3744 | yargs-parser "^9.0.2" 3745 | --------------------------------------------------------------------------------