├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── index.js ├── package-lock.json ├── package.json ├── rollup.config.js ├── src ├── createAction.js ├── createStatus.js ├── createStore.js └── index.js ├── test ├── action.test.js └── store.test.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig: http://EditorConfig.org 2 | # top-most EditorConfig file 3 | root = true 4 | 5 | # all files defaults 6 | [*] 7 | # Unix-style newlines with a newline ending 8 | end_of_line = lf 9 | insert_final_newline = true 10 | # Set default charset 11 | charset = utf-8 12 | # 4 space indentation 13 | indent_style = space 14 | indent_size = 2 15 | # trim whitespaces 16 | trim_trailing_whitespace = true 17 | # always insert final newline 18 | insert_final_newline = true 19 | 20 | [*.md] 21 | trim_trailing_whitespace = false 22 | 23 | # tab for makefiles 24 | [{Makefile, Makefile*, *.xml}] 25 | indent_style = tab 26 | indent_size = 2 27 | 28 | [{*.java, *.go}] 29 | indent_style = tab 30 | indent_size = 4 31 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": ["standard", "standard-react", "prettier"], 4 | "plugins": ["prettier", "react"], 5 | "rules": { 6 | "max-len": ["error", 120, 4], 7 | "camelcase": "off", 8 | "react/prop-types": "warn", 9 | "react/react-in-jsx-scope": "off", 10 | "promise/param-names": "off", 11 | "prefer-promise-reject-errors": "off", 12 | "no-control-regex": "off", 13 | "prettier/prettier": [ 14 | "error", 15 | { 16 | "trailingComma": "es5", 17 | "singleQuote": true, 18 | "bracketSpacing": false, 19 | "printWidth": 120 20 | } 21 | ] 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | es5 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | .gitignore 3 | coverage 4 | node_modules 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 'stable' 4 | after_success: npm run coveralls 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 2.0.0 / 2019-05-06 2 | 3 | - Rewrite to use latest RxJS syntax 4 | - Remove Immutable.js 5 | - Make RxJS a peer dependency 6 | 7 | # 1.0.2 / 2018-10-01 8 | 9 | - Update to RxJS v6 with compat package 10 | 11 | # 1.0.1 / 2018-10-01 12 | 13 | - Update dependencies and fix build/test toolchain 14 | 15 | # 1.0.0 / 2016-12-19 16 | 17 | - Update RxJS to v5 18 | - Replace webpack with rollup for simpler build 19 | 20 | # 0.4.0 / 2016-05-11 21 | 22 | - allow clearing store with custom state 23 | 24 | # 0.3.0 / 2016-04-28 25 | 26 | - always return last state value to new subscribers 27 | 28 | # 0.2.0 / 2016-04-19 29 | 30 | - fix issue with Immutable when triggering actions multiple times 31 | 32 | # 0.1.0 / 2016-04-19 33 | 34 | - initial version 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # RxState 2 | 3 | [![npm](https://img.shields.io/npm/v/rxstate.svg)](https://www.npmjs.com/package/rxstate) 4 | [![MIT](https://img.shields.io/npm/l/rxstate.svg)](http://opensource.org/licenses/MIT) 5 | [![Build Status](https://travis-ci.org/yamalight/rxstate.svg?branch=master)](https://travis-ci.org/yamalight/rxstate) 6 | [![Coverage Status](https://coveralls.io/repos/github/yamalight/rxstate/badge.svg?branch=master)](https://coveralls.io/github/yamalight/rxstate?branch=master) 7 | 8 | > Simple opinionated state management library based on RxJS 9 | 10 | ## Installation 11 | 12 | ```sh 13 | npm install --save rxstate rxjs 14 | ``` 15 | 16 | ## Quick start 17 | 18 | Example code for creating a store with status and typeahead fetching action is shown below: 19 | 20 | ```js 21 | import fetchival from 'fetchival'; 22 | import {from} from 'rxjs'; 23 | import {map, filter, debounceTime, distinctUntilChanged, tap, flatMap} from 'rxjs/operators'; 24 | import {createStore, createAction, createStatus} from 'rxstate'; 25 | 26 | // create status action 27 | const status = createStatus(); 28 | 29 | // create action that fetches typeahead suggestions from server 30 | const getTypeahead = createAction(); 31 | const typeahead$ = getTypeahead.$.pipe( 32 | map(e => e.target.value), 33 | filter(q => q.length > 3), 34 | debounceTime(300), 35 | distinctUntilChanged(), 36 | tap(() => status('loading')), 37 | flatMap(q => from(fetchival(typeaheadAPI).post({q}))), 38 | tap(() => status('done')) 39 | ); 40 | 41 | // create an array of action streams for store 42 | const streams = [status.$, typeahead$]; 43 | // create store 44 | const store = createStore({streams, defaultState: {init: true}}); 45 | 46 | // other place in code: 47 | // subscribe for state updates 48 | store.subscribe(state => { 49 | console.log(state); 50 | // ... handle your state here 51 | }); 52 | 53 | // other place in code: 54 | // trigger action 55 | getTypeahead('keyword'); 56 | ``` 57 | 58 | ## Things to keep in mind 59 | 60 | - Rxstate has RxJS as peer dependency - don't forget to install it as well! 61 | - Store will always return last value to new subscribers. 62 | - By default, the state is updated using spread operator on new and old state (e.g. `{...oldState, ...newState}`). You can change that by passing `combinator` parameter during store creation, e.g.: 63 | 64 | ```js 65 | // create combinator that always returns new state 66 | const combinator = (_, data) => data; 67 | // create store 68 | const store = createStore({streams, defaultState, combinator}); 69 | ``` 70 | 71 | - Status action and stream can be created using `createStatus` function. By default it'll write status as `{status: 'statusText'}`. Key can be changed by passing the string parameter to the function, e.g.: 72 | 73 | ```js 74 | // create status with custom key 75 | const status = createStatus('customStatus'); 76 | // state will be updated with {customStatus: 'statusText'} 77 | ``` 78 | 79 | - Stores have `.clear()` method that accepts new initial state as an optional argument and dispatches new action with either provided or default state as value. If you use default combinator logic - this will reset your state to initial one. 80 | 81 | ## License 82 | 83 | [MIT](http://www.opensource.org/licenses/mit-license) 84 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | export * from './src/index'; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rxstate", 3 | "version": "2.0.0", 4 | "description": "Simple opinionated state management library based on RxJS and Immutable.js", 5 | "main": "es5/component.js", 6 | "es6": "index.js", 7 | "scripts": { 8 | "test": "jest --collect-coverage", 9 | "build": "NODE_ENV=production rollup -c", 10 | "coveralls": "npm run test && cat ./coverage/lcov.info | coveralls", 11 | "prepublish": "npm run build" 12 | }, 13 | "keywords": [ 14 | "rx", 15 | "rxjs", 16 | "state", 17 | "store" 18 | ], 19 | "author": "Tim Ermilov (http://codezen.net)", 20 | "repository": { 21 | "type": "git", 22 | "url": "https://github.com/yamalight/rxstate" 23 | }, 24 | "license": "MIT", 25 | "devDependencies": { 26 | "@babel/core": "^7.4.4", 27 | "@babel/preset-env": "^7.4.4", 28 | "babel-jest": "^24.8.0", 29 | "coveralls": "^3.0.3", 30 | "esm": "^3.2.22", 31 | "jest": "^24.8.0", 32 | "rollup": "^1.11.3", 33 | "rollup-plugin-babel": "^4.3.2", 34 | "rxjs": "^6.5.1" 35 | }, 36 | "peerDependencies": { 37 | "rxjs": "^6.5.1" 38 | }, 39 | "jest": { 40 | "transform": { 41 | "^.+\\.jsx?$": "babel-jest" 42 | } 43 | }, 44 | "babel": { 45 | "presets": [ 46 | "@babel/preset-env" 47 | ] 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | const pkg = require('./package.json'); 2 | // declare rxjs as external 3 | const external = ['rxjs', 'rxjs/operators']; 4 | 5 | export default { 6 | input: './index.js', 7 | output: { 8 | name: 'rxstate', 9 | file: pkg.main, 10 | format: 'cjs', 11 | }, 12 | external, 13 | }; 14 | -------------------------------------------------------------------------------- /src/createAction.js: -------------------------------------------------------------------------------- 1 | import {Subject} from 'rxjs'; 2 | 3 | export const createAction = () => { 4 | const bus = new Subject(); 5 | const creator = val => bus.next(val); 6 | creator.$ = bus; 7 | return creator; 8 | }; 9 | -------------------------------------------------------------------------------- /src/createStatus.js: -------------------------------------------------------------------------------- 1 | import {map} from 'rxjs/operators'; 2 | import {createAction} from './createAction'; 3 | 4 | // create status action 5 | export const createStatus = (statusKey = 'status') => { 6 | const status = createAction(); 7 | status.$ = status.$.pipe(map(s => ({[statusKey]: s}))); 8 | return status; 9 | }; 10 | -------------------------------------------------------------------------------- /src/createStore.js: -------------------------------------------------------------------------------- 1 | import {Subject, ReplaySubject} from 'rxjs'; 2 | import {map, startWith, scan} from 'rxjs/operators'; 3 | import {createAction} from './createAction'; 4 | 5 | const defaultCombinator = (state, data) => ({...state, ...data}); 6 | 7 | export const createStore = ({streams, defaultState, combinator = defaultCombinator}) => { 8 | // create result store stream 9 | const subj = new Subject(); 10 | 11 | // create clean action 12 | const clear = createAction(); 13 | clear.$.pipe(map(newData => (newData ? {...newData} : {...defaultState}))).subscribe(subj); 14 | // plug in user actions 15 | streams.map(s$ => s$.subscribe(subj)); 16 | 17 | // init result stream 18 | const store = new ReplaySubject(1); 19 | // start with default state 20 | subj 21 | .pipe( 22 | startWith({...defaultState}), 23 | // combine results 24 | scan(combinator) 25 | ) 26 | // push result to final stream 27 | .subscribe(store); 28 | 29 | // append clear method 30 | store.clear = clear; 31 | 32 | return store; 33 | }; 34 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | export {createAction} from './createAction'; 2 | export {createStore} from './createStore'; 3 | export {createStatus} from './createStatus'; 4 | -------------------------------------------------------------------------------- /test/action.test.js: -------------------------------------------------------------------------------- 1 | /* eslint-env jest */ 2 | import {createAction} from '../index'; 3 | 4 | describe('Action', () => { 5 | test('# should create action that works', done => { 6 | const action = createAction(); 7 | const testVal = 123; 8 | action.$.subscribe(val => { 9 | expect(val).toEqual(testVal); 10 | done(); 11 | }); 12 | action(testVal); 13 | }); 14 | }); 15 | -------------------------------------------------------------------------------- /test/store.test.js: -------------------------------------------------------------------------------- 1 | /* eslint-env jest */ 2 | import {timer} from 'rxjs'; 3 | import {map, take, skip, tap, flatMap} from 'rxjs/operators'; 4 | import {createAction, createStore, createStatus} from '../index'; 5 | 6 | describe('Store', () => { 7 | test('# should create simple store', done => { 8 | // create test action 9 | const testAction = createAction(); 10 | const test$ = testAction.$.pipe(map(() => ({test: true}))); 11 | // create store 12 | const store = createStore({streams: [test$], defaultState: {init: true}}); 13 | // subscribe for initial state 14 | store.pipe(take(1)).subscribe(state => expect(state.init).toBeTruthy()); 15 | // subscribe for updated state 16 | store.pipe(skip(1)).subscribe(state => { 17 | expect(state.init).toBeTruthy(); 18 | expect(state.test).toBeTruthy(); 19 | done(); 20 | }); 21 | // trigger action 22 | testAction(); 23 | }); 24 | 25 | test('# should create store with custom combinator', done => { 26 | // create test action 27 | const testAction = createAction(); 28 | const test$ = testAction.$.pipe(map(() => ({test: true}))); 29 | // create combinator that always returns new state 30 | const combinator = (_, data) => data; 31 | // create store 32 | const store = createStore({streams: [test$], defaultState: {init: true}, combinator}); 33 | // subscribe for initial state 34 | store.pipe(take(1)).subscribe(state => expect(state.init).toBeTruthy()); 35 | // subscribe for updated state 36 | store.pipe(skip(1)).subscribe(state => { 37 | expect(state.init).toBeFalsy(); 38 | expect(state.test).toBeTruthy(); 39 | done(); 40 | }); 41 | // trigger action 42 | testAction(); 43 | }); 44 | 45 | test('# should clear store state', done => { 46 | // create test action 47 | const testAction = createAction(); 48 | const test$ = testAction.$.pipe(map(() => ({test: true}))); 49 | // create store 50 | const store = createStore({streams: [test$], defaultState: {init: true, test: false}}); 51 | // subscribe for initial state 52 | store.pipe(take(1)).subscribe(state => { 53 | expect(state.init).toBeTruthy(); 54 | expect(state.test).toBeFalsy(); 55 | }); 56 | // subscribe for updated state 57 | store 58 | .pipe( 59 | skip(1), 60 | take(1) 61 | ) 62 | .subscribe(state => { 63 | expect(state.init).toBeTruthy(); 64 | expect(state.test).toBeTruthy(); 65 | // trigger clear 66 | setImmediate(() => store.clear()); 67 | }); 68 | // subscribe for clear update 69 | store.pipe(skip(2)).subscribe(state => { 70 | expect(state.init).toBeTruthy(); 71 | expect(state.test).toBeFalsy(); 72 | done(); 73 | }); 74 | // trigger action 75 | testAction(); 76 | }); 77 | 78 | test('# should update store status', done => { 79 | // create status 80 | const status = createStatus(); 81 | // create test action 82 | const testAction = createAction(); 83 | const test$ = testAction.$.pipe( 84 | tap(() => status('loading')), 85 | flatMap(() => timer(200).pipe(map(() => ({test: true})))), 86 | tap(() => status('done')) 87 | ); 88 | // create store 89 | const store = createStore({streams: [test$, status.$], defaultState: {init: true}}); 90 | // subscribe for initial state 91 | store.pipe(take(1)).subscribe(state => expect(state.init).toBeTruthy()); 92 | // subscribe for 'loading' state 93 | store 94 | .pipe( 95 | skip(1), 96 | take(1) 97 | ) 98 | .subscribe(state => { 99 | expect(state.init).toBeTruthy(); 100 | expect(state.test).toBeFalsy(); 101 | expect(state.status).toEqual('loading'); 102 | }); 103 | // subscribe for result state 104 | store 105 | .pipe( 106 | skip(2), 107 | take(1) 108 | ) 109 | .subscribe(state => { 110 | expect(state.init).toBeTruthy(); 111 | expect(state.test).toBeFalsy(); 112 | expect(state.status).toEqual('done'); 113 | }); 114 | // subscribe for final state 115 | store 116 | .pipe( 117 | skip(3), 118 | take(1) 119 | ) 120 | .subscribe(state => { 121 | expect(state.init).toBeTruthy(); 122 | expect(state.test).toBeTruthy(); 123 | expect(state.status).toEqual('done'); 124 | done(); 125 | }); 126 | // trigger action 127 | testAction(); 128 | }); 129 | 130 | test('# should update store status with custom name', done => { 131 | // create status 132 | const status = createStatus('customStatus'); 133 | // create test action 134 | const testAction = createAction(); 135 | const test$ = testAction.$.pipe( 136 | tap(() => status('loading')), 137 | flatMap(() => timer(200).pipe(map(() => ({test: true})))), 138 | tap(() => status('done')) 139 | ); 140 | // create store 141 | const store = createStore({streams: [test$, status.$], defaultState: {init: true}}); 142 | // subscribe for initial state 143 | store.pipe(take(1)).subscribe(state => expect(state.init).toBeTruthy()); 144 | // subscribe for 'loading' state 145 | store 146 | .pipe( 147 | skip(1), 148 | take(1) 149 | ) 150 | .subscribe(state => { 151 | expect(state.init).toBeTruthy(); 152 | expect(state.test).toBeFalsy(); 153 | expect(state.customStatus).toEqual('loading'); 154 | }); 155 | // subscribe for result state 156 | store 157 | .pipe( 158 | skip(2), 159 | take(1) 160 | ) 161 | .subscribe(state => { 162 | expect(state.init).toBeTruthy(); 163 | expect(state.test).toBeFalsy(); 164 | expect(state.customStatus).toEqual('done'); 165 | }); 166 | // subscribe for final state 167 | store 168 | .pipe( 169 | skip(3), 170 | take(1) 171 | ) 172 | .subscribe(state => { 173 | expect(state.init).toBeTruthy(); 174 | expect(state.test).toBeTruthy(); 175 | expect(state.customStatus).toEqual('done'); 176 | done(); 177 | }); 178 | // trigger action 179 | testAction(); 180 | }); 181 | 182 | test('# should allow triggering action multiple times', done => { 183 | // create test action 184 | const testAction = createAction(); 185 | const test$ = testAction.$.pipe(map(() => ({test: true}))); 186 | // create store 187 | const store = createStore({streams: [test$], defaultState: {init: true}}); 188 | // subscribe for initial state 189 | store.pipe(take(1)).subscribe(state => expect(state.init).toBeTruthy()); 190 | // subscribe for updated state 191 | store.pipe(skip(1)).subscribe(state => { 192 | expect(state.init).toBeTruthy(); 193 | expect(state.test).toBeTruthy(); 194 | }); 195 | store.pipe(skip(3)).subscribe(state => { 196 | expect(state.init).toBeTruthy(); 197 | expect(state.test).toBeTruthy(); 198 | done(); 199 | }); 200 | // trigger action 201 | testAction(); 202 | testAction(); 203 | testAction(); 204 | }); 205 | 206 | test('# should return only last state to new subscriber', done => { 207 | // create test action 208 | const testAction = createAction(); 209 | const test$ = testAction.$.pipe(map(() => ({test: true}))); 210 | // create other test action 211 | const otherAction = createAction(); 212 | const other$ = otherAction.$.pipe(map(() => ({other: true}))); 213 | // create store 214 | const store = createStore({streams: [test$, other$], defaultState: {init: true}}); 215 | // subscribe for initial state 216 | store.pipe(take(1)).subscribe(state => expect(state.init).toBeTruthy()); 217 | // subscribe for updated state 218 | store.pipe(skip(1)).subscribe(state => { 219 | expect(state.init).toBeTruthy(); 220 | expect(state.test).toBeTruthy(); 221 | }); 222 | // subscribe for updated state 223 | store.pipe(skip(2)).subscribe(state => { 224 | expect(state.init).toBeTruthy(); 225 | expect(state.test).toBeTruthy(); 226 | expect(state.other).toBeTruthy(); 227 | }); 228 | // trigger actions 229 | testAction(); 230 | otherAction(); 231 | // subscribe once more 232 | store.subscribe(state => { 233 | expect(state.init).toBeTruthy(); 234 | expect(state.test).toBeTruthy(); 235 | expect(state.other).toBeTruthy(); 236 | done(); 237 | }); 238 | }); 239 | 240 | test('# should clear store with custom clear state', done => { 241 | // create test action 242 | const testAction = createAction(); 243 | const test$ = testAction.$.pipe(map(() => ({test: true}))); 244 | // create store 245 | const store = createStore({streams: [test$], defaultState: {init: true, test: false}}); 246 | // subscribe for initial state 247 | store.pipe(take(1)).subscribe(state => { 248 | expect(state.init).toBeTruthy(); 249 | expect(state.test).toBeFalsy(); 250 | }); 251 | // subscribe for updated state 252 | store 253 | .pipe( 254 | skip(1), 255 | take(1) 256 | ) 257 | .subscribe(state => { 258 | expect(state.init).toBeTruthy(); 259 | expect(state.test).toBeTruthy(); 260 | // trigger clear 261 | setImmediate(() => store.clear({init: false, test: true})); 262 | }); 263 | // subscribe for clear update 264 | store.pipe(skip(2)).subscribe(state => { 265 | expect(state.init).toBeFalsy(); 266 | expect(state.test).toBeTruthy(); 267 | done(); 268 | }); 269 | // trigger action 270 | testAction(); 271 | }); 272 | }); 273 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1, abbrev@1.0.x: 6 | version "1.0.9" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 8 | 9 | align-text@^0.1.1, align-text@^0.1.3: 10 | version "0.1.4" 11 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 12 | dependencies: 13 | kind-of "^3.0.2" 14 | longest "^1.0.1" 15 | repeat-string "^1.5.2" 16 | 17 | amdefine@>=0.0.4: 18 | version "1.0.1" 19 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 20 | 21 | ansi-regex@^2.0.0: 22 | version "2.0.0" 23 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 24 | 25 | ansi-styles@^2.2.1: 26 | version "2.2.1" 27 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 28 | 29 | anymatch@^1.3.0: 30 | version "1.3.0" 31 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 32 | dependencies: 33 | arrify "^1.0.0" 34 | micromatch "^2.1.5" 35 | 36 | append-transform@^0.3.0: 37 | version "0.3.0" 38 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.3.0.tgz#d6933ce4a85f09445d9ccc4cc119051b7381a813" 39 | 40 | aproba@^1.0.3: 41 | version "1.0.4" 42 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 43 | 44 | are-we-there-yet@~1.1.2: 45 | version "1.1.2" 46 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 47 | dependencies: 48 | delegates "^1.0.0" 49 | readable-stream "^2.0.0 || ^1.1.13" 50 | 51 | argparse@^1.0.7: 52 | version "1.0.9" 53 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 54 | dependencies: 55 | sprintf-js "~1.0.2" 56 | 57 | arr-diff@^2.0.0: 58 | version "2.0.0" 59 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 60 | dependencies: 61 | arr-flatten "^1.0.1" 62 | 63 | arr-flatten@^1.0.1: 64 | version "1.0.1" 65 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 66 | 67 | array-unique@^0.2.1: 68 | version "0.2.1" 69 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 70 | 71 | arrify@^1.0.0: 72 | version "1.0.1" 73 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 74 | 75 | asn1@~0.2.3: 76 | version "0.2.3" 77 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 78 | 79 | assert-plus@^0.2.0: 80 | version "0.2.0" 81 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 82 | 83 | assert-plus@^1.0.0: 84 | version "1.0.0" 85 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 86 | 87 | async-each@^1.0.0: 88 | version "1.0.1" 89 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 90 | 91 | async@1.x, async@^1.4.0, async@^1.4.2: 92 | version "1.5.2" 93 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 94 | 95 | async@^2.1.4: 96 | version "2.1.4" 97 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.4.tgz#2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4" 98 | dependencies: 99 | lodash "^4.14.0" 100 | 101 | async@~0.2.6: 102 | version "0.2.10" 103 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 104 | 105 | asynckit@^0.4.0: 106 | version "0.4.0" 107 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 108 | 109 | aws-sign2@~0.6.0: 110 | version "0.6.0" 111 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 112 | 113 | aws4@^1.2.1: 114 | version "1.5.0" 115 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 116 | 117 | babel-cli@^6.8.0: 118 | version "6.18.0" 119 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.18.0.tgz#92117f341add9dead90f6fa7d0a97c0cc08ec186" 120 | dependencies: 121 | babel-core "^6.18.0" 122 | babel-polyfill "^6.16.0" 123 | babel-register "^6.18.0" 124 | babel-runtime "^6.9.0" 125 | commander "^2.8.1" 126 | convert-source-map "^1.1.0" 127 | fs-readdir-recursive "^1.0.0" 128 | glob "^5.0.5" 129 | lodash "^4.2.0" 130 | output-file-sync "^1.1.0" 131 | path-is-absolute "^1.0.0" 132 | slash "^1.0.0" 133 | source-map "^0.5.0" 134 | v8flags "^2.0.10" 135 | optionalDependencies: 136 | chokidar "^1.0.0" 137 | 138 | babel-code-frame@^6.20.0: 139 | version "6.20.0" 140 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.20.0.tgz#b968f839090f9a8bc6d41938fb96cb84f7387b26" 141 | dependencies: 142 | chalk "^1.1.0" 143 | esutils "^2.0.2" 144 | js-tokens "^2.0.0" 145 | 146 | babel-core@6, babel-core@^6.18.0, babel-core@^6.21.0: 147 | version "6.21.0" 148 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.21.0.tgz#75525480c21c803f826ef3867d22c19f080a3724" 149 | dependencies: 150 | babel-code-frame "^6.20.0" 151 | babel-generator "^6.21.0" 152 | babel-helpers "^6.16.0" 153 | babel-messages "^6.8.0" 154 | babel-register "^6.18.0" 155 | babel-runtime "^6.20.0" 156 | babel-template "^6.16.0" 157 | babel-traverse "^6.21.0" 158 | babel-types "^6.21.0" 159 | babylon "^6.11.0" 160 | convert-source-map "^1.1.0" 161 | debug "^2.1.1" 162 | json5 "^0.5.0" 163 | lodash "^4.2.0" 164 | minimatch "^3.0.2" 165 | path-is-absolute "^1.0.0" 166 | private "^0.1.6" 167 | slash "^1.0.0" 168 | source-map "^0.5.0" 169 | 170 | babel-generator@^6.18.0, babel-generator@^6.21.0: 171 | version "6.21.0" 172 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.21.0.tgz#605f1269c489a1c75deeca7ea16d43d4656c8494" 173 | dependencies: 174 | babel-messages "^6.8.0" 175 | babel-runtime "^6.20.0" 176 | babel-types "^6.21.0" 177 | detect-indent "^4.0.0" 178 | jsesc "^1.3.0" 179 | lodash "^4.2.0" 180 | source-map "^0.5.0" 181 | 182 | babel-helper-bindify-decorators@^6.18.0: 183 | version "6.18.0" 184 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.18.0.tgz#fc00c573676a6e702fffa00019580892ec8780a5" 185 | dependencies: 186 | babel-runtime "^6.0.0" 187 | babel-traverse "^6.18.0" 188 | babel-types "^6.18.0" 189 | 190 | babel-helper-builder-binary-assignment-operator-visitor@^6.8.0: 191 | version "6.18.0" 192 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.18.0.tgz#8ae814989f7a53682152e3401a04fabd0bb333a6" 193 | dependencies: 194 | babel-helper-explode-assignable-expression "^6.18.0" 195 | babel-runtime "^6.0.0" 196 | babel-types "^6.18.0" 197 | 198 | babel-helper-call-delegate@^6.18.0: 199 | version "6.18.0" 200 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.18.0.tgz#05b14aafa430884b034097ef29e9f067ea4133bd" 201 | dependencies: 202 | babel-helper-hoist-variables "^6.18.0" 203 | babel-runtime "^6.0.0" 204 | babel-traverse "^6.18.0" 205 | babel-types "^6.18.0" 206 | 207 | babel-helper-define-map@^6.18.0, babel-helper-define-map@^6.8.0: 208 | version "6.18.0" 209 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.18.0.tgz#8d6c85dc7fbb4c19be3de40474d18e97c3676ec2" 210 | dependencies: 211 | babel-helper-function-name "^6.18.0" 212 | babel-runtime "^6.9.0" 213 | babel-types "^6.18.0" 214 | lodash "^4.2.0" 215 | 216 | babel-helper-explode-assignable-expression@^6.18.0: 217 | version "6.18.0" 218 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.18.0.tgz#14b8e8c2d03ad735d4b20f1840b24cd1f65239fe" 219 | dependencies: 220 | babel-runtime "^6.0.0" 221 | babel-traverse "^6.18.0" 222 | babel-types "^6.18.0" 223 | 224 | babel-helper-explode-class@^6.8.0: 225 | version "6.18.0" 226 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.18.0.tgz#c44f76f4fa23b9c5d607cbac5d4115e7a76f62cb" 227 | dependencies: 228 | babel-helper-bindify-decorators "^6.18.0" 229 | babel-runtime "^6.0.0" 230 | babel-traverse "^6.18.0" 231 | babel-types "^6.18.0" 232 | 233 | babel-helper-function-name@^6.18.0, babel-helper-function-name@^6.8.0: 234 | version "6.18.0" 235 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz#68ec71aeba1f3e28b2a6f0730190b754a9bf30e6" 236 | dependencies: 237 | babel-helper-get-function-arity "^6.18.0" 238 | babel-runtime "^6.0.0" 239 | babel-template "^6.8.0" 240 | babel-traverse "^6.18.0" 241 | babel-types "^6.18.0" 242 | 243 | babel-helper-get-function-arity@^6.18.0: 244 | version "6.18.0" 245 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz#a5b19695fd3f9cdfc328398b47dafcd7094f9f24" 246 | dependencies: 247 | babel-runtime "^6.0.0" 248 | babel-types "^6.18.0" 249 | 250 | babel-helper-hoist-variables@^6.18.0: 251 | version "6.18.0" 252 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.18.0.tgz#a835b5ab8b46d6de9babefae4d98ea41e866b82a" 253 | dependencies: 254 | babel-runtime "^6.0.0" 255 | babel-types "^6.18.0" 256 | 257 | babel-helper-optimise-call-expression@^6.18.0: 258 | version "6.18.0" 259 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.18.0.tgz#9261d0299ee1a4f08a6dd28b7b7c777348fd8f0f" 260 | dependencies: 261 | babel-runtime "^6.0.0" 262 | babel-types "^6.18.0" 263 | 264 | babel-helper-regex@^6.8.0: 265 | version "6.18.0" 266 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.18.0.tgz#ae0ebfd77de86cb2f1af258e2cc20b5fe893ecc6" 267 | dependencies: 268 | babel-runtime "^6.9.0" 269 | babel-types "^6.18.0" 270 | lodash "^4.2.0" 271 | 272 | babel-helper-remap-async-to-generator@^6.16.0, babel-helper-remap-async-to-generator@^6.16.2: 273 | version "6.20.3" 274 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.20.3.tgz#9dd3b396f13e35ef63e538098500adc24c63c4e7" 275 | dependencies: 276 | babel-helper-function-name "^6.18.0" 277 | babel-runtime "^6.20.0" 278 | babel-template "^6.16.0" 279 | babel-traverse "^6.20.0" 280 | babel-types "^6.20.0" 281 | 282 | babel-helper-replace-supers@^6.18.0, babel-helper-replace-supers@^6.8.0: 283 | version "6.18.0" 284 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.18.0.tgz#28ec69877be4144dbd64f4cc3a337e89f29a924e" 285 | dependencies: 286 | babel-helper-optimise-call-expression "^6.18.0" 287 | babel-messages "^6.8.0" 288 | babel-runtime "^6.0.0" 289 | babel-template "^6.16.0" 290 | babel-traverse "^6.18.0" 291 | babel-types "^6.18.0" 292 | 293 | babel-helpers@^6.16.0: 294 | version "6.16.0" 295 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.16.0.tgz#1095ec10d99279460553e67eb3eee9973d3867e3" 296 | dependencies: 297 | babel-runtime "^6.0.0" 298 | babel-template "^6.16.0" 299 | 300 | babel-loader@^6.2.10: 301 | version "6.2.10" 302 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.2.10.tgz#adefc2b242320cd5d15e65b31cea0e8b1b02d4b0" 303 | dependencies: 304 | find-cache-dir "^0.1.1" 305 | loader-utils "^0.2.11" 306 | mkdirp "^0.5.1" 307 | object-assign "^4.0.1" 308 | 309 | babel-messages@^6.8.0: 310 | version "6.8.0" 311 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9" 312 | dependencies: 313 | babel-runtime "^6.0.0" 314 | 315 | babel-plugin-check-es2015-constants@^6.3.13: 316 | version "6.8.0" 317 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.8.0.tgz#dbf024c32ed37bfda8dee1e76da02386a8d26fe7" 318 | dependencies: 319 | babel-runtime "^6.0.0" 320 | 321 | babel-plugin-external-helpers@^6.18.0: 322 | version "6.18.0" 323 | resolved "https://registry.yarnpkg.com/babel-plugin-external-helpers/-/babel-plugin-external-helpers-6.18.0.tgz#c6bbf87a4448eb49616f24a8b8088503863488da" 324 | dependencies: 325 | babel-runtime "^6.0.0" 326 | 327 | babel-plugin-syntax-async-functions@^6.8.0: 328 | version "6.13.0" 329 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 330 | 331 | babel-plugin-syntax-async-generators@^6.5.0: 332 | version "6.13.0" 333 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 334 | 335 | babel-plugin-syntax-class-constructor-call@^6.18.0: 336 | version "6.18.0" 337 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 338 | 339 | babel-plugin-syntax-class-properties@^6.8.0: 340 | version "6.13.0" 341 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 342 | 343 | babel-plugin-syntax-decorators@^6.13.0: 344 | version "6.13.0" 345 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 346 | 347 | babel-plugin-syntax-dynamic-import@^6.18.0: 348 | version "6.18.0" 349 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 350 | 351 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 352 | version "6.13.0" 353 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 354 | 355 | babel-plugin-syntax-export-extensions@^6.8.0: 356 | version "6.13.0" 357 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 358 | 359 | babel-plugin-syntax-object-rest-spread@^6.8.0: 360 | version "6.13.0" 361 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 362 | 363 | babel-plugin-syntax-trailing-function-commas@^6.3.13: 364 | version "6.20.0" 365 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.20.0.tgz#442835e19179f45b87e92d477d70b9f1f18b5c4f" 366 | 367 | babel-plugin-transform-async-generator-functions@^6.17.0: 368 | version "6.17.0" 369 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.17.0.tgz#d0b5a2b2f0940f2b245fa20a00519ed7bc6cae54" 370 | dependencies: 371 | babel-helper-remap-async-to-generator "^6.16.2" 372 | babel-plugin-syntax-async-generators "^6.5.0" 373 | babel-runtime "^6.0.0" 374 | 375 | babel-plugin-transform-async-to-generator@^6.16.0: 376 | version "6.16.0" 377 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz#19ec36cb1486b59f9f468adfa42ce13908ca2999" 378 | dependencies: 379 | babel-helper-remap-async-to-generator "^6.16.0" 380 | babel-plugin-syntax-async-functions "^6.8.0" 381 | babel-runtime "^6.0.0" 382 | 383 | babel-plugin-transform-class-constructor-call@^6.3.13: 384 | version "6.18.0" 385 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.18.0.tgz#80855e38a1ab47b8c6c647f8ea1bcd2c00ca3aae" 386 | dependencies: 387 | babel-plugin-syntax-class-constructor-call "^6.18.0" 388 | babel-runtime "^6.0.0" 389 | babel-template "^6.8.0" 390 | 391 | babel-plugin-transform-class-properties@^6.18.0: 392 | version "6.19.0" 393 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.19.0.tgz#1274b349abaadc835164e2004f4a2444a2788d5f" 394 | dependencies: 395 | babel-helper-function-name "^6.18.0" 396 | babel-plugin-syntax-class-properties "^6.8.0" 397 | babel-runtime "^6.9.1" 398 | babel-template "^6.15.0" 399 | 400 | babel-plugin-transform-decorators@^6.13.0: 401 | version "6.13.0" 402 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.13.0.tgz#82d65c1470ae83e2d13eebecb0a1c2476d62da9d" 403 | dependencies: 404 | babel-helper-define-map "^6.8.0" 405 | babel-helper-explode-class "^6.8.0" 406 | babel-plugin-syntax-decorators "^6.13.0" 407 | babel-runtime "^6.0.0" 408 | babel-template "^6.8.0" 409 | babel-types "^6.13.0" 410 | 411 | babel-plugin-transform-es2015-arrow-functions@^6.3.13: 412 | version "6.8.0" 413 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.8.0.tgz#5b63afc3181bdc9a8c4d481b5a4f3f7d7fef3d9d" 414 | dependencies: 415 | babel-runtime "^6.0.0" 416 | 417 | babel-plugin-transform-es2015-block-scoped-functions@^6.3.13: 418 | version "6.8.0" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.8.0.tgz#ed95d629c4b5a71ae29682b998f70d9833eb366d" 420 | dependencies: 421 | babel-runtime "^6.0.0" 422 | 423 | babel-plugin-transform-es2015-block-scoping@^6.18.0: 424 | version "6.21.0" 425 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.21.0.tgz#e840687f922e70fb2c42bb13501838c174a115ed" 426 | dependencies: 427 | babel-runtime "^6.20.0" 428 | babel-template "^6.15.0" 429 | babel-traverse "^6.21.0" 430 | babel-types "^6.21.0" 431 | lodash "^4.2.0" 432 | 433 | babel-plugin-transform-es2015-classes@^6.18.0, babel-plugin-transform-es2015-classes@^6.9.0: 434 | version "6.18.0" 435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.18.0.tgz#ffe7a17321bf83e494dcda0ae3fc72df48ffd1d9" 436 | dependencies: 437 | babel-helper-define-map "^6.18.0" 438 | babel-helper-function-name "^6.18.0" 439 | babel-helper-optimise-call-expression "^6.18.0" 440 | babel-helper-replace-supers "^6.18.0" 441 | babel-messages "^6.8.0" 442 | babel-runtime "^6.9.0" 443 | babel-template "^6.14.0" 444 | babel-traverse "^6.18.0" 445 | babel-types "^6.18.0" 446 | 447 | babel-plugin-transform-es2015-computed-properties@^6.3.13: 448 | version "6.8.0" 449 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.8.0.tgz#f51010fd61b3bd7b6b60a5fdfd307bb7a5279870" 450 | dependencies: 451 | babel-helper-define-map "^6.8.0" 452 | babel-runtime "^6.0.0" 453 | babel-template "^6.8.0" 454 | 455 | babel-plugin-transform-es2015-destructuring@^6.18.0: 456 | version "6.19.0" 457 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.19.0.tgz#ff1d911c4b3f4cab621bd66702a869acd1900533" 458 | dependencies: 459 | babel-runtime "^6.9.0" 460 | 461 | babel-plugin-transform-es2015-duplicate-keys@^6.6.0: 462 | version "6.8.0" 463 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.8.0.tgz#fd8f7f7171fc108cc1c70c3164b9f15a81c25f7d" 464 | dependencies: 465 | babel-runtime "^6.0.0" 466 | babel-types "^6.8.0" 467 | 468 | babel-plugin-transform-es2015-for-of@^6.18.0: 469 | version "6.18.0" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.18.0.tgz#4c517504db64bf8cfc119a6b8f177211f2028a70" 471 | dependencies: 472 | babel-runtime "^6.0.0" 473 | 474 | babel-plugin-transform-es2015-function-name@^6.9.0: 475 | version "6.9.0" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz#8c135b17dbd064e5bba56ec511baaee2fca82719" 477 | dependencies: 478 | babel-helper-function-name "^6.8.0" 479 | babel-runtime "^6.9.0" 480 | babel-types "^6.9.0" 481 | 482 | babel-plugin-transform-es2015-literals@^6.3.13: 483 | version "6.8.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.8.0.tgz#50aa2e5c7958fc2ab25d74ec117e0cc98f046468" 485 | dependencies: 486 | babel-runtime "^6.0.0" 487 | 488 | babel-plugin-transform-es2015-modules-amd@^6.18.0: 489 | version "6.18.0" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.18.0.tgz#49a054cbb762bdf9ae2d8a807076cfade6141e40" 491 | dependencies: 492 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 493 | babel-runtime "^6.0.0" 494 | babel-template "^6.8.0" 495 | 496 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 497 | version "6.18.0" 498 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz#c15ae5bb11b32a0abdcc98a5837baa4ee8d67bcc" 499 | dependencies: 500 | babel-plugin-transform-strict-mode "^6.18.0" 501 | babel-runtime "^6.0.0" 502 | babel-template "^6.16.0" 503 | babel-types "^6.18.0" 504 | 505 | babel-plugin-transform-es2015-modules-systemjs@^6.18.0: 506 | version "6.19.0" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.19.0.tgz#50438136eba74527efa00a5b0fefaf1dc4071da6" 508 | dependencies: 509 | babel-helper-hoist-variables "^6.18.0" 510 | babel-runtime "^6.11.6" 511 | babel-template "^6.14.0" 512 | 513 | babel-plugin-transform-es2015-modules-umd@^6.18.0: 514 | version "6.18.0" 515 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.18.0.tgz#23351770ece5c1f8e83ed67cb1d7992884491e50" 516 | dependencies: 517 | babel-plugin-transform-es2015-modules-amd "^6.18.0" 518 | babel-runtime "^6.0.0" 519 | babel-template "^6.8.0" 520 | 521 | babel-plugin-transform-es2015-object-super@^6.3.13: 522 | version "6.8.0" 523 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.8.0.tgz#1b858740a5a4400887c23dcff6f4d56eea4a24c5" 524 | dependencies: 525 | babel-helper-replace-supers "^6.8.0" 526 | babel-runtime "^6.0.0" 527 | 528 | babel-plugin-transform-es2015-parameters@^6.18.0: 529 | version "6.21.0" 530 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.21.0.tgz#46a655e6864ef984091448cdf024d87b60b2a7d8" 531 | dependencies: 532 | babel-helper-call-delegate "^6.18.0" 533 | babel-helper-get-function-arity "^6.18.0" 534 | babel-runtime "^6.9.0" 535 | babel-template "^6.16.0" 536 | babel-traverse "^6.21.0" 537 | babel-types "^6.21.0" 538 | 539 | babel-plugin-transform-es2015-shorthand-properties@^6.18.0: 540 | version "6.18.0" 541 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.18.0.tgz#e2ede3b7df47bf980151926534d1dd0cbea58f43" 542 | dependencies: 543 | babel-runtime "^6.0.0" 544 | babel-types "^6.18.0" 545 | 546 | babel-plugin-transform-es2015-spread@^6.3.13: 547 | version "6.8.0" 548 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.8.0.tgz#0217f737e3b821fa5a669f187c6ed59205f05e9c" 549 | dependencies: 550 | babel-runtime "^6.0.0" 551 | 552 | babel-plugin-transform-es2015-sticky-regex@^6.3.13: 553 | version "6.8.0" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.8.0.tgz#e73d300a440a35d5c64f5c2a344dc236e3df47be" 555 | dependencies: 556 | babel-helper-regex "^6.8.0" 557 | babel-runtime "^6.0.0" 558 | babel-types "^6.8.0" 559 | 560 | babel-plugin-transform-es2015-template-literals@^6.6.0: 561 | version "6.8.0" 562 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.8.0.tgz#86eb876d0a2c635da4ec048b4f7de9dfc897e66b" 563 | dependencies: 564 | babel-runtime "^6.0.0" 565 | 566 | babel-plugin-transform-es2015-typeof-symbol@^6.18.0: 567 | version "6.18.0" 568 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.18.0.tgz#0b14c48629c90ff47a0650077f6aa699bee35798" 569 | dependencies: 570 | babel-runtime "^6.0.0" 571 | 572 | babel-plugin-transform-es2015-unicode-regex@^6.3.13: 573 | version "6.11.0" 574 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.11.0.tgz#6298ceabaad88d50a3f4f392d8de997260f6ef2c" 575 | dependencies: 576 | babel-helper-regex "^6.8.0" 577 | babel-runtime "^6.0.0" 578 | regexpu-core "^2.0.0" 579 | 580 | babel-plugin-transform-exponentiation-operator@^6.3.13: 581 | version "6.8.0" 582 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.8.0.tgz#db25742e9339eade676ca9acec46f955599a68a4" 583 | dependencies: 584 | babel-helper-builder-binary-assignment-operator-visitor "^6.8.0" 585 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 586 | babel-runtime "^6.0.0" 587 | 588 | babel-plugin-transform-export-extensions@^6.3.13: 589 | version "6.8.0" 590 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.8.0.tgz#fa80ff655b636549431bfd38f6b817bd82e47f5b" 591 | dependencies: 592 | babel-plugin-syntax-export-extensions "^6.8.0" 593 | babel-runtime "^6.0.0" 594 | 595 | babel-plugin-transform-object-rest-spread@^6.16.0: 596 | version "6.20.2" 597 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.20.2.tgz#e816c55bba77b14c16365d87e2ae48c8fd18fc2e" 598 | dependencies: 599 | babel-plugin-syntax-object-rest-spread "^6.8.0" 600 | babel-runtime "^6.20.0" 601 | 602 | babel-plugin-transform-regenerator@^6.16.0: 603 | version "6.21.0" 604 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.21.0.tgz#75d0c7e7f84f379358f508451c68a2c5fa5a9703" 605 | dependencies: 606 | regenerator-transform "0.9.8" 607 | 608 | babel-plugin-transform-strict-mode@^6.18.0: 609 | version "6.18.0" 610 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.18.0.tgz#df7cf2991fe046f44163dcd110d5ca43bc652b9d" 611 | dependencies: 612 | babel-runtime "^6.0.0" 613 | babel-types "^6.18.0" 614 | 615 | babel-polyfill@^6.16.0: 616 | version "6.20.0" 617 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.20.0.tgz#de4a371006139e20990aac0be367d398331204e7" 618 | dependencies: 619 | babel-runtime "^6.20.0" 620 | core-js "^2.4.0" 621 | regenerator-runtime "^0.10.0" 622 | 623 | babel-preset-es2015-rollup@^3.0.0: 624 | version "3.0.0" 625 | resolved "https://registry.yarnpkg.com/babel-preset-es2015-rollup/-/babel-preset-es2015-rollup-3.0.0.tgz#854b63ecde2ee98cac40e882f67bfcf185b1f24a" 626 | dependencies: 627 | babel-plugin-external-helpers "^6.18.0" 628 | babel-preset-es2015 "^6.3.13" 629 | require-relative "^0.8.7" 630 | 631 | babel-preset-es2015@^6.3.13, babel-preset-es2015@^6.6.0: 632 | version "6.18.0" 633 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.18.0.tgz#b8c70df84ec948c43dcf2bf770e988eb7da88312" 634 | dependencies: 635 | babel-plugin-check-es2015-constants "^6.3.13" 636 | babel-plugin-transform-es2015-arrow-functions "^6.3.13" 637 | babel-plugin-transform-es2015-block-scoped-functions "^6.3.13" 638 | babel-plugin-transform-es2015-block-scoping "^6.18.0" 639 | babel-plugin-transform-es2015-classes "^6.18.0" 640 | babel-plugin-transform-es2015-computed-properties "^6.3.13" 641 | babel-plugin-transform-es2015-destructuring "^6.18.0" 642 | babel-plugin-transform-es2015-duplicate-keys "^6.6.0" 643 | babel-plugin-transform-es2015-for-of "^6.18.0" 644 | babel-plugin-transform-es2015-function-name "^6.9.0" 645 | babel-plugin-transform-es2015-literals "^6.3.13" 646 | babel-plugin-transform-es2015-modules-amd "^6.18.0" 647 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 648 | babel-plugin-transform-es2015-modules-systemjs "^6.18.0" 649 | babel-plugin-transform-es2015-modules-umd "^6.18.0" 650 | babel-plugin-transform-es2015-object-super "^6.3.13" 651 | babel-plugin-transform-es2015-parameters "^6.18.0" 652 | babel-plugin-transform-es2015-shorthand-properties "^6.18.0" 653 | babel-plugin-transform-es2015-spread "^6.3.13" 654 | babel-plugin-transform-es2015-sticky-regex "^6.3.13" 655 | babel-plugin-transform-es2015-template-literals "^6.6.0" 656 | babel-plugin-transform-es2015-typeof-symbol "^6.18.0" 657 | babel-plugin-transform-es2015-unicode-regex "^6.3.13" 658 | babel-plugin-transform-regenerator "^6.16.0" 659 | 660 | babel-preset-stage-1@^6.5.0: 661 | version "6.16.0" 662 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.16.0.tgz#9d31fbbdae7b17c549fd3ac93e3cf6902695e479" 663 | dependencies: 664 | babel-plugin-transform-class-constructor-call "^6.3.13" 665 | babel-plugin-transform-export-extensions "^6.3.13" 666 | babel-preset-stage-2 "^6.16.0" 667 | 668 | babel-preset-stage-2@^6.16.0: 669 | version "6.18.0" 670 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.18.0.tgz#9eb7bf9a8e91c68260d5ba7500493caaada4b5b5" 671 | dependencies: 672 | babel-plugin-syntax-dynamic-import "^6.18.0" 673 | babel-plugin-transform-class-properties "^6.18.0" 674 | babel-plugin-transform-decorators "^6.13.0" 675 | babel-preset-stage-3 "^6.17.0" 676 | 677 | babel-preset-stage-3@^6.17.0: 678 | version "6.17.0" 679 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.17.0.tgz#b6638e46db6e91e3f889013d8ce143917c685e39" 680 | dependencies: 681 | babel-plugin-syntax-trailing-function-commas "^6.3.13" 682 | babel-plugin-transform-async-generator-functions "^6.17.0" 683 | babel-plugin-transform-async-to-generator "^6.16.0" 684 | babel-plugin-transform-exponentiation-operator "^6.3.13" 685 | babel-plugin-transform-object-rest-spread "^6.16.0" 686 | 687 | babel-register@^6.18.0: 688 | version "6.18.0" 689 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.18.0.tgz#892e2e03865078dd90ad2c715111ec4449b32a68" 690 | dependencies: 691 | babel-core "^6.18.0" 692 | babel-runtime "^6.11.6" 693 | core-js "^2.4.0" 694 | home-or-tmp "^2.0.0" 695 | lodash "^4.2.0" 696 | mkdirp "^0.5.1" 697 | source-map-support "^0.4.2" 698 | 699 | babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.18.0, babel-runtime@^6.20.0, babel-runtime@^6.9.0, babel-runtime@^6.9.1: 700 | version "6.20.0" 701 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.20.0.tgz#87300bdcf4cd770f09bf0048c64204e17806d16f" 702 | dependencies: 703 | core-js "^2.4.0" 704 | regenerator-runtime "^0.10.0" 705 | 706 | babel-template@^6.14.0, babel-template@^6.15.0, babel-template@^6.16.0, babel-template@^6.8.0: 707 | version "6.16.0" 708 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca" 709 | dependencies: 710 | babel-runtime "^6.9.0" 711 | babel-traverse "^6.16.0" 712 | babel-types "^6.16.0" 713 | babylon "^6.11.0" 714 | lodash "^4.2.0" 715 | 716 | babel-traverse@^6.16.0, babel-traverse@^6.18.0, babel-traverse@^6.20.0, babel-traverse@^6.21.0: 717 | version "6.21.0" 718 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.21.0.tgz#69c6365804f1a4f69eb1213f85b00a818b8c21ad" 719 | dependencies: 720 | babel-code-frame "^6.20.0" 721 | babel-messages "^6.8.0" 722 | babel-runtime "^6.20.0" 723 | babel-types "^6.21.0" 724 | babylon "^6.11.0" 725 | debug "^2.2.0" 726 | globals "^9.0.0" 727 | invariant "^2.2.0" 728 | lodash "^4.2.0" 729 | 730 | babel-types@^6.13.0, babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.20.0, babel-types@^6.21.0, babel-types@^6.8.0, babel-types@^6.9.0: 731 | version "6.21.0" 732 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.21.0.tgz#314b92168891ef6d3806b7f7a917fdf87c11a4b2" 733 | dependencies: 734 | babel-runtime "^6.20.0" 735 | esutils "^2.0.2" 736 | lodash "^4.2.0" 737 | to-fast-properties "^1.0.1" 738 | 739 | babylon@^6.11.0, babylon@^6.13.0: 740 | version "6.14.1" 741 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.14.1.tgz#956275fab72753ad9b3435d7afe58f8bf0a29815" 742 | 743 | balanced-match@^0.4.1: 744 | version "0.4.2" 745 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 746 | 747 | bcrypt-pbkdf@^1.0.0: 748 | version "1.0.0" 749 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 750 | dependencies: 751 | tweetnacl "^0.14.3" 752 | 753 | big.js@^3.1.3: 754 | version "3.1.3" 755 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 756 | 757 | binary-extensions@^1.0.0: 758 | version "1.8.0" 759 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 760 | 761 | bl@~1.1.2: 762 | version "1.1.2" 763 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398" 764 | dependencies: 765 | readable-stream "~2.0.5" 766 | 767 | block-stream@*: 768 | version "0.0.9" 769 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 770 | dependencies: 771 | inherits "~2.0.0" 772 | 773 | boom@2.x.x: 774 | version "2.10.1" 775 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 776 | dependencies: 777 | hoek "2.x.x" 778 | 779 | brace-expansion@^1.0.0: 780 | version "1.1.6" 781 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 782 | dependencies: 783 | balanced-match "^0.4.1" 784 | concat-map "0.0.1" 785 | 786 | braces@^1.8.2: 787 | version "1.8.5" 788 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 789 | dependencies: 790 | expand-range "^1.8.1" 791 | preserve "^0.2.0" 792 | repeat-element "^1.1.2" 793 | 794 | buffer-shims@^1.0.0: 795 | version "1.0.0" 796 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 797 | 798 | camelcase@^1.0.2: 799 | version "1.2.1" 800 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 801 | 802 | caseless@~0.11.0: 803 | version "0.11.0" 804 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 805 | 806 | center-align@^0.1.1: 807 | version "0.1.3" 808 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 809 | dependencies: 810 | align-text "^0.1.3" 811 | lazy-cache "^1.0.3" 812 | 813 | chalk@^1.1.0, chalk@^1.1.1: 814 | version "1.1.3" 815 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 816 | dependencies: 817 | ansi-styles "^2.2.1" 818 | escape-string-regexp "^1.0.2" 819 | has-ansi "^2.0.0" 820 | strip-ansi "^3.0.0" 821 | supports-color "^2.0.0" 822 | 823 | chokidar@^1.0.0: 824 | version "1.6.1" 825 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 826 | dependencies: 827 | anymatch "^1.3.0" 828 | async-each "^1.0.0" 829 | glob-parent "^2.0.0" 830 | inherits "^2.0.1" 831 | is-binary-path "^1.0.0" 832 | is-glob "^2.0.0" 833 | path-is-absolute "^1.0.0" 834 | readdirp "^2.0.0" 835 | optionalDependencies: 836 | fsevents "^1.0.0" 837 | 838 | cliui@^2.1.0: 839 | version "2.1.0" 840 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 841 | dependencies: 842 | center-align "^0.1.1" 843 | right-align "^0.1.1" 844 | wordwrap "0.0.2" 845 | 846 | code-point-at@^1.0.0: 847 | version "1.1.0" 848 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 849 | 850 | combined-stream@^1.0.5, combined-stream@~1.0.5: 851 | version "1.0.5" 852 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 853 | dependencies: 854 | delayed-stream "~1.0.0" 855 | 856 | commander@^2.8.1, commander@^2.9.0: 857 | version "2.9.0" 858 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 859 | dependencies: 860 | graceful-readlink ">= 1.0.0" 861 | 862 | commondir@^1.0.1: 863 | version "1.0.1" 864 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 865 | 866 | concat-map@0.0.1: 867 | version "0.0.1" 868 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 869 | 870 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 871 | version "1.1.0" 872 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 873 | 874 | convert-source-map@^1.1.0: 875 | version "1.3.0" 876 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 877 | 878 | core-js@^2.4.0: 879 | version "2.4.1" 880 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 881 | 882 | core-util-is@~1.0.0: 883 | version "1.0.2" 884 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 885 | 886 | coveralls@^2.11.9: 887 | version "2.11.15" 888 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-2.11.15.tgz#37d3474369d66c14f33fa73a9d25cee6e099fca0" 889 | dependencies: 890 | js-yaml "3.6.1" 891 | lcov-parse "0.0.10" 892 | log-driver "1.2.5" 893 | minimist "1.2.0" 894 | request "2.75.0" 895 | 896 | cryptiles@2.x.x: 897 | version "2.0.5" 898 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 899 | dependencies: 900 | boom "2.x.x" 901 | 902 | dashdash@^1.12.0: 903 | version "1.14.1" 904 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 905 | dependencies: 906 | assert-plus "^1.0.0" 907 | 908 | debug@^2.1.1, debug@^2.2.0: 909 | version "2.4.5" 910 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.4.5.tgz#34c7b12a1ca96674428f41fe92c49b4ce7cd0607" 911 | dependencies: 912 | ms "0.7.2" 913 | 914 | debug@~2.2.0: 915 | version "2.2.0" 916 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 917 | dependencies: 918 | ms "0.7.1" 919 | 920 | decamelize@^1.0.0: 921 | version "1.2.0" 922 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 923 | 924 | deep-equal@~1.0.1: 925 | version "1.0.1" 926 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 927 | 928 | deep-extend@~0.4.0: 929 | version "0.4.1" 930 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 931 | 932 | define-properties@^1.1.2: 933 | version "1.1.2" 934 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 935 | dependencies: 936 | foreach "^2.0.5" 937 | object-keys "^1.0.8" 938 | 939 | defined@~1.0.0: 940 | version "1.0.0" 941 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 942 | 943 | delayed-stream@~1.0.0: 944 | version "1.0.0" 945 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 946 | 947 | delegates@^1.0.0: 948 | version "1.0.0" 949 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 950 | 951 | detect-indent@^4.0.0: 952 | version "4.0.0" 953 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 954 | dependencies: 955 | repeating "^2.0.0" 956 | 957 | ecc-jsbn@~0.1.1: 958 | version "0.1.1" 959 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 960 | dependencies: 961 | jsbn "~0.1.0" 962 | 963 | emojis-list@^2.0.0: 964 | version "2.1.0" 965 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 966 | 967 | es-abstract@^1.5.0: 968 | version "1.6.1" 969 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.6.1.tgz#bb8a2064120abcf928a086ea3d9043114285ec99" 970 | dependencies: 971 | es-to-primitive "^1.1.1" 972 | function-bind "^1.1.0" 973 | is-callable "^1.1.3" 974 | is-regex "^1.0.3" 975 | 976 | es-to-primitive@^1.1.1: 977 | version "1.1.1" 978 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 979 | dependencies: 980 | is-callable "^1.1.1" 981 | is-date-object "^1.0.1" 982 | is-symbol "^1.0.1" 983 | 984 | escape-string-regexp@^1.0.2: 985 | version "1.0.5" 986 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 987 | 988 | esprima@^2.6.0: 989 | version "2.7.3" 990 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 991 | 992 | estree-walker@^0.2.1: 993 | version "0.2.1" 994 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e" 995 | 996 | esutils@^2.0.2: 997 | version "2.0.2" 998 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 999 | 1000 | expand-brackets@^0.1.4: 1001 | version "0.1.5" 1002 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1003 | dependencies: 1004 | is-posix-bracket "^0.1.0" 1005 | 1006 | expand-range@^1.8.1: 1007 | version "1.8.2" 1008 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1009 | dependencies: 1010 | fill-range "^2.1.0" 1011 | 1012 | extend@~3.0.0: 1013 | version "3.0.0" 1014 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1015 | 1016 | extglob@^0.3.1: 1017 | version "0.3.2" 1018 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1019 | dependencies: 1020 | is-extglob "^1.0.0" 1021 | 1022 | extsprintf@1.0.2: 1023 | version "1.0.2" 1024 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1025 | 1026 | filename-regex@^2.0.0: 1027 | version "2.0.0" 1028 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1029 | 1030 | fileset@^2.0.2: 1031 | version "2.0.3" 1032 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1033 | dependencies: 1034 | glob "^7.0.3" 1035 | minimatch "^3.0.3" 1036 | 1037 | fill-range@^2.1.0: 1038 | version "2.2.3" 1039 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1040 | dependencies: 1041 | is-number "^2.1.0" 1042 | isobject "^2.0.0" 1043 | randomatic "^1.1.3" 1044 | repeat-element "^1.1.2" 1045 | repeat-string "^1.5.2" 1046 | 1047 | find-cache-dir@^0.1.1: 1048 | version "0.1.1" 1049 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1050 | dependencies: 1051 | commondir "^1.0.1" 1052 | mkdirp "^0.5.1" 1053 | pkg-dir "^1.0.0" 1054 | 1055 | find-up@^1.0.0: 1056 | version "1.1.2" 1057 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1058 | dependencies: 1059 | path-exists "^2.0.0" 1060 | pinkie-promise "^2.0.0" 1061 | 1062 | for-each@~0.3.2: 1063 | version "0.3.2" 1064 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.2.tgz#2c40450b9348e97f281322593ba96704b9abd4d4" 1065 | dependencies: 1066 | is-function "~1.0.0" 1067 | 1068 | for-in@^0.1.5: 1069 | version "0.1.6" 1070 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1071 | 1072 | for-own@^0.1.4: 1073 | version "0.1.4" 1074 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1075 | dependencies: 1076 | for-in "^0.1.5" 1077 | 1078 | foreach@^2.0.5: 1079 | version "2.0.5" 1080 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1081 | 1082 | forever-agent@~0.6.1: 1083 | version "0.6.1" 1084 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1085 | 1086 | form-data@~2.0.0: 1087 | version "2.0.0" 1088 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.0.0.tgz#6f0aebadcc5da16c13e1ecc11137d85f9b883b25" 1089 | dependencies: 1090 | asynckit "^0.4.0" 1091 | combined-stream "^1.0.5" 1092 | mime-types "^2.1.11" 1093 | 1094 | form-data@~2.1.1: 1095 | version "2.1.2" 1096 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1097 | dependencies: 1098 | asynckit "^0.4.0" 1099 | combined-stream "^1.0.5" 1100 | mime-types "^2.1.12" 1101 | 1102 | fs-readdir-recursive@^1.0.0: 1103 | version "1.0.0" 1104 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1105 | 1106 | fs.realpath@^1.0.0: 1107 | version "1.0.0" 1108 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1109 | 1110 | fsevents@^1.0.0: 1111 | version "1.0.15" 1112 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.15.tgz#fa63f590f3c2ad91275e4972a6cea545fb0aae44" 1113 | dependencies: 1114 | nan "^2.3.0" 1115 | node-pre-gyp "^0.6.29" 1116 | 1117 | fstream-ignore@~1.0.5: 1118 | version "1.0.5" 1119 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1120 | dependencies: 1121 | fstream "^1.0.0" 1122 | inherits "2" 1123 | minimatch "^3.0.0" 1124 | 1125 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1126 | version "1.0.10" 1127 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1128 | dependencies: 1129 | graceful-fs "^4.1.2" 1130 | inherits "~2.0.0" 1131 | mkdirp ">=0.5 0" 1132 | rimraf "2" 1133 | 1134 | function-bind@^1.0.2, function-bind@^1.1.0, function-bind@~1.1.0: 1135 | version "1.1.0" 1136 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1137 | 1138 | gauge@~2.7.1: 1139 | version "2.7.2" 1140 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.2.tgz#15cecc31b02d05345a5d6b0e171cdb3ad2307774" 1141 | dependencies: 1142 | aproba "^1.0.3" 1143 | console-control-strings "^1.0.0" 1144 | has-unicode "^2.0.0" 1145 | object-assign "^4.1.0" 1146 | signal-exit "^3.0.0" 1147 | string-width "^1.0.1" 1148 | strip-ansi "^3.0.1" 1149 | supports-color "^0.2.0" 1150 | wide-align "^1.1.0" 1151 | 1152 | generate-function@^2.0.0: 1153 | version "2.0.0" 1154 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1155 | 1156 | generate-object-property@^1.1.0: 1157 | version "1.2.0" 1158 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1159 | dependencies: 1160 | is-property "^1.0.0" 1161 | 1162 | getpass@^0.1.1: 1163 | version "0.1.6" 1164 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1165 | dependencies: 1166 | assert-plus "^1.0.0" 1167 | 1168 | glob-base@^0.3.0: 1169 | version "0.3.0" 1170 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1171 | dependencies: 1172 | glob-parent "^2.0.0" 1173 | is-glob "^2.0.0" 1174 | 1175 | glob-parent@^2.0.0: 1176 | version "2.0.0" 1177 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1178 | dependencies: 1179 | is-glob "^2.0.0" 1180 | 1181 | glob@^5.0.5: 1182 | version "5.0.15" 1183 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1184 | dependencies: 1185 | inflight "^1.0.4" 1186 | inherits "2" 1187 | minimatch "2 || 3" 1188 | once "^1.3.0" 1189 | path-is-absolute "^1.0.0" 1190 | 1191 | glob@^7.0.3, glob@^7.0.5, glob@~7.1.1: 1192 | version "7.1.1" 1193 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1194 | dependencies: 1195 | fs.realpath "^1.0.0" 1196 | inflight "^1.0.4" 1197 | inherits "2" 1198 | minimatch "^3.0.2" 1199 | once "^1.3.0" 1200 | path-is-absolute "^1.0.0" 1201 | 1202 | globals@^9.0.0: 1203 | version "9.14.0" 1204 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 1205 | 1206 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1207 | version "4.1.11" 1208 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1209 | 1210 | "graceful-readlink@>= 1.0.0": 1211 | version "1.0.1" 1212 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1213 | 1214 | handlebars@^4.0.3: 1215 | version "4.0.6" 1216 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 1217 | dependencies: 1218 | async "^1.4.0" 1219 | optimist "^0.6.1" 1220 | source-map "^0.4.4" 1221 | optionalDependencies: 1222 | uglify-js "^2.6" 1223 | 1224 | har-validator@~2.0.6: 1225 | version "2.0.6" 1226 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1227 | dependencies: 1228 | chalk "^1.1.1" 1229 | commander "^2.9.0" 1230 | is-my-json-valid "^2.12.4" 1231 | pinkie-promise "^2.0.0" 1232 | 1233 | has-ansi@^2.0.0: 1234 | version "2.0.0" 1235 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1236 | dependencies: 1237 | ansi-regex "^2.0.0" 1238 | 1239 | has-flag@^1.0.0: 1240 | version "1.0.0" 1241 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1242 | 1243 | has-unicode@^2.0.0: 1244 | version "2.0.1" 1245 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1246 | 1247 | has@~1.0.1: 1248 | version "1.0.1" 1249 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1250 | dependencies: 1251 | function-bind "^1.0.2" 1252 | 1253 | hawk@~3.1.3: 1254 | version "3.1.3" 1255 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1256 | dependencies: 1257 | boom "2.x.x" 1258 | cryptiles "2.x.x" 1259 | hoek "2.x.x" 1260 | sntp "1.x.x" 1261 | 1262 | hoek@2.x.x: 1263 | version "2.16.3" 1264 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1265 | 1266 | home-or-tmp@^2.0.0: 1267 | version "2.0.0" 1268 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1269 | dependencies: 1270 | os-homedir "^1.0.0" 1271 | os-tmpdir "^1.0.1" 1272 | 1273 | http-signature@~1.1.0: 1274 | version "1.1.1" 1275 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1276 | dependencies: 1277 | assert-plus "^0.2.0" 1278 | jsprim "^1.2.2" 1279 | sshpk "^1.7.0" 1280 | 1281 | immutable@^3.8.1: 1282 | version "3.8.1" 1283 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.1.tgz#200807f11ab0f72710ea485542de088075f68cd2" 1284 | 1285 | inflight@^1.0.4: 1286 | version "1.0.6" 1287 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1288 | dependencies: 1289 | once "^1.3.0" 1290 | wrappy "1" 1291 | 1292 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1293 | version "2.0.3" 1294 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1295 | 1296 | ini@~1.3.0: 1297 | version "1.3.4" 1298 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1299 | 1300 | invariant@^2.2.0: 1301 | version "2.2.2" 1302 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1303 | dependencies: 1304 | loose-envify "^1.0.0" 1305 | 1306 | is-binary-path@^1.0.0: 1307 | version "1.0.1" 1308 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1309 | dependencies: 1310 | binary-extensions "^1.0.0" 1311 | 1312 | is-buffer@^1.0.2: 1313 | version "1.1.4" 1314 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1315 | 1316 | is-callable@^1.1.1, is-callable@^1.1.3: 1317 | version "1.1.3" 1318 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1319 | 1320 | is-date-object@^1.0.1: 1321 | version "1.0.1" 1322 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1323 | 1324 | is-dotfile@^1.0.0: 1325 | version "1.0.2" 1326 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1327 | 1328 | is-equal-shallow@^0.1.3: 1329 | version "0.1.3" 1330 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1331 | dependencies: 1332 | is-primitive "^2.0.0" 1333 | 1334 | is-extendable@^0.1.1: 1335 | version "0.1.1" 1336 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1337 | 1338 | is-extglob@^1.0.0: 1339 | version "1.0.0" 1340 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1341 | 1342 | is-finite@^1.0.0: 1343 | version "1.0.2" 1344 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1345 | dependencies: 1346 | number-is-nan "^1.0.0" 1347 | 1348 | is-fullwidth-code-point@^1.0.0: 1349 | version "1.0.0" 1350 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1351 | dependencies: 1352 | number-is-nan "^1.0.0" 1353 | 1354 | is-function@~1.0.0: 1355 | version "1.0.1" 1356 | resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" 1357 | 1358 | is-glob@^2.0.0, is-glob@^2.0.1: 1359 | version "2.0.1" 1360 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1361 | dependencies: 1362 | is-extglob "^1.0.0" 1363 | 1364 | is-my-json-valid@^2.12.4: 1365 | version "2.15.0" 1366 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1367 | dependencies: 1368 | generate-function "^2.0.0" 1369 | generate-object-property "^1.1.0" 1370 | jsonpointer "^4.0.0" 1371 | xtend "^4.0.0" 1372 | 1373 | is-number@^2.0.2, is-number@^2.1.0: 1374 | version "2.1.0" 1375 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1376 | dependencies: 1377 | kind-of "^3.0.2" 1378 | 1379 | is-posix-bracket@^0.1.0: 1380 | version "0.1.1" 1381 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1382 | 1383 | is-primitive@^2.0.0: 1384 | version "2.0.0" 1385 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1386 | 1387 | is-property@^1.0.0: 1388 | version "1.0.2" 1389 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1390 | 1391 | is-regex@^1.0.3: 1392 | version "1.0.3" 1393 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.3.tgz#0d55182bddf9f2fde278220aec3a75642c908637" 1394 | 1395 | is-symbol@^1.0.1: 1396 | version "1.0.1" 1397 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1398 | 1399 | is-typedarray@~1.0.0: 1400 | version "1.0.0" 1401 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1402 | 1403 | isarray@1.0.0, isarray@~1.0.0: 1404 | version "1.0.0" 1405 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1406 | 1407 | isexe@^1.1.1: 1408 | version "1.1.2" 1409 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 1410 | 1411 | isobject@^2.0.0: 1412 | version "2.1.0" 1413 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1414 | dependencies: 1415 | isarray "1.0.0" 1416 | 1417 | isstream@~0.1.2: 1418 | version "0.1.2" 1419 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1420 | 1421 | istanbul-api@^1.1.0-alpha: 1422 | version "1.1.0-candidate.0" 1423 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.0-candidate.0.tgz#1b4d3f12baac020f3d172bb0a89970d65794aa53" 1424 | dependencies: 1425 | async "^2.1.4" 1426 | fileset "^2.0.2" 1427 | istanbul-lib-coverage "^1.0.0" 1428 | istanbul-lib-hook "^1.0.0-alpha.4" 1429 | istanbul-lib-instrument "^1.3.0" 1430 | istanbul-lib-report "^1.0.0-alpha.3" 1431 | istanbul-lib-source-maps "^1.1.0" 1432 | istanbul-reports "^1.0.0" 1433 | js-yaml "^3.7.0" 1434 | mkdirp "^0.5.1" 1435 | once "^1.4.0" 1436 | 1437 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.0-alpha, istanbul-lib-coverage@^1.0.0-alpha.0: 1438 | version "1.0.0" 1439 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.0.tgz#c3f9b6d226da12424064cce87fce0fb57fdfa7a2" 1440 | 1441 | istanbul-lib-hook@^1.0.0-alpha.4: 1442 | version "1.0.0-alpha.4" 1443 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.0-alpha.4.tgz#8c5bb9f6fbd8526e0ae6cf639af28266906b938f" 1444 | dependencies: 1445 | append-transform "^0.3.0" 1446 | 1447 | istanbul-lib-instrument@^1.3.0: 1448 | version "1.3.0" 1449 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.3.0.tgz#19f0a973397454989b98330333063a5b56df0e58" 1450 | dependencies: 1451 | babel-generator "^6.18.0" 1452 | babel-template "^6.16.0" 1453 | babel-traverse "^6.18.0" 1454 | babel-types "^6.18.0" 1455 | babylon "^6.13.0" 1456 | istanbul-lib-coverage "^1.0.0" 1457 | semver "^5.3.0" 1458 | 1459 | istanbul-lib-report@^1.0.0-alpha.3: 1460 | version "1.0.0-alpha.3" 1461 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0-alpha.3.tgz#32d5f6ec7f33ca3a602209e278b2e6ff143498af" 1462 | dependencies: 1463 | async "^1.4.2" 1464 | istanbul-lib-coverage "^1.0.0-alpha" 1465 | mkdirp "^0.5.1" 1466 | path-parse "^1.0.5" 1467 | rimraf "^2.4.3" 1468 | supports-color "^3.1.2" 1469 | 1470 | istanbul-lib-source-maps@^1.1.0: 1471 | version "1.1.0" 1472 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.1.0.tgz#9d429218f35b823560ea300a96ff0c3bbdab785f" 1473 | dependencies: 1474 | istanbul-lib-coverage "^1.0.0-alpha.0" 1475 | mkdirp "^0.5.1" 1476 | rimraf "^2.4.4" 1477 | source-map "^0.5.3" 1478 | 1479 | istanbul-reports@^1.0.0: 1480 | version "1.0.0" 1481 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.0.tgz#24b4eb2b1d29d50f103b369bd422f6e640aa0777" 1482 | dependencies: 1483 | handlebars "^4.0.3" 1484 | 1485 | istanbul@^1.1.0-alpha.1: 1486 | version "1.1.0-alpha.1" 1487 | resolved "https://registry.yarnpkg.com/istanbul/-/istanbul-1.1.0-alpha.1.tgz#781795656018a2174c5f60f367ee5d361cb57b77" 1488 | dependencies: 1489 | abbrev "1.0.x" 1490 | async "1.x" 1491 | istanbul-api "^1.1.0-alpha" 1492 | js-yaml "3.x" 1493 | mkdirp "0.5.x" 1494 | nopt "3.x" 1495 | which "^1.1.1" 1496 | wordwrap "^1.0.0" 1497 | 1498 | jodid25519@^1.0.0: 1499 | version "1.0.2" 1500 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1501 | dependencies: 1502 | jsbn "~0.1.0" 1503 | 1504 | js-tokens@^2.0.0: 1505 | version "2.0.0" 1506 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 1507 | 1508 | js-yaml@3.6.1, js-yaml@3.x: 1509 | version "3.6.1" 1510 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 1511 | dependencies: 1512 | argparse "^1.0.7" 1513 | esprima "^2.6.0" 1514 | 1515 | js-yaml@^3.7.0: 1516 | version "3.7.0" 1517 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 1518 | dependencies: 1519 | argparse "^1.0.7" 1520 | esprima "^2.6.0" 1521 | 1522 | jsbn@~0.1.0: 1523 | version "0.1.0" 1524 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 1525 | 1526 | jsesc@^1.3.0: 1527 | version "1.3.0" 1528 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1529 | 1530 | jsesc@~0.5.0: 1531 | version "0.5.0" 1532 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1533 | 1534 | json-schema@0.2.3: 1535 | version "0.2.3" 1536 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1537 | 1538 | json-stringify-safe@~5.0.1: 1539 | version "5.0.1" 1540 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1541 | 1542 | json5@^0.5.0: 1543 | version "0.5.1" 1544 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1545 | 1546 | jsonpointer@^4.0.0: 1547 | version "4.0.0" 1548 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5" 1549 | 1550 | jsprim@^1.2.2: 1551 | version "1.3.1" 1552 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 1553 | dependencies: 1554 | extsprintf "1.0.2" 1555 | json-schema "0.2.3" 1556 | verror "1.3.6" 1557 | 1558 | kind-of@^3.0.2: 1559 | version "3.1.0" 1560 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1561 | dependencies: 1562 | is-buffer "^1.0.2" 1563 | 1564 | lazy-cache@^1.0.3: 1565 | version "1.0.4" 1566 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1567 | 1568 | lcov-parse@0.0.10: 1569 | version "0.0.10" 1570 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 1571 | 1572 | loader-utils@^0.2.11: 1573 | version "0.2.16" 1574 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.16.tgz#f08632066ed8282835dff88dfb52704765adee6d" 1575 | dependencies: 1576 | big.js "^3.1.3" 1577 | emojis-list "^2.0.0" 1578 | json5 "^0.5.0" 1579 | object-assign "^4.0.1" 1580 | 1581 | lodash@^4.14.0, lodash@^4.2.0: 1582 | version "4.17.2" 1583 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.2.tgz#34a3055babe04ce42467b607d700072c7ff6bf42" 1584 | 1585 | log-driver@1.2.5: 1586 | version "1.2.5" 1587 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056" 1588 | 1589 | longest@^1.0.1: 1590 | version "1.0.1" 1591 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1592 | 1593 | loose-envify@^1.0.0: 1594 | version "1.3.0" 1595 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8" 1596 | dependencies: 1597 | js-tokens "^2.0.0" 1598 | 1599 | micromatch@^2.1.5: 1600 | version "2.3.11" 1601 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1602 | dependencies: 1603 | arr-diff "^2.0.0" 1604 | array-unique "^0.2.1" 1605 | braces "^1.8.2" 1606 | expand-brackets "^0.1.4" 1607 | extglob "^0.3.1" 1608 | filename-regex "^2.0.0" 1609 | is-extglob "^1.0.0" 1610 | is-glob "^2.0.1" 1611 | kind-of "^3.0.2" 1612 | normalize-path "^2.0.1" 1613 | object.omit "^2.0.0" 1614 | parse-glob "^3.0.4" 1615 | regex-cache "^0.4.2" 1616 | 1617 | mime-db@~1.25.0: 1618 | version "1.25.0" 1619 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.25.0.tgz#c18dbd7c73a5dbf6f44a024dc0d165a1e7b1c392" 1620 | 1621 | mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.7: 1622 | version "2.1.13" 1623 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.13.tgz#e07aaa9c6c6b9a7ca3012c69003ad25a39e92a88" 1624 | dependencies: 1625 | mime-db "~1.25.0" 1626 | 1627 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: 1628 | version "3.0.3" 1629 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1630 | dependencies: 1631 | brace-expansion "^1.0.0" 1632 | 1633 | minimist@0.0.8, minimist@~0.0.1: 1634 | version "0.0.8" 1635 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1636 | 1637 | minimist@1.2.0, minimist@^1.2.0, minimist@~1.2.0: 1638 | version "1.2.0" 1639 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1640 | 1641 | mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.1: 1642 | version "0.5.1" 1643 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1644 | dependencies: 1645 | minimist "0.0.8" 1646 | 1647 | ms@0.7.1: 1648 | version "0.7.1" 1649 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1650 | 1651 | ms@0.7.2: 1652 | version "0.7.2" 1653 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1654 | 1655 | nan@^2.3.0: 1656 | version "2.4.0" 1657 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" 1658 | 1659 | node-pre-gyp@^0.6.29: 1660 | version "0.6.32" 1661 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.32.tgz#fc452b376e7319b3d255f5f34853ef6fd8fe1fd5" 1662 | dependencies: 1663 | mkdirp "~0.5.1" 1664 | nopt "~3.0.6" 1665 | npmlog "^4.0.1" 1666 | rc "~1.1.6" 1667 | request "^2.79.0" 1668 | rimraf "~2.5.4" 1669 | semver "~5.3.0" 1670 | tar "~2.2.1" 1671 | tar-pack "~3.3.0" 1672 | 1673 | node-uuid@~1.4.7: 1674 | version "1.4.7" 1675 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" 1676 | 1677 | nopt@3.x, nopt@~3.0.6: 1678 | version "3.0.6" 1679 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1680 | dependencies: 1681 | abbrev "1" 1682 | 1683 | normalize-path@^2.0.1: 1684 | version "2.0.1" 1685 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 1686 | 1687 | npmlog@^4.0.1: 1688 | version "4.0.2" 1689 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 1690 | dependencies: 1691 | are-we-there-yet "~1.1.2" 1692 | console-control-strings "~1.1.0" 1693 | gauge "~2.7.1" 1694 | set-blocking "~2.0.0" 1695 | 1696 | number-is-nan@^1.0.0: 1697 | version "1.0.1" 1698 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1699 | 1700 | oauth-sign@~0.8.1: 1701 | version "0.8.2" 1702 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1703 | 1704 | object-assign@^4.0.1, object-assign@^4.1.0: 1705 | version "4.1.0" 1706 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 1707 | 1708 | object-inspect@~1.2.1: 1709 | version "1.2.1" 1710 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.2.1.tgz#3b62226eb8f6d441751c7d8f22a20ff80ac9dc3f" 1711 | 1712 | object-keys@^1.0.8: 1713 | version "1.0.11" 1714 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 1715 | 1716 | object.omit@^2.0.0: 1717 | version "2.0.1" 1718 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1719 | dependencies: 1720 | for-own "^0.1.4" 1721 | is-extendable "^0.1.1" 1722 | 1723 | once@^1.3.0, once@^1.4.0: 1724 | version "1.4.0" 1725 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1726 | dependencies: 1727 | wrappy "1" 1728 | 1729 | once@~1.3.3: 1730 | version "1.3.3" 1731 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1732 | dependencies: 1733 | wrappy "1" 1734 | 1735 | optimist@^0.6.1: 1736 | version "0.6.1" 1737 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1738 | dependencies: 1739 | minimist "~0.0.1" 1740 | wordwrap "~0.0.2" 1741 | 1742 | os-homedir@^1.0.0: 1743 | version "1.0.2" 1744 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1745 | 1746 | os-tmpdir@^1.0.1: 1747 | version "1.0.2" 1748 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1749 | 1750 | output-file-sync@^1.1.0: 1751 | version "1.1.2" 1752 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1753 | dependencies: 1754 | graceful-fs "^4.1.4" 1755 | mkdirp "^0.5.1" 1756 | object-assign "^4.1.0" 1757 | 1758 | parse-glob@^3.0.4: 1759 | version "3.0.4" 1760 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1761 | dependencies: 1762 | glob-base "^0.3.0" 1763 | is-dotfile "^1.0.0" 1764 | is-extglob "^1.0.0" 1765 | is-glob "^2.0.0" 1766 | 1767 | path-exists@^2.0.0: 1768 | version "2.1.0" 1769 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1770 | dependencies: 1771 | pinkie-promise "^2.0.0" 1772 | 1773 | path-is-absolute@^1.0.0: 1774 | version "1.0.1" 1775 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1776 | 1777 | path-parse@^1.0.5: 1778 | version "1.0.5" 1779 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1780 | 1781 | pinkie-promise@^2.0.0: 1782 | version "2.0.1" 1783 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1784 | dependencies: 1785 | pinkie "^2.0.0" 1786 | 1787 | pinkie@^2.0.0: 1788 | version "2.0.4" 1789 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1790 | 1791 | pkg-dir@^1.0.0: 1792 | version "1.0.0" 1793 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 1794 | dependencies: 1795 | find-up "^1.0.0" 1796 | 1797 | preserve@^0.2.0: 1798 | version "0.2.0" 1799 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1800 | 1801 | private@^0.1.6: 1802 | version "0.1.6" 1803 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 1804 | 1805 | process-nextick-args@~1.0.6: 1806 | version "1.0.7" 1807 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1808 | 1809 | punycode@^1.4.1: 1810 | version "1.4.1" 1811 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1812 | 1813 | qs@~6.2.0: 1814 | version "6.2.1" 1815 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.1.tgz#ce03c5ff0935bc1d9d69a9f14cbd18e568d67625" 1816 | 1817 | qs@~6.3.0: 1818 | version "6.3.0" 1819 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 1820 | 1821 | randomatic@^1.1.3: 1822 | version "1.1.6" 1823 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1824 | dependencies: 1825 | is-number "^2.0.2" 1826 | kind-of "^3.0.2" 1827 | 1828 | rc@~1.1.6: 1829 | version "1.1.6" 1830 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 1831 | dependencies: 1832 | deep-extend "~0.4.0" 1833 | ini "~1.3.0" 1834 | minimist "^1.2.0" 1835 | strip-json-comments "~1.0.4" 1836 | 1837 | re-emitter@^1.0.0: 1838 | version "1.1.3" 1839 | resolved "https://registry.yarnpkg.com/re-emitter/-/re-emitter-1.1.3.tgz#fa9e319ffdeeeb35b27296ef0f3d374dac2f52a7" 1840 | 1841 | readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.1.5: 1842 | version "2.2.2" 1843 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 1844 | dependencies: 1845 | buffer-shims "^1.0.0" 1846 | core-util-is "~1.0.0" 1847 | inherits "~2.0.1" 1848 | isarray "~1.0.0" 1849 | process-nextick-args "~1.0.6" 1850 | string_decoder "~0.10.x" 1851 | util-deprecate "~1.0.1" 1852 | 1853 | readable-stream@~2.0.5: 1854 | version "2.0.6" 1855 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 1856 | dependencies: 1857 | core-util-is "~1.0.0" 1858 | inherits "~2.0.1" 1859 | isarray "~1.0.0" 1860 | process-nextick-args "~1.0.6" 1861 | string_decoder "~0.10.x" 1862 | util-deprecate "~1.0.1" 1863 | 1864 | readable-stream@~2.1.4: 1865 | version "2.1.5" 1866 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 1867 | dependencies: 1868 | buffer-shims "^1.0.0" 1869 | core-util-is "~1.0.0" 1870 | inherits "~2.0.1" 1871 | isarray "~1.0.0" 1872 | process-nextick-args "~1.0.6" 1873 | string_decoder "~0.10.x" 1874 | util-deprecate "~1.0.1" 1875 | 1876 | readdirp@^2.0.0: 1877 | version "2.1.0" 1878 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1879 | dependencies: 1880 | graceful-fs "^4.1.2" 1881 | minimatch "^3.0.2" 1882 | readable-stream "^2.0.2" 1883 | set-immediate-shim "^1.0.1" 1884 | 1885 | regenerate@^1.2.1: 1886 | version "1.3.2" 1887 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 1888 | 1889 | regenerator-runtime@^0.10.0: 1890 | version "0.10.1" 1891 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 1892 | 1893 | regenerator-transform@0.9.8: 1894 | version "0.9.8" 1895 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 1896 | dependencies: 1897 | babel-runtime "^6.18.0" 1898 | babel-types "^6.19.0" 1899 | private "^0.1.6" 1900 | 1901 | regex-cache@^0.4.2: 1902 | version "0.4.3" 1903 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1904 | dependencies: 1905 | is-equal-shallow "^0.1.3" 1906 | is-primitive "^2.0.0" 1907 | 1908 | regexpu-core@^2.0.0: 1909 | version "2.0.0" 1910 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1911 | dependencies: 1912 | regenerate "^1.2.1" 1913 | regjsgen "^0.2.0" 1914 | regjsparser "^0.1.4" 1915 | 1916 | regjsgen@^0.2.0: 1917 | version "0.2.0" 1918 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1919 | 1920 | regjsparser@^0.1.4: 1921 | version "0.1.5" 1922 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1923 | dependencies: 1924 | jsesc "~0.5.0" 1925 | 1926 | repeat-element@^1.1.2: 1927 | version "1.1.2" 1928 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1929 | 1930 | repeat-string@^1.5.2: 1931 | version "1.6.1" 1932 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1933 | 1934 | repeating@^2.0.0: 1935 | version "2.0.1" 1936 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1937 | dependencies: 1938 | is-finite "^1.0.0" 1939 | 1940 | request@2.75.0: 1941 | version "2.75.0" 1942 | resolved "https://registry.yarnpkg.com/request/-/request-2.75.0.tgz#d2b8268a286da13eaa5d01adf5d18cc90f657d93" 1943 | dependencies: 1944 | aws-sign2 "~0.6.0" 1945 | aws4 "^1.2.1" 1946 | bl "~1.1.2" 1947 | caseless "~0.11.0" 1948 | combined-stream "~1.0.5" 1949 | extend "~3.0.0" 1950 | forever-agent "~0.6.1" 1951 | form-data "~2.0.0" 1952 | har-validator "~2.0.6" 1953 | hawk "~3.1.3" 1954 | http-signature "~1.1.0" 1955 | is-typedarray "~1.0.0" 1956 | isstream "~0.1.2" 1957 | json-stringify-safe "~5.0.1" 1958 | mime-types "~2.1.7" 1959 | node-uuid "~1.4.7" 1960 | oauth-sign "~0.8.1" 1961 | qs "~6.2.0" 1962 | stringstream "~0.0.4" 1963 | tough-cookie "~2.3.0" 1964 | tunnel-agent "~0.4.1" 1965 | 1966 | request@^2.79.0: 1967 | version "2.79.0" 1968 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 1969 | dependencies: 1970 | aws-sign2 "~0.6.0" 1971 | aws4 "^1.2.1" 1972 | caseless "~0.11.0" 1973 | combined-stream "~1.0.5" 1974 | extend "~3.0.0" 1975 | forever-agent "~0.6.1" 1976 | form-data "~2.1.1" 1977 | har-validator "~2.0.6" 1978 | hawk "~3.1.3" 1979 | http-signature "~1.1.0" 1980 | is-typedarray "~1.0.0" 1981 | isstream "~0.1.2" 1982 | json-stringify-safe "~5.0.1" 1983 | mime-types "~2.1.7" 1984 | oauth-sign "~0.8.1" 1985 | qs "~6.3.0" 1986 | stringstream "~0.0.4" 1987 | tough-cookie "~2.3.0" 1988 | tunnel-agent "~0.4.1" 1989 | uuid "^3.0.0" 1990 | 1991 | require-relative@^0.8.7: 1992 | version "0.8.7" 1993 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" 1994 | 1995 | resolve@~1.1.7: 1996 | version "1.1.7" 1997 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 1998 | 1999 | resumer@~0.0.0: 2000 | version "0.0.0" 2001 | resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" 2002 | dependencies: 2003 | through "~2.3.4" 2004 | 2005 | right-align@^0.1.1: 2006 | version "0.1.3" 2007 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2008 | dependencies: 2009 | align-text "^0.1.1" 2010 | 2011 | rimraf@2, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@~2.5.1, rimraf@~2.5.4: 2012 | version "2.5.4" 2013 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 2014 | dependencies: 2015 | glob "^7.0.5" 2016 | 2017 | rollup-plugin-babel@^2.7.1: 2018 | version "2.7.1" 2019 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-2.7.1.tgz#16528197b0f938a1536f44683c7a93d573182f57" 2020 | dependencies: 2021 | babel-core "6" 2022 | babel-plugin-transform-es2015-classes "^6.9.0" 2023 | object-assign "^4.1.0" 2024 | rollup-pluginutils "^1.5.0" 2025 | 2026 | rollup-pluginutils@^1.5.0: 2027 | version "1.5.2" 2028 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408" 2029 | dependencies: 2030 | estree-walker "^0.2.1" 2031 | minimatch "^3.0.2" 2032 | 2033 | rollup@^0.37.0: 2034 | version "0.37.0" 2035 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.37.0.tgz#759a51708ac08b027597babff171a026cf712d8d" 2036 | dependencies: 2037 | source-map-support "^0.4.0" 2038 | 2039 | rxjs@^5.0.1: 2040 | version "5.0.1" 2041 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.0.1.tgz#3a69bdf9f0ca0a986303370d4708f72bdfac8356" 2042 | dependencies: 2043 | symbol-observable "^1.0.1" 2044 | 2045 | semver@^5.3.0, semver@~5.3.0: 2046 | version "5.3.0" 2047 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2048 | 2049 | set-blocking@~2.0.0: 2050 | version "2.0.0" 2051 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2052 | 2053 | set-immediate-shim@^1.0.1: 2054 | version "1.0.1" 2055 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2056 | 2057 | signal-exit@^3.0.0: 2058 | version "3.0.2" 2059 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2060 | 2061 | slash@^1.0.0: 2062 | version "1.0.0" 2063 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2064 | 2065 | sntp@1.x.x: 2066 | version "1.0.9" 2067 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2068 | dependencies: 2069 | hoek "2.x.x" 2070 | 2071 | source-map-support@^0.4.0, source-map-support@^0.4.2: 2072 | version "0.4.6" 2073 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.6.tgz#32552aa64b458392a85eab3b0b5ee61527167aeb" 2074 | dependencies: 2075 | source-map "^0.5.3" 2076 | 2077 | source-map@^0.4.4: 2078 | version "0.4.4" 2079 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2080 | dependencies: 2081 | amdefine ">=0.0.4" 2082 | 2083 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1: 2084 | version "0.5.6" 2085 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2086 | 2087 | split@^1.0.0: 2088 | version "1.0.0" 2089 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.0.tgz#c4395ce683abcd254bc28fe1dabb6e5c27dcffae" 2090 | dependencies: 2091 | through "2" 2092 | 2093 | sprintf-js@~1.0.2: 2094 | version "1.0.3" 2095 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2096 | 2097 | sshpk@^1.7.0: 2098 | version "1.10.1" 2099 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" 2100 | dependencies: 2101 | asn1 "~0.2.3" 2102 | assert-plus "^1.0.0" 2103 | dashdash "^1.12.0" 2104 | getpass "^0.1.1" 2105 | optionalDependencies: 2106 | bcrypt-pbkdf "^1.0.0" 2107 | ecc-jsbn "~0.1.1" 2108 | jodid25519 "^1.0.0" 2109 | jsbn "~0.1.0" 2110 | tweetnacl "~0.14.0" 2111 | 2112 | string-width@^1.0.1: 2113 | version "1.0.2" 2114 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2115 | dependencies: 2116 | code-point-at "^1.0.0" 2117 | is-fullwidth-code-point "^1.0.0" 2118 | strip-ansi "^3.0.0" 2119 | 2120 | string.prototype.trim@~1.1.2: 2121 | version "1.1.2" 2122 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" 2123 | dependencies: 2124 | define-properties "^1.1.2" 2125 | es-abstract "^1.5.0" 2126 | function-bind "^1.0.2" 2127 | 2128 | string_decoder@~0.10.x: 2129 | version "0.10.31" 2130 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2131 | 2132 | stringstream@~0.0.4: 2133 | version "0.0.5" 2134 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2135 | 2136 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2137 | version "3.0.1" 2138 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2139 | dependencies: 2140 | ansi-regex "^2.0.0" 2141 | 2142 | strip-json-comments@~1.0.4: 2143 | version "1.0.4" 2144 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 2145 | 2146 | supports-color@^0.2.0: 2147 | version "0.2.0" 2148 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" 2149 | 2150 | supports-color@^2.0.0: 2151 | version "2.0.0" 2152 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2153 | 2154 | supports-color@^3.1.2: 2155 | version "3.1.2" 2156 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 2157 | dependencies: 2158 | has-flag "^1.0.0" 2159 | 2160 | symbol-observable@^1.0.1: 2161 | version "1.0.4" 2162 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 2163 | 2164 | tap-dot@^1.0.5: 2165 | version "1.0.5" 2166 | resolved "https://registry.yarnpkg.com/tap-dot/-/tap-dot-1.0.5.tgz#541703b784977508ee4f86f98e71d993beda23b4" 2167 | dependencies: 2168 | chalk "^1.1.1" 2169 | tap-out "^1.3.2" 2170 | through2 "^2.0.0" 2171 | 2172 | tap-out@^1.3.2: 2173 | version "1.4.2" 2174 | resolved "https://registry.yarnpkg.com/tap-out/-/tap-out-1.4.2.tgz#c907ec1bf9405111d088263e92f5608b88cbb37a" 2175 | dependencies: 2176 | re-emitter "^1.0.0" 2177 | readable-stream "^2.0.0" 2178 | split "^1.0.0" 2179 | trim "0.0.1" 2180 | 2181 | tape@^4.6.3: 2182 | version "4.6.3" 2183 | resolved "https://registry.yarnpkg.com/tape/-/tape-4.6.3.tgz#637e77581e9ab2ce17577e9bd4ce4f575806d8b6" 2184 | dependencies: 2185 | deep-equal "~1.0.1" 2186 | defined "~1.0.0" 2187 | for-each "~0.3.2" 2188 | function-bind "~1.1.0" 2189 | glob "~7.1.1" 2190 | has "~1.0.1" 2191 | inherits "~2.0.3" 2192 | minimist "~1.2.0" 2193 | object-inspect "~1.2.1" 2194 | resolve "~1.1.7" 2195 | resumer "~0.0.0" 2196 | string.prototype.trim "~1.1.2" 2197 | through "~2.3.8" 2198 | 2199 | tar-pack@~3.3.0: 2200 | version "3.3.0" 2201 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 2202 | dependencies: 2203 | debug "~2.2.0" 2204 | fstream "~1.0.10" 2205 | fstream-ignore "~1.0.5" 2206 | once "~1.3.3" 2207 | readable-stream "~2.1.4" 2208 | rimraf "~2.5.1" 2209 | tar "~2.2.1" 2210 | uid-number "~0.0.6" 2211 | 2212 | tar@~2.2.1: 2213 | version "2.2.1" 2214 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2215 | dependencies: 2216 | block-stream "*" 2217 | fstream "^1.0.2" 2218 | inherits "2" 2219 | 2220 | through2@^2.0.0: 2221 | version "2.0.3" 2222 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2223 | dependencies: 2224 | readable-stream "^2.1.5" 2225 | xtend "~4.0.1" 2226 | 2227 | through@2, through@~2.3.4, through@~2.3.8: 2228 | version "2.3.8" 2229 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2230 | 2231 | to-fast-properties@^1.0.1: 2232 | version "1.0.2" 2233 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 2234 | 2235 | tough-cookie@~2.3.0: 2236 | version "2.3.2" 2237 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2238 | dependencies: 2239 | punycode "^1.4.1" 2240 | 2241 | trim@0.0.1: 2242 | version "0.0.1" 2243 | resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" 2244 | 2245 | tunnel-agent@~0.4.1: 2246 | version "0.4.3" 2247 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 2248 | 2249 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2250 | version "0.14.5" 2251 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2252 | 2253 | uglify-js@^2.6: 2254 | version "2.7.5" 2255 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" 2256 | dependencies: 2257 | async "~0.2.6" 2258 | source-map "~0.5.1" 2259 | uglify-to-browserify "~1.0.0" 2260 | yargs "~3.10.0" 2261 | 2262 | uglify-to-browserify@~1.0.0: 2263 | version "1.0.2" 2264 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2265 | 2266 | uid-number@~0.0.6: 2267 | version "0.0.6" 2268 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2269 | 2270 | user-home@^1.1.1: 2271 | version "1.1.1" 2272 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2273 | 2274 | util-deprecate@~1.0.1: 2275 | version "1.0.2" 2276 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2277 | 2278 | uuid@^3.0.0: 2279 | version "3.0.1" 2280 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 2281 | 2282 | v8flags@^2.0.10: 2283 | version "2.0.11" 2284 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 2285 | dependencies: 2286 | user-home "^1.1.1" 2287 | 2288 | verror@1.3.6: 2289 | version "1.3.6" 2290 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2291 | dependencies: 2292 | extsprintf "1.0.2" 2293 | 2294 | which@^1.1.1: 2295 | version "1.2.12" 2296 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 2297 | dependencies: 2298 | isexe "^1.1.1" 2299 | 2300 | wide-align@^1.1.0: 2301 | version "1.1.0" 2302 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 2303 | dependencies: 2304 | string-width "^1.0.1" 2305 | 2306 | window-size@0.1.0: 2307 | version "0.1.0" 2308 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2309 | 2310 | wordwrap@0.0.2: 2311 | version "0.0.2" 2312 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2313 | 2314 | wordwrap@^1.0.0: 2315 | version "1.0.0" 2316 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2317 | 2318 | wordwrap@~0.0.2: 2319 | version "0.0.3" 2320 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2321 | 2322 | wrappy@1: 2323 | version "1.0.2" 2324 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2325 | 2326 | xtend@^4.0.0, xtend@~4.0.1: 2327 | version "4.0.1" 2328 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2329 | 2330 | yargs@~3.10.0: 2331 | version "3.10.0" 2332 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2333 | dependencies: 2334 | camelcase "^1.0.2" 2335 | cliui "^2.1.0" 2336 | decamelize "^1.0.0" 2337 | window-size "0.1.0" 2338 | --------------------------------------------------------------------------------