├── .gitignore ├── .babelrc ├── src ├── withRouter.js ├── RouterContext.js ├── deferredUpdates.js ├── Link.js ├── index.js ├── Router.js ├── Route.js └── matchPath.js ├── LICENSE ├── package.json ├── CODE_OF_CONDUCT.md ├── README.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | temp 3 | dist 4 | *.log -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env", "react"], 3 | "plugins": ["transform-class-properties"] 4 | } -------------------------------------------------------------------------------- /src/withRouter.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { RouterContext } from './RouterContext'; 3 | 4 | export const withRouter = Comp => props => ( 5 | 6 | {routeProps => } 7 | 8 | ); 9 | -------------------------------------------------------------------------------- /src/RouterContext.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import createContext from 'create-react-context'; 3 | 4 | const createNamedContext = (name, defaultValue) => { 5 | const Ctx = createContext(defaultValue); 6 | Ctx.Consumer.displayName = `${name}.Consumer`; 7 | Ctx.Provider.displayName = `${name}.Provider`; 8 | return Ctx; 9 | }; 10 | 11 | export const RouterContext = createNamedContext('Router', null); 12 | -------------------------------------------------------------------------------- /src/deferredUpdates.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | 4 | //////////////////////////////////////////////////////////////////////////////// 5 | // React polyfill 6 | let { unstable_deferredUpdates } = ReactDOM; 7 | if (unstable_deferredUpdates === undefined) { 8 | unstable_deferredUpdates = fn => fn(); 9 | } 10 | 11 | export const deferredUpdates = unstable_deferredUpdates; 12 | -------------------------------------------------------------------------------- /src/Link.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { withRouter } from './withRouter'; 3 | 4 | class LinkImpl extends React.Component { 5 | handleClick = e => { 6 | e.preventDefault(); 7 | this.props.history.push(this.props.to); 8 | }; 9 | 10 | render() { 11 | return ( 12 | 13 | {this.props.children} 14 | 15 | ); 16 | } 17 | } 18 | 19 | export const Link = withRouter(LinkImpl); 20 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import { Link as LinkSrc } from './Link'; 2 | import { Route as RouteSrc } from './Route'; 3 | import { Router as RouterSrc } from './Router'; 4 | import { withRouter as withRouterSrc } from './withRouter'; 5 | import { RouterContext as RouterContextSrc } from './RouterContext'; 6 | 7 | export const Link = LinkSrc; 8 | export const Route = RouteSrc; 9 | export const Router = RouterSrc; 10 | export const withRouter = withRouterSrc; 11 | export const RouterContext = RouterContextSrc; 12 | -------------------------------------------------------------------------------- /src/Router.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { createBrowserHistory } from 'history'; 3 | import { matchPath } from './matchPath'; 4 | import { RouterContext } from './RouterContext'; 5 | import { deferredUpdates } from './deferredUpdates'; 6 | 7 | export class Router extends React.Component { 8 | history = createBrowserHistory(); 9 | 10 | state = { 11 | location: this.history.location, 12 | history: this.history, 13 | }; 14 | 15 | componentDidMount() { 16 | this.unlisten = this.history.listen(() => { 17 | Promise.resolve().then(() => 18 | deferredUpdates(() => { 19 | if (!this.unmounted) { 20 | this.setState({ 21 | location: this.history.location, 22 | }); 23 | } 24 | }) 25 | ); 26 | }); 27 | } 28 | 29 | componentWillUnmount() { 30 | this.unmounted = true; 31 | this.unlisten(); 32 | } 33 | 34 | render() { 35 | return ( 36 | 37 | {this.props.children} 38 | 39 | ); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 The Palmer Group 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "router-suspense", 3 | "version": "0.5.0", 4 | "author": "Jared Palmer ", 5 | "repository": "palmerhq/router-suspense", 6 | "keywords": [ 7 | "react", 8 | "react-dom", 9 | "suspense", 10 | "router", 11 | "react router", 12 | "higher order component", 13 | "hoc", 14 | "render prop" 15 | ], 16 | "license": "MIT", 17 | "main": "dist/index.js", 18 | "source": "src/index.js", 19 | "files": [ 20 | "dist" 21 | ], 22 | "scripts": { 23 | "start": "NODE_ENV=development babel -w ./src --out-dir dist", 24 | "build": "NODE_ENV=production babel ./src --out-dir dist", 25 | "test": "echo yolo", 26 | "prepare": "npm run build", 27 | "deploy": "np" 28 | }, 29 | "dependencies": { 30 | "create-react-context": "^0.2.2", 31 | "history": "^4.7.2", 32 | "path-to-regexp": "^2.2.1", 33 | "prop-types": "^15.6.2" 34 | }, 35 | "peerDependencies": { 36 | "react": ">=15", 37 | "react-dom": ">=15" 38 | }, 39 | "devDependencies": { 40 | "babel-cli": "^6.26.0", 41 | "babel-core": "^6.26.3", 42 | "babel-plugin-transform-class-properties": "^6.24.1", 43 | "babel-preset-env": "^1.7.0", 44 | "babel-preset-react": "^6.24.1", 45 | "babel-runtime": "^6.26.0", 46 | "np": "^3.0.4", 47 | "react": "^16.4.2", 48 | "react-dom": "^16.4.2" 49 | } 50 | } -------------------------------------------------------------------------------- /src/Route.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { withRouter } from './withRouter'; 3 | import { matchPath } from './matchPath'; 4 | import { deferredUpdates } from './deferredUpdates'; 5 | 6 | class RouteImpl extends React.Component { 7 | state = { 8 | match: matchPath(this.props.location.pathname, { 9 | path: this.props.path, 10 | exact: this.props.exact, 11 | }), 12 | }; 13 | 14 | componentDidUpdate(prevProps) { 15 | if ( 16 | this.props.location.pathname !== prevProps.location.pathname || 17 | this.props.path !== prevProps.path 18 | ) { 19 | deferredUpdates(() => { 20 | this.setState({ 21 | match: matchPath(this.props.location.pathname, { 22 | path: this.props.path, 23 | exact: this.props.exact, 24 | }), 25 | }); 26 | }); 27 | } 28 | } 29 | 30 | render() { 31 | const { 32 | path, 33 | location, 34 | history, 35 | render, 36 | component: Component, 37 | exact, 38 | children, 39 | } = this.props; 40 | const { match } = this.state; 41 | const props = { location, history, match }; 42 | if (match !== null && match.isExact) { 43 | if (render) { 44 | return render(props); 45 | } else if (Component) { 46 | return ; 47 | } else if (children) { 48 | return children(props); 49 | } 50 | } else { 51 | // normally we would do this.... 52 | return children ? children(props) : null; 53 | // return null; 54 | } 55 | } 56 | } 57 | 58 | export const Route = withRouter(RouteImpl); 59 | -------------------------------------------------------------------------------- /src/matchPath.js: -------------------------------------------------------------------------------- 1 | import pathToRegexp from 'path-to-regexp'; 2 | 3 | const patternCache = {}; 4 | const cacheLimit = 10000; 5 | let cacheCount = 0; 6 | 7 | const compilePath = (pattern, options) => { 8 | const cacheKey = `${options.end}${options.strict}${options.sensitive}`; 9 | const cache = patternCache[cacheKey] || (patternCache[cacheKey] = {}); 10 | 11 | if (cache[pattern]) return cache[pattern]; 12 | 13 | const keys = []; 14 | const re = pathToRegexp(pattern, keys, options); 15 | const compiledPattern = { re, keys }; 16 | 17 | if (cacheCount < cacheLimit) { 18 | cache[pattern] = compiledPattern; 19 | cacheCount++; 20 | } 21 | 22 | return compiledPattern; 23 | }; 24 | 25 | /** 26 | * Public API for matching a URL pathname to a path pattern. 27 | */ 28 | export const matchPath = (pathname, options = {}, parent) => { 29 | if (typeof options === 'string') options = { path: options }; 30 | 31 | const { path, exact = false, strict = false, sensitive = false } = options; 32 | 33 | if (path == null) return parent; 34 | 35 | const { re, keys } = compilePath(path, { end: exact, strict, sensitive }); 36 | const match = re.exec(pathname); 37 | 38 | if (!match) return null; 39 | 40 | const [url, ...values] = match; 41 | const isExact = pathname === url; 42 | 43 | if (exact && !isExact) return null; 44 | 45 | return { 46 | path, // the path pattern used to match 47 | url: path === '/' && url === '' ? '/' : url, // the matched portion of the URL 48 | isExact, // whether or not we matched exactly 49 | params: keys.reduce((memo, key, index) => { 50 | memo[key.name] = values[index]; 51 | return memo; 52 | }, {}), 53 | }; 54 | }; 55 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment include: 10 | 11 | * Using welcoming and inclusive language 12 | * Being respectful of differing viewpoints and experiences 13 | * Gracefully accepting constructive criticism 14 | * Focusing on what is best for the community 15 | * Showing empathy towards other community members 16 | 17 | Examples of unacceptable behavior by participants include: 18 | 19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 20 | * Trolling, insulting/derogatory comments, and personal or political attacks 21 | * Public or private harassment 22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 23 | * Other conduct which could reasonably be considered inappropriate in a professional setting 24 | 25 | ## Our Responsibilities 26 | 27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 28 | 29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | ## Scope 32 | 33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 34 | 35 | ## Enforcement 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at info@palmer.net. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 38 | 39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 40 | 41 | ## Attribution 42 | 43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 44 | 45 | [homepage]: http://contributor-covenant.org 46 | [version]: http://contributor-covenant.org/version/1/4/ 47 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Router Suspense 2 | 3 | A suspense-friendly minimalistic sister of React Router. 4 | 5 | ``` 6 | npm i router-suspense 7 | ``` 8 | 9 | As of now, this is a very basic router that works in async-land. 10 | 11 | 12 | 13 | 14 | 15 | ## Playing with Suspense 16 | 17 | This router will work in React 15+. However, If you want to play around with suspense features, you'll need to enable suspense somehow. That means either building React yourself. Or, using this handy dandy starter we made. 18 | 19 | https://github.com/palmerhq/react-suspense-starter 20 | 21 | 22 | ## API 23 | 24 | The API is basically the core of React Router 4. 25 | 26 | ### `` 27 | 28 | Exactly the same as RR4's `` 29 | 30 | - `children: React.ReactNode` 31 | 32 | ```jsx 33 | import React from 'react'; 34 | import { unstable_createRoot as createRoot } from 'react-dom'; 35 | import { Router } from 'router-suspense'; 36 | import App from './App'; 37 | 38 | const root = createRoot(document.getElementById('app')); 39 | 40 | const render = Comp => { 41 | root.render( 42 | 43 | 44 | 45 | ); 46 | }; 47 | 48 | render(App); 49 | ``` 50 | 51 | ### `` 52 | 53 | Render prop component to conditionally render based on the URL. If present, it uses `ReactDOM.unstable_deferredUpdates` to wait for any suspense jazz to happen on the next route before making the transition. 54 | 55 | #### Route Props 56 | 57 | - `render: ((props) => React.ReactNode)`: Passes `history`, `location`, `match` as a render prop. Only renders when `path` matches the current location. 58 | - `path: string` Path to match. Same as RR4. 59 | - `exact: boolean = false` Same as RR4. 60 | 61 | 62 | ```jsx 63 | import React from 'react' 64 | import { Route, Link } from 'router-suspense' 65 | 66 | export const Nav = () => ( 67 | 71 | ) 72 | 73 | export const App = () => ( 74 |
75 | 80 |
Home
} /> 81 |
Dashboard
} /> 82 |
User {match.params.id}
} /> 83 |
84 | ) 85 | ``` 86 | 87 | ### `` 88 | 89 | Link works like React Router 4's. You give it a `path`, it renders an ``, but does a client-side transition by calling `history.push(path)` under the hood. 90 | 91 | - `to: string` The relative path to link to 92 | 93 | ```jsx 94 | import React from 'react' 95 | import { Link } from 'router-suspense' 96 | 97 | export const Nav = () => ( 98 | 102 | ) 103 | ``` 104 | 105 | ### `withRouter(Comp: Component)` 106 | 107 | A higher-order component that hooks into Router context. Same as RR4. 108 | 109 | ```jsx 110 | import React from 'react' 111 | import { Link } from 'router-suspense' 112 | 113 | const BackButton = ({ history }) => ( 114 |
115 | 116 |
117 | ) 118 | 119 | export default withRouter(BackButton) 120 | ``` 121 | 122 | ## Inspiration 123 | 124 | A lot of this code is taken straight from React Router and React Training's MiniRouter lecture. 125 | 126 | ## Authors 127 | 128 | - Jack Cross ([@crosscompile](https://twitter.com/crosscompile)) 129 | - Jared Palmer ([@jaredpalmer](https://twitter.com/jaredpalmer)) 130 | 131 | 132 | Copyright © 2018 The Palmer Group. 133 | 134 | --- 135 | 136 | MIT License 137 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@samverschueren/stream-to-observable@^0.3.0": 6 | version "0.3.0" 7 | resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz#ecdf48d532c58ea477acfcab80348424f8d0662f" 8 | dependencies: 9 | any-observable "^0.3.0" 10 | 11 | abbrev@1: 12 | version "1.1.1" 13 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 14 | 15 | ansi-align@^2.0.0: 16 | version "2.0.0" 17 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 18 | dependencies: 19 | string-width "^2.0.0" 20 | 21 | ansi-escapes@^1.0.0: 22 | version "1.4.0" 23 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 24 | 25 | ansi-escapes@^3.0.0, ansi-escapes@^3.1.0: 26 | version "3.1.0" 27 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 28 | 29 | ansi-regex@^2.0.0: 30 | version "2.1.1" 31 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 32 | 33 | ansi-regex@^3.0.0: 34 | version "3.0.0" 35 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 36 | 37 | ansi-styles@^2.2.1: 38 | version "2.2.1" 39 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 40 | 41 | ansi-styles@^3.2.1: 42 | version "3.2.1" 43 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 44 | dependencies: 45 | color-convert "^1.9.0" 46 | 47 | any-observable@^0.3.0: 48 | version "0.3.0" 49 | resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b" 50 | 51 | anymatch@^1.3.0: 52 | version "1.3.2" 53 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 54 | dependencies: 55 | micromatch "^2.1.5" 56 | normalize-path "^2.0.0" 57 | 58 | aproba@^1.0.3: 59 | version "1.2.0" 60 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 61 | 62 | are-we-there-yet@~1.1.2: 63 | version "1.1.5" 64 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 65 | dependencies: 66 | delegates "^1.0.0" 67 | readable-stream "^2.0.6" 68 | 69 | arr-diff@^2.0.0: 70 | version "2.0.0" 71 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 72 | dependencies: 73 | arr-flatten "^1.0.1" 74 | 75 | arr-flatten@^1.0.1: 76 | version "1.1.0" 77 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 78 | 79 | array-find-index@^1.0.1: 80 | version "1.0.2" 81 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 82 | 83 | array-union@^1.0.1: 84 | version "1.0.2" 85 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 86 | dependencies: 87 | array-uniq "^1.0.1" 88 | 89 | array-uniq@^1.0.1: 90 | version "1.0.3" 91 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 92 | 93 | array-unique@^0.2.1: 94 | version "0.2.1" 95 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 96 | 97 | arrify@^1.0.1: 98 | version "1.0.1" 99 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 100 | 101 | asap@~2.0.3: 102 | version "2.0.6" 103 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 104 | 105 | async-each@^1.0.0: 106 | version "1.0.1" 107 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 108 | 109 | babel-cli@^6.26.0: 110 | version "6.26.0" 111 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 112 | dependencies: 113 | babel-core "^6.26.0" 114 | babel-polyfill "^6.26.0" 115 | babel-register "^6.26.0" 116 | babel-runtime "^6.26.0" 117 | commander "^2.11.0" 118 | convert-source-map "^1.5.0" 119 | fs-readdir-recursive "^1.0.0" 120 | glob "^7.1.2" 121 | lodash "^4.17.4" 122 | output-file-sync "^1.1.2" 123 | path-is-absolute "^1.0.1" 124 | slash "^1.0.0" 125 | source-map "^0.5.6" 126 | v8flags "^2.1.1" 127 | optionalDependencies: 128 | chokidar "^1.6.1" 129 | 130 | babel-code-frame@^6.26.0: 131 | version "6.26.0" 132 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 133 | dependencies: 134 | chalk "^1.1.3" 135 | esutils "^2.0.2" 136 | js-tokens "^3.0.2" 137 | 138 | babel-core@^6.26.0, babel-core@^6.26.3: 139 | version "6.26.3" 140 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 141 | dependencies: 142 | babel-code-frame "^6.26.0" 143 | babel-generator "^6.26.0" 144 | babel-helpers "^6.24.1" 145 | babel-messages "^6.23.0" 146 | babel-register "^6.26.0" 147 | babel-runtime "^6.26.0" 148 | babel-template "^6.26.0" 149 | babel-traverse "^6.26.0" 150 | babel-types "^6.26.0" 151 | babylon "^6.18.0" 152 | convert-source-map "^1.5.1" 153 | debug "^2.6.9" 154 | json5 "^0.5.1" 155 | lodash "^4.17.4" 156 | minimatch "^3.0.4" 157 | path-is-absolute "^1.0.1" 158 | private "^0.1.8" 159 | slash "^1.0.0" 160 | source-map "^0.5.7" 161 | 162 | babel-generator@^6.26.0: 163 | version "6.26.1" 164 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 165 | dependencies: 166 | babel-messages "^6.23.0" 167 | babel-runtime "^6.26.0" 168 | babel-types "^6.26.0" 169 | detect-indent "^4.0.0" 170 | jsesc "^1.3.0" 171 | lodash "^4.17.4" 172 | source-map "^0.5.7" 173 | trim-right "^1.0.1" 174 | 175 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 176 | version "6.24.1" 177 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 178 | dependencies: 179 | babel-helper-explode-assignable-expression "^6.24.1" 180 | babel-runtime "^6.22.0" 181 | babel-types "^6.24.1" 182 | 183 | babel-helper-builder-react-jsx@^6.24.1: 184 | version "6.26.0" 185 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 186 | dependencies: 187 | babel-runtime "^6.26.0" 188 | babel-types "^6.26.0" 189 | esutils "^2.0.2" 190 | 191 | babel-helper-call-delegate@^6.24.1: 192 | version "6.24.1" 193 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 194 | dependencies: 195 | babel-helper-hoist-variables "^6.24.1" 196 | babel-runtime "^6.22.0" 197 | babel-traverse "^6.24.1" 198 | babel-types "^6.24.1" 199 | 200 | babel-helper-define-map@^6.24.1: 201 | version "6.26.0" 202 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 203 | dependencies: 204 | babel-helper-function-name "^6.24.1" 205 | babel-runtime "^6.26.0" 206 | babel-types "^6.26.0" 207 | lodash "^4.17.4" 208 | 209 | babel-helper-explode-assignable-expression@^6.24.1: 210 | version "6.24.1" 211 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 212 | dependencies: 213 | babel-runtime "^6.22.0" 214 | babel-traverse "^6.24.1" 215 | babel-types "^6.24.1" 216 | 217 | babel-helper-function-name@^6.24.1: 218 | version "6.24.1" 219 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 220 | dependencies: 221 | babel-helper-get-function-arity "^6.24.1" 222 | babel-runtime "^6.22.0" 223 | babel-template "^6.24.1" 224 | babel-traverse "^6.24.1" 225 | babel-types "^6.24.1" 226 | 227 | babel-helper-get-function-arity@^6.24.1: 228 | version "6.24.1" 229 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 230 | dependencies: 231 | babel-runtime "^6.22.0" 232 | babel-types "^6.24.1" 233 | 234 | babel-helper-hoist-variables@^6.24.1: 235 | version "6.24.1" 236 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 237 | dependencies: 238 | babel-runtime "^6.22.0" 239 | babel-types "^6.24.1" 240 | 241 | babel-helper-optimise-call-expression@^6.24.1: 242 | version "6.24.1" 243 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 244 | dependencies: 245 | babel-runtime "^6.22.0" 246 | babel-types "^6.24.1" 247 | 248 | babel-helper-regex@^6.24.1: 249 | version "6.26.0" 250 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 251 | dependencies: 252 | babel-runtime "^6.26.0" 253 | babel-types "^6.26.0" 254 | lodash "^4.17.4" 255 | 256 | babel-helper-remap-async-to-generator@^6.24.1: 257 | version "6.24.1" 258 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 259 | dependencies: 260 | babel-helper-function-name "^6.24.1" 261 | babel-runtime "^6.22.0" 262 | babel-template "^6.24.1" 263 | babel-traverse "^6.24.1" 264 | babel-types "^6.24.1" 265 | 266 | babel-helper-replace-supers@^6.24.1: 267 | version "6.24.1" 268 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 269 | dependencies: 270 | babel-helper-optimise-call-expression "^6.24.1" 271 | babel-messages "^6.23.0" 272 | babel-runtime "^6.22.0" 273 | babel-template "^6.24.1" 274 | babel-traverse "^6.24.1" 275 | babel-types "^6.24.1" 276 | 277 | babel-helpers@^6.24.1: 278 | version "6.24.1" 279 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 280 | dependencies: 281 | babel-runtime "^6.22.0" 282 | babel-template "^6.24.1" 283 | 284 | babel-messages@^6.23.0: 285 | version "6.23.0" 286 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 287 | dependencies: 288 | babel-runtime "^6.22.0" 289 | 290 | babel-plugin-check-es2015-constants@^6.22.0: 291 | version "6.22.0" 292 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 293 | dependencies: 294 | babel-runtime "^6.22.0" 295 | 296 | babel-plugin-syntax-async-functions@^6.8.0: 297 | version "6.13.0" 298 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 299 | 300 | babel-plugin-syntax-class-properties@^6.8.0: 301 | version "6.13.0" 302 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 303 | 304 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 305 | version "6.13.0" 306 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 307 | 308 | babel-plugin-syntax-flow@^6.18.0: 309 | version "6.18.0" 310 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 311 | 312 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 313 | version "6.18.0" 314 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 315 | 316 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 317 | version "6.22.0" 318 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 319 | 320 | babel-plugin-transform-async-to-generator@^6.22.0: 321 | version "6.24.1" 322 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 323 | dependencies: 324 | babel-helper-remap-async-to-generator "^6.24.1" 325 | babel-plugin-syntax-async-functions "^6.8.0" 326 | babel-runtime "^6.22.0" 327 | 328 | babel-plugin-transform-class-properties@^6.24.1: 329 | version "6.24.1" 330 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 331 | dependencies: 332 | babel-helper-function-name "^6.24.1" 333 | babel-plugin-syntax-class-properties "^6.8.0" 334 | babel-runtime "^6.22.0" 335 | babel-template "^6.24.1" 336 | 337 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 338 | version "6.22.0" 339 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 340 | dependencies: 341 | babel-runtime "^6.22.0" 342 | 343 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 344 | version "6.22.0" 345 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 346 | dependencies: 347 | babel-runtime "^6.22.0" 348 | 349 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 350 | version "6.26.0" 351 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 352 | dependencies: 353 | babel-runtime "^6.26.0" 354 | babel-template "^6.26.0" 355 | babel-traverse "^6.26.0" 356 | babel-types "^6.26.0" 357 | lodash "^4.17.4" 358 | 359 | babel-plugin-transform-es2015-classes@^6.23.0: 360 | version "6.24.1" 361 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 362 | dependencies: 363 | babel-helper-define-map "^6.24.1" 364 | babel-helper-function-name "^6.24.1" 365 | babel-helper-optimise-call-expression "^6.24.1" 366 | babel-helper-replace-supers "^6.24.1" 367 | babel-messages "^6.23.0" 368 | babel-runtime "^6.22.0" 369 | babel-template "^6.24.1" 370 | babel-traverse "^6.24.1" 371 | babel-types "^6.24.1" 372 | 373 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 374 | version "6.24.1" 375 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 376 | dependencies: 377 | babel-runtime "^6.22.0" 378 | babel-template "^6.24.1" 379 | 380 | babel-plugin-transform-es2015-destructuring@^6.23.0: 381 | version "6.23.0" 382 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 383 | dependencies: 384 | babel-runtime "^6.22.0" 385 | 386 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 387 | version "6.24.1" 388 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 389 | dependencies: 390 | babel-runtime "^6.22.0" 391 | babel-types "^6.24.1" 392 | 393 | babel-plugin-transform-es2015-for-of@^6.23.0: 394 | version "6.23.0" 395 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 396 | dependencies: 397 | babel-runtime "^6.22.0" 398 | 399 | babel-plugin-transform-es2015-function-name@^6.22.0: 400 | version "6.24.1" 401 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 402 | dependencies: 403 | babel-helper-function-name "^6.24.1" 404 | babel-runtime "^6.22.0" 405 | babel-types "^6.24.1" 406 | 407 | babel-plugin-transform-es2015-literals@^6.22.0: 408 | version "6.22.0" 409 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 410 | dependencies: 411 | babel-runtime "^6.22.0" 412 | 413 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 414 | version "6.24.1" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 416 | dependencies: 417 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 418 | babel-runtime "^6.22.0" 419 | babel-template "^6.24.1" 420 | 421 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 422 | version "6.26.2" 423 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" 424 | dependencies: 425 | babel-plugin-transform-strict-mode "^6.24.1" 426 | babel-runtime "^6.26.0" 427 | babel-template "^6.26.0" 428 | babel-types "^6.26.0" 429 | 430 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 431 | version "6.24.1" 432 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 433 | dependencies: 434 | babel-helper-hoist-variables "^6.24.1" 435 | babel-runtime "^6.22.0" 436 | babel-template "^6.24.1" 437 | 438 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 439 | version "6.24.1" 440 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 441 | dependencies: 442 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 443 | babel-runtime "^6.22.0" 444 | babel-template "^6.24.1" 445 | 446 | babel-plugin-transform-es2015-object-super@^6.22.0: 447 | version "6.24.1" 448 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 449 | dependencies: 450 | babel-helper-replace-supers "^6.24.1" 451 | babel-runtime "^6.22.0" 452 | 453 | babel-plugin-transform-es2015-parameters@^6.23.0: 454 | version "6.24.1" 455 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 456 | dependencies: 457 | babel-helper-call-delegate "^6.24.1" 458 | babel-helper-get-function-arity "^6.24.1" 459 | babel-runtime "^6.22.0" 460 | babel-template "^6.24.1" 461 | babel-traverse "^6.24.1" 462 | babel-types "^6.24.1" 463 | 464 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 465 | version "6.24.1" 466 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 467 | dependencies: 468 | babel-runtime "^6.22.0" 469 | babel-types "^6.24.1" 470 | 471 | babel-plugin-transform-es2015-spread@^6.22.0: 472 | version "6.22.0" 473 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 474 | dependencies: 475 | babel-runtime "^6.22.0" 476 | 477 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 478 | version "6.24.1" 479 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 480 | dependencies: 481 | babel-helper-regex "^6.24.1" 482 | babel-runtime "^6.22.0" 483 | babel-types "^6.24.1" 484 | 485 | babel-plugin-transform-es2015-template-literals@^6.22.0: 486 | version "6.22.0" 487 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 488 | dependencies: 489 | babel-runtime "^6.22.0" 490 | 491 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 492 | version "6.23.0" 493 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 494 | dependencies: 495 | babel-runtime "^6.22.0" 496 | 497 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 498 | version "6.24.1" 499 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 500 | dependencies: 501 | babel-helper-regex "^6.24.1" 502 | babel-runtime "^6.22.0" 503 | regexpu-core "^2.0.0" 504 | 505 | babel-plugin-transform-exponentiation-operator@^6.22.0: 506 | version "6.24.1" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 508 | dependencies: 509 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 510 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 511 | babel-runtime "^6.22.0" 512 | 513 | babel-plugin-transform-flow-strip-types@^6.22.0: 514 | version "6.22.0" 515 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 516 | dependencies: 517 | babel-plugin-syntax-flow "^6.18.0" 518 | babel-runtime "^6.22.0" 519 | 520 | babel-plugin-transform-react-display-name@^6.23.0: 521 | version "6.25.0" 522 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 523 | dependencies: 524 | babel-runtime "^6.22.0" 525 | 526 | babel-plugin-transform-react-jsx-self@^6.22.0: 527 | version "6.22.0" 528 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 529 | dependencies: 530 | babel-plugin-syntax-jsx "^6.8.0" 531 | babel-runtime "^6.22.0" 532 | 533 | babel-plugin-transform-react-jsx-source@^6.22.0: 534 | version "6.22.0" 535 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 536 | dependencies: 537 | babel-plugin-syntax-jsx "^6.8.0" 538 | babel-runtime "^6.22.0" 539 | 540 | babel-plugin-transform-react-jsx@^6.24.1: 541 | version "6.24.1" 542 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 543 | dependencies: 544 | babel-helper-builder-react-jsx "^6.24.1" 545 | babel-plugin-syntax-jsx "^6.8.0" 546 | babel-runtime "^6.22.0" 547 | 548 | babel-plugin-transform-regenerator@^6.22.0: 549 | version "6.26.0" 550 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 551 | dependencies: 552 | regenerator-transform "^0.10.0" 553 | 554 | babel-plugin-transform-strict-mode@^6.24.1: 555 | version "6.24.1" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 557 | dependencies: 558 | babel-runtime "^6.22.0" 559 | babel-types "^6.24.1" 560 | 561 | babel-polyfill@^6.26.0: 562 | version "6.26.0" 563 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 564 | dependencies: 565 | babel-runtime "^6.26.0" 566 | core-js "^2.5.0" 567 | regenerator-runtime "^0.10.5" 568 | 569 | babel-preset-env@^1.7.0: 570 | version "1.7.0" 571 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a" 572 | dependencies: 573 | babel-plugin-check-es2015-constants "^6.22.0" 574 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 575 | babel-plugin-transform-async-to-generator "^6.22.0" 576 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 577 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 578 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 579 | babel-plugin-transform-es2015-classes "^6.23.0" 580 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 581 | babel-plugin-transform-es2015-destructuring "^6.23.0" 582 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 583 | babel-plugin-transform-es2015-for-of "^6.23.0" 584 | babel-plugin-transform-es2015-function-name "^6.22.0" 585 | babel-plugin-transform-es2015-literals "^6.22.0" 586 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 587 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 588 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 589 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 590 | babel-plugin-transform-es2015-object-super "^6.22.0" 591 | babel-plugin-transform-es2015-parameters "^6.23.0" 592 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 593 | babel-plugin-transform-es2015-spread "^6.22.0" 594 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 595 | babel-plugin-transform-es2015-template-literals "^6.22.0" 596 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 597 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 598 | babel-plugin-transform-exponentiation-operator "^6.22.0" 599 | babel-plugin-transform-regenerator "^6.22.0" 600 | browserslist "^3.2.6" 601 | invariant "^2.2.2" 602 | semver "^5.3.0" 603 | 604 | babel-preset-flow@^6.23.0: 605 | version "6.23.0" 606 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 607 | dependencies: 608 | babel-plugin-transform-flow-strip-types "^6.22.0" 609 | 610 | babel-preset-react@^6.24.1: 611 | version "6.24.1" 612 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 613 | dependencies: 614 | babel-plugin-syntax-jsx "^6.3.13" 615 | babel-plugin-transform-react-display-name "^6.23.0" 616 | babel-plugin-transform-react-jsx "^6.24.1" 617 | babel-plugin-transform-react-jsx-self "^6.22.0" 618 | babel-plugin-transform-react-jsx-source "^6.22.0" 619 | babel-preset-flow "^6.23.0" 620 | 621 | babel-register@^6.26.0: 622 | version "6.26.0" 623 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 624 | dependencies: 625 | babel-core "^6.26.0" 626 | babel-runtime "^6.26.0" 627 | core-js "^2.5.0" 628 | home-or-tmp "^2.0.0" 629 | lodash "^4.17.4" 630 | mkdirp "^0.5.1" 631 | source-map-support "^0.4.15" 632 | 633 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 634 | version "6.26.0" 635 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 636 | dependencies: 637 | core-js "^2.4.0" 638 | regenerator-runtime "^0.11.0" 639 | 640 | babel-template@^6.24.1, babel-template@^6.26.0: 641 | version "6.26.0" 642 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 643 | dependencies: 644 | babel-runtime "^6.26.0" 645 | babel-traverse "^6.26.0" 646 | babel-types "^6.26.0" 647 | babylon "^6.18.0" 648 | lodash "^4.17.4" 649 | 650 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 651 | version "6.26.0" 652 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 653 | dependencies: 654 | babel-code-frame "^6.26.0" 655 | babel-messages "^6.23.0" 656 | babel-runtime "^6.26.0" 657 | babel-types "^6.26.0" 658 | babylon "^6.18.0" 659 | debug "^2.6.8" 660 | globals "^9.18.0" 661 | invariant "^2.2.2" 662 | lodash "^4.17.4" 663 | 664 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 665 | version "6.26.0" 666 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 667 | dependencies: 668 | babel-runtime "^6.26.0" 669 | esutils "^2.0.2" 670 | lodash "^4.17.4" 671 | to-fast-properties "^1.0.3" 672 | 673 | babylon@^6.18.0: 674 | version "6.18.0" 675 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 676 | 677 | balanced-match@^1.0.0: 678 | version "1.0.0" 679 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 680 | 681 | binary-extensions@^1.0.0: 682 | version "1.11.0" 683 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 684 | 685 | boxen@^1.2.1: 686 | version "1.3.0" 687 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 688 | dependencies: 689 | ansi-align "^2.0.0" 690 | camelcase "^4.0.0" 691 | chalk "^2.0.1" 692 | cli-boxes "^1.0.0" 693 | string-width "^2.0.0" 694 | term-size "^1.2.0" 695 | widest-line "^2.0.0" 696 | 697 | brace-expansion@^1.1.7: 698 | version "1.1.11" 699 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 700 | dependencies: 701 | balanced-match "^1.0.0" 702 | concat-map "0.0.1" 703 | 704 | braces@^1.8.2: 705 | version "1.8.5" 706 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 707 | dependencies: 708 | expand-range "^1.8.1" 709 | preserve "^0.2.0" 710 | repeat-element "^1.1.2" 711 | 712 | browserslist@^3.2.6: 713 | version "3.2.8" 714 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6" 715 | dependencies: 716 | caniuse-lite "^1.0.30000844" 717 | electron-to-chromium "^1.3.47" 718 | 719 | builtin-modules@^1.0.0: 720 | version "1.1.1" 721 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 722 | 723 | camelcase-keys@^4.0.0: 724 | version "4.2.0" 725 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" 726 | dependencies: 727 | camelcase "^4.1.0" 728 | map-obj "^2.0.0" 729 | quick-lru "^1.0.0" 730 | 731 | camelcase@^4.0.0, camelcase@^4.1.0: 732 | version "4.1.0" 733 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 734 | 735 | caniuse-lite@^1.0.30000844: 736 | version "1.0.30000874" 737 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000874.tgz#a641b1f1c420d58d9b132920ef6ba87bbdcd2223" 738 | 739 | capture-stack-trace@^1.0.0: 740 | version "1.0.0" 741 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 742 | 743 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 744 | version "1.1.3" 745 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 746 | dependencies: 747 | ansi-styles "^2.2.1" 748 | escape-string-regexp "^1.0.2" 749 | has-ansi "^2.0.0" 750 | strip-ansi "^3.0.0" 751 | supports-color "^2.0.0" 752 | 753 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.3.0: 754 | version "2.4.1" 755 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 756 | dependencies: 757 | ansi-styles "^3.2.1" 758 | escape-string-regexp "^1.0.5" 759 | supports-color "^5.3.0" 760 | 761 | chardet@^0.4.0: 762 | version "0.4.2" 763 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 764 | 765 | chokidar@^1.6.1: 766 | version "1.7.0" 767 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 768 | dependencies: 769 | anymatch "^1.3.0" 770 | async-each "^1.0.0" 771 | glob-parent "^2.0.0" 772 | inherits "^2.0.1" 773 | is-binary-path "^1.0.0" 774 | is-glob "^2.0.0" 775 | path-is-absolute "^1.0.0" 776 | readdirp "^2.0.0" 777 | optionalDependencies: 778 | fsevents "^1.0.0" 779 | 780 | chownr@^1.0.1: 781 | version "1.0.1" 782 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 783 | 784 | ci-info@^1.0.0: 785 | version "1.1.3" 786 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2" 787 | 788 | cli-boxes@^1.0.0: 789 | version "1.0.0" 790 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 791 | 792 | cli-cursor@^1.0.2: 793 | version "1.0.2" 794 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 795 | dependencies: 796 | restore-cursor "^1.0.1" 797 | 798 | cli-cursor@^2.1.0: 799 | version "2.1.0" 800 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 801 | dependencies: 802 | restore-cursor "^2.0.0" 803 | 804 | cli-spinners@^0.1.2: 805 | version "0.1.2" 806 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 807 | 808 | cli-truncate@^0.2.1: 809 | version "0.2.1" 810 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 811 | dependencies: 812 | slice-ansi "0.0.4" 813 | string-width "^1.0.1" 814 | 815 | cli-width@^2.0.0: 816 | version "2.2.0" 817 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 818 | 819 | code-point-at@^1.0.0: 820 | version "1.1.0" 821 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 822 | 823 | color-convert@^1.9.0: 824 | version "1.9.2" 825 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147" 826 | dependencies: 827 | color-name "1.1.1" 828 | 829 | color-name@1.1.1: 830 | version "1.1.1" 831 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" 832 | 833 | commander@^2.11.0: 834 | version "2.17.1" 835 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" 836 | 837 | concat-map@0.0.1: 838 | version "0.0.1" 839 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 840 | 841 | configstore@^3.0.0: 842 | version "3.1.2" 843 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f" 844 | dependencies: 845 | dot-prop "^4.1.0" 846 | graceful-fs "^4.1.2" 847 | make-dir "^1.0.0" 848 | unique-string "^1.0.0" 849 | write-file-atomic "^2.0.0" 850 | xdg-basedir "^3.0.0" 851 | 852 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 853 | version "1.1.0" 854 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 855 | 856 | convert-source-map@^1.5.0, convert-source-map@^1.5.1: 857 | version "1.5.1" 858 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 859 | 860 | core-js@^1.0.0: 861 | version "1.2.7" 862 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 863 | 864 | core-js@^2.4.0, core-js@^2.5.0: 865 | version "2.5.7" 866 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 867 | 868 | core-util-is@~1.0.0: 869 | version "1.0.2" 870 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 871 | 872 | create-error-class@^3.0.0: 873 | version "3.0.2" 874 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 875 | dependencies: 876 | capture-stack-trace "^1.0.0" 877 | 878 | create-react-context@^0.2.2: 879 | version "0.2.2" 880 | resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.2.2.tgz#9836542f9aaa22868cd7d4a6f82667df38019dca" 881 | dependencies: 882 | fbjs "^0.8.0" 883 | gud "^1.0.0" 884 | 885 | cross-spawn@^5.0.1: 886 | version "5.1.0" 887 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 888 | dependencies: 889 | lru-cache "^4.0.1" 890 | shebang-command "^1.2.0" 891 | which "^1.2.9" 892 | 893 | cross-spawn@^6.0.0: 894 | version "6.0.5" 895 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 896 | dependencies: 897 | nice-try "^1.0.4" 898 | path-key "^2.0.1" 899 | semver "^5.5.0" 900 | shebang-command "^1.2.0" 901 | which "^1.2.9" 902 | 903 | crypto-random-string@^1.0.0: 904 | version "1.0.0" 905 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 906 | 907 | currently-unhandled@^0.4.1: 908 | version "0.4.1" 909 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 910 | dependencies: 911 | array-find-index "^1.0.1" 912 | 913 | date-fns@^1.27.2: 914 | version "1.29.0" 915 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.29.0.tgz#12e609cdcb935127311d04d33334e2960a2a54e6" 916 | 917 | debug@^2.1.2, debug@^2.6.8, debug@^2.6.9: 918 | version "2.6.9" 919 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 920 | dependencies: 921 | ms "2.0.0" 922 | 923 | decamelize-keys@^1.0.0: 924 | version "1.1.0" 925 | resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" 926 | dependencies: 927 | decamelize "^1.1.0" 928 | map-obj "^1.0.0" 929 | 930 | decamelize@^1.1.0: 931 | version "1.2.0" 932 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 933 | 934 | deep-extend@^0.6.0: 935 | version "0.6.0" 936 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 937 | 938 | del@^3.0.0: 939 | version "3.0.0" 940 | resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5" 941 | dependencies: 942 | globby "^6.1.0" 943 | is-path-cwd "^1.0.0" 944 | is-path-in-cwd "^1.0.0" 945 | p-map "^1.1.1" 946 | pify "^3.0.0" 947 | rimraf "^2.2.8" 948 | 949 | delegates@^1.0.0: 950 | version "1.0.0" 951 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 952 | 953 | detect-indent@^4.0.0: 954 | version "4.0.0" 955 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 956 | dependencies: 957 | repeating "^2.0.0" 958 | 959 | detect-libc@^1.0.2: 960 | version "1.0.3" 961 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 962 | 963 | dot-prop@^4.1.0: 964 | version "4.2.0" 965 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 966 | dependencies: 967 | is-obj "^1.0.0" 968 | 969 | duplexer3@^0.1.4: 970 | version "0.1.4" 971 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 972 | 973 | electron-to-chromium@^1.3.47: 974 | version "1.3.56" 975 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.56.tgz#aad1420d23e9dd8cd2fc2bc53f4928adcf85f02f" 976 | 977 | elegant-spinner@^1.0.1: 978 | version "1.0.1" 979 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 980 | 981 | encoding@^0.1.11: 982 | version "0.1.12" 983 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 984 | dependencies: 985 | iconv-lite "~0.4.13" 986 | 987 | error-ex@^1.3.1: 988 | version "1.3.2" 989 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 990 | dependencies: 991 | is-arrayish "^0.2.1" 992 | 993 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 994 | version "1.0.5" 995 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 996 | 997 | esutils@^2.0.2: 998 | version "2.0.2" 999 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1000 | 1001 | execa@^0.10.0: 1002 | version "0.10.0" 1003 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.10.0.tgz#ff456a8f53f90f8eccc71a96d11bdfc7f082cb50" 1004 | dependencies: 1005 | cross-spawn "^6.0.0" 1006 | get-stream "^3.0.0" 1007 | is-stream "^1.1.0" 1008 | npm-run-path "^2.0.0" 1009 | p-finally "^1.0.0" 1010 | signal-exit "^3.0.0" 1011 | strip-eof "^1.0.0" 1012 | 1013 | execa@^0.7.0: 1014 | version "0.7.0" 1015 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1016 | dependencies: 1017 | cross-spawn "^5.0.1" 1018 | get-stream "^3.0.0" 1019 | is-stream "^1.1.0" 1020 | npm-run-path "^2.0.0" 1021 | p-finally "^1.0.0" 1022 | signal-exit "^3.0.0" 1023 | strip-eof "^1.0.0" 1024 | 1025 | exit-hook@^1.0.0: 1026 | version "1.1.1" 1027 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1028 | 1029 | expand-brackets@^0.1.4: 1030 | version "0.1.5" 1031 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1032 | dependencies: 1033 | is-posix-bracket "^0.1.0" 1034 | 1035 | expand-range@^1.8.1: 1036 | version "1.8.2" 1037 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1038 | dependencies: 1039 | fill-range "^2.1.0" 1040 | 1041 | external-editor@^2.0.4, external-editor@^2.1.0: 1042 | version "2.2.0" 1043 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 1044 | dependencies: 1045 | chardet "^0.4.0" 1046 | iconv-lite "^0.4.17" 1047 | tmp "^0.0.33" 1048 | 1049 | extglob@^0.3.1: 1050 | version "0.3.2" 1051 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1052 | dependencies: 1053 | is-extglob "^1.0.0" 1054 | 1055 | fbjs@^0.8.0, fbjs@^0.8.16: 1056 | version "0.8.17" 1057 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" 1058 | dependencies: 1059 | core-js "^1.0.0" 1060 | isomorphic-fetch "^2.1.1" 1061 | loose-envify "^1.0.0" 1062 | object-assign "^4.1.0" 1063 | promise "^7.1.1" 1064 | setimmediate "^1.0.5" 1065 | ua-parser-js "^0.7.18" 1066 | 1067 | figures@^1.7.0: 1068 | version "1.7.0" 1069 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1070 | dependencies: 1071 | escape-string-regexp "^1.0.5" 1072 | object-assign "^4.1.0" 1073 | 1074 | figures@^2.0.0: 1075 | version "2.0.0" 1076 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1077 | dependencies: 1078 | escape-string-regexp "^1.0.5" 1079 | 1080 | filename-regex@^2.0.0: 1081 | version "2.0.1" 1082 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1083 | 1084 | fill-range@^2.1.0: 1085 | version "2.2.4" 1086 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 1087 | dependencies: 1088 | is-number "^2.1.0" 1089 | isobject "^2.0.0" 1090 | randomatic "^3.0.0" 1091 | repeat-element "^1.1.2" 1092 | repeat-string "^1.5.2" 1093 | 1094 | find-up@^2.0.0: 1095 | version "2.1.0" 1096 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1097 | dependencies: 1098 | locate-path "^2.0.0" 1099 | 1100 | for-in@^1.0.1: 1101 | version "1.0.2" 1102 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1103 | 1104 | for-own@^0.1.4: 1105 | version "0.1.5" 1106 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1107 | dependencies: 1108 | for-in "^1.0.1" 1109 | 1110 | fs-minipass@^1.2.5: 1111 | version "1.2.5" 1112 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1113 | dependencies: 1114 | minipass "^2.2.1" 1115 | 1116 | fs-readdir-recursive@^1.0.0: 1117 | version "1.1.0" 1118 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1119 | 1120 | fs.realpath@^1.0.0: 1121 | version "1.0.0" 1122 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1123 | 1124 | fsevents@^1.0.0: 1125 | version "1.2.4" 1126 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1127 | dependencies: 1128 | nan "^2.9.2" 1129 | node-pre-gyp "^0.10.0" 1130 | 1131 | gauge@~2.7.3: 1132 | version "2.7.4" 1133 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1134 | dependencies: 1135 | aproba "^1.0.3" 1136 | console-control-strings "^1.0.0" 1137 | has-unicode "^2.0.0" 1138 | object-assign "^4.1.0" 1139 | signal-exit "^3.0.0" 1140 | string-width "^1.0.1" 1141 | strip-ansi "^3.0.1" 1142 | wide-align "^1.1.0" 1143 | 1144 | get-stream@^3.0.0: 1145 | version "3.0.0" 1146 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1147 | 1148 | github-url-from-git@^1.5.0: 1149 | version "1.5.0" 1150 | resolved "https://registry.yarnpkg.com/github-url-from-git/-/github-url-from-git-1.5.0.tgz#f985fedcc0a9aa579dc88d7aff068d55cc6251a0" 1151 | 1152 | glob-base@^0.3.0: 1153 | version "0.3.0" 1154 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1155 | dependencies: 1156 | glob-parent "^2.0.0" 1157 | is-glob "^2.0.0" 1158 | 1159 | glob-parent@^2.0.0: 1160 | version "2.0.0" 1161 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1162 | dependencies: 1163 | is-glob "^2.0.0" 1164 | 1165 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 1166 | version "7.1.2" 1167 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1168 | dependencies: 1169 | fs.realpath "^1.0.0" 1170 | inflight "^1.0.4" 1171 | inherits "2" 1172 | minimatch "^3.0.4" 1173 | once "^1.3.0" 1174 | path-is-absolute "^1.0.0" 1175 | 1176 | global-dirs@^0.1.0: 1177 | version "0.1.1" 1178 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 1179 | dependencies: 1180 | ini "^1.3.4" 1181 | 1182 | globals@^9.18.0: 1183 | version "9.18.0" 1184 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1185 | 1186 | globby@^6.1.0: 1187 | version "6.1.0" 1188 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 1189 | dependencies: 1190 | array-union "^1.0.1" 1191 | glob "^7.0.3" 1192 | object-assign "^4.0.1" 1193 | pify "^2.0.0" 1194 | pinkie-promise "^2.0.0" 1195 | 1196 | got@^6.7.1: 1197 | version "6.7.1" 1198 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1199 | dependencies: 1200 | create-error-class "^3.0.0" 1201 | duplexer3 "^0.1.4" 1202 | get-stream "^3.0.0" 1203 | is-redirect "^1.0.0" 1204 | is-retry-allowed "^1.0.0" 1205 | is-stream "^1.0.0" 1206 | lowercase-keys "^1.0.0" 1207 | safe-buffer "^5.0.1" 1208 | timed-out "^4.0.0" 1209 | unzip-response "^2.0.1" 1210 | url-parse-lax "^1.0.0" 1211 | 1212 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1213 | version "4.1.11" 1214 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1215 | 1216 | gud@^1.0.0: 1217 | version "1.0.0" 1218 | resolved "https://registry.yarnpkg.com/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0" 1219 | 1220 | has-ansi@^2.0.0: 1221 | version "2.0.0" 1222 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1223 | dependencies: 1224 | ansi-regex "^2.0.0" 1225 | 1226 | has-flag@^2.0.0: 1227 | version "2.0.0" 1228 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1229 | 1230 | has-flag@^3.0.0: 1231 | version "3.0.0" 1232 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1233 | 1234 | has-unicode@^2.0.0: 1235 | version "2.0.1" 1236 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1237 | 1238 | has-yarn@^1.0.0: 1239 | version "1.0.0" 1240 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7" 1241 | 1242 | history@^4.7.2: 1243 | version "4.7.2" 1244 | resolved "https://registry.yarnpkg.com/history/-/history-4.7.2.tgz#22b5c7f31633c5b8021c7f4a8a954ac139ee8d5b" 1245 | dependencies: 1246 | invariant "^2.2.1" 1247 | loose-envify "^1.2.0" 1248 | resolve-pathname "^2.2.0" 1249 | value-equal "^0.4.0" 1250 | warning "^3.0.0" 1251 | 1252 | home-or-tmp@^2.0.0: 1253 | version "2.0.0" 1254 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1255 | dependencies: 1256 | os-homedir "^1.0.0" 1257 | os-tmpdir "^1.0.1" 1258 | 1259 | hosted-git-info@^2.1.4: 1260 | version "2.7.1" 1261 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" 1262 | 1263 | iconv-lite@^0.4.17, iconv-lite@^0.4.4, iconv-lite@~0.4.13: 1264 | version "0.4.23" 1265 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 1266 | dependencies: 1267 | safer-buffer ">= 2.1.2 < 3" 1268 | 1269 | ignore-walk@^3.0.1: 1270 | version "3.0.1" 1271 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1272 | dependencies: 1273 | minimatch "^3.0.4" 1274 | 1275 | import-lazy@^2.1.0: 1276 | version "2.1.0" 1277 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1278 | 1279 | imurmurhash@^0.1.4: 1280 | version "0.1.4" 1281 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1282 | 1283 | indent-string@^2.1.0: 1284 | version "2.1.0" 1285 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1286 | dependencies: 1287 | repeating "^2.0.0" 1288 | 1289 | indent-string@^3.0.0: 1290 | version "3.2.0" 1291 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1292 | 1293 | inflight@^1.0.4: 1294 | version "1.0.6" 1295 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1296 | dependencies: 1297 | once "^1.3.0" 1298 | wrappy "1" 1299 | 1300 | inherits@2, inherits@^2.0.1, inherits@~2.0.3: 1301 | version "2.0.3" 1302 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1303 | 1304 | ini@^1.3.4, ini@~1.3.0: 1305 | version "1.3.5" 1306 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1307 | 1308 | inquirer@^3.3.0: 1309 | version "3.3.0" 1310 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1311 | dependencies: 1312 | ansi-escapes "^3.0.0" 1313 | chalk "^2.0.0" 1314 | cli-cursor "^2.1.0" 1315 | cli-width "^2.0.0" 1316 | external-editor "^2.0.4" 1317 | figures "^2.0.0" 1318 | lodash "^4.3.0" 1319 | mute-stream "0.0.7" 1320 | run-async "^2.2.0" 1321 | rx-lite "^4.0.8" 1322 | rx-lite-aggregates "^4.0.8" 1323 | string-width "^2.1.0" 1324 | strip-ansi "^4.0.0" 1325 | through "^2.3.6" 1326 | 1327 | inquirer@^5.2.0: 1328 | version "5.2.0" 1329 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-5.2.0.tgz#db350c2b73daca77ff1243962e9f22f099685726" 1330 | dependencies: 1331 | ansi-escapes "^3.0.0" 1332 | chalk "^2.0.0" 1333 | cli-cursor "^2.1.0" 1334 | cli-width "^2.0.0" 1335 | external-editor "^2.1.0" 1336 | figures "^2.0.0" 1337 | lodash "^4.3.0" 1338 | mute-stream "0.0.7" 1339 | run-async "^2.2.0" 1340 | rxjs "^5.5.2" 1341 | string-width "^2.1.0" 1342 | strip-ansi "^4.0.0" 1343 | through "^2.3.6" 1344 | 1345 | invariant@^2.2.1, invariant@^2.2.2: 1346 | version "2.2.4" 1347 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1348 | dependencies: 1349 | loose-envify "^1.0.0" 1350 | 1351 | is-arrayish@^0.2.1: 1352 | version "0.2.1" 1353 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1354 | 1355 | is-binary-path@^1.0.0: 1356 | version "1.0.1" 1357 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1358 | dependencies: 1359 | binary-extensions "^1.0.0" 1360 | 1361 | is-buffer@^1.1.5: 1362 | version "1.1.6" 1363 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1364 | 1365 | is-builtin-module@^1.0.0: 1366 | version "1.0.0" 1367 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1368 | dependencies: 1369 | builtin-modules "^1.0.0" 1370 | 1371 | is-ci@^1.0.10: 1372 | version "1.1.0" 1373 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 1374 | dependencies: 1375 | ci-info "^1.0.0" 1376 | 1377 | is-dotfile@^1.0.0: 1378 | version "1.0.3" 1379 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1380 | 1381 | is-equal-shallow@^0.1.3: 1382 | version "0.1.3" 1383 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1384 | dependencies: 1385 | is-primitive "^2.0.0" 1386 | 1387 | is-extendable@^0.1.1: 1388 | version "0.1.1" 1389 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1390 | 1391 | is-extglob@^1.0.0: 1392 | version "1.0.0" 1393 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1394 | 1395 | is-finite@^1.0.0: 1396 | version "1.0.2" 1397 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1398 | dependencies: 1399 | number-is-nan "^1.0.0" 1400 | 1401 | is-fullwidth-code-point@^1.0.0: 1402 | version "1.0.0" 1403 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1404 | dependencies: 1405 | number-is-nan "^1.0.0" 1406 | 1407 | is-fullwidth-code-point@^2.0.0: 1408 | version "2.0.0" 1409 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1410 | 1411 | is-glob@^2.0.0, is-glob@^2.0.1: 1412 | version "2.0.1" 1413 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1414 | dependencies: 1415 | is-extglob "^1.0.0" 1416 | 1417 | is-installed-globally@^0.1.0: 1418 | version "0.1.0" 1419 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 1420 | dependencies: 1421 | global-dirs "^0.1.0" 1422 | is-path-inside "^1.0.0" 1423 | 1424 | is-npm@^1.0.0: 1425 | version "1.0.0" 1426 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1427 | 1428 | is-number@^2.1.0: 1429 | version "2.1.0" 1430 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1431 | dependencies: 1432 | kind-of "^3.0.2" 1433 | 1434 | is-number@^4.0.0: 1435 | version "4.0.0" 1436 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1437 | 1438 | is-obj@^1.0.0: 1439 | version "1.0.1" 1440 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1441 | 1442 | is-observable@^1.1.0: 1443 | version "1.1.0" 1444 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" 1445 | dependencies: 1446 | symbol-observable "^1.1.0" 1447 | 1448 | is-path-cwd@^1.0.0: 1449 | version "1.0.0" 1450 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1451 | 1452 | is-path-in-cwd@^1.0.0: 1453 | version "1.0.1" 1454 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" 1455 | dependencies: 1456 | is-path-inside "^1.0.0" 1457 | 1458 | is-path-inside@^1.0.0: 1459 | version "1.0.1" 1460 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1461 | dependencies: 1462 | path-is-inside "^1.0.1" 1463 | 1464 | is-plain-obj@^1.1.0: 1465 | version "1.1.0" 1466 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1467 | 1468 | is-posix-bracket@^0.1.0: 1469 | version "0.1.1" 1470 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1471 | 1472 | is-primitive@^2.0.0: 1473 | version "2.0.0" 1474 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1475 | 1476 | is-promise@^2.1.0: 1477 | version "2.1.0" 1478 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1479 | 1480 | is-redirect@^1.0.0: 1481 | version "1.0.0" 1482 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1483 | 1484 | is-retry-allowed@^1.0.0: 1485 | version "1.1.0" 1486 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 1487 | 1488 | is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0: 1489 | version "1.1.0" 1490 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1491 | 1492 | isarray@1.0.0, isarray@~1.0.0: 1493 | version "1.0.0" 1494 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1495 | 1496 | isexe@^2.0.0: 1497 | version "2.0.0" 1498 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1499 | 1500 | isobject@^2.0.0: 1501 | version "2.1.0" 1502 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1503 | dependencies: 1504 | isarray "1.0.0" 1505 | 1506 | isomorphic-fetch@^2.1.1: 1507 | version "2.2.1" 1508 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1509 | dependencies: 1510 | node-fetch "^1.0.1" 1511 | whatwg-fetch ">=0.10.0" 1512 | 1513 | issue-regex@^2.0.0: 1514 | version "2.0.0" 1515 | resolved "https://registry.yarnpkg.com/issue-regex/-/issue-regex-2.0.0.tgz#bb1802490394f8083c7a6787247cbf975638ef5d" 1516 | 1517 | "js-tokens@^3.0.0 || ^4.0.0": 1518 | version "4.0.0" 1519 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1520 | 1521 | js-tokens@^3.0.2: 1522 | version "3.0.2" 1523 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1524 | 1525 | jsesc@^1.3.0: 1526 | version "1.3.0" 1527 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1528 | 1529 | jsesc@~0.5.0: 1530 | version "0.5.0" 1531 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1532 | 1533 | json-parse-better-errors@^1.0.1: 1534 | version "1.0.2" 1535 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1536 | 1537 | json5@^0.5.1: 1538 | version "0.5.1" 1539 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1540 | 1541 | kind-of@^3.0.2: 1542 | version "3.2.2" 1543 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1544 | dependencies: 1545 | is-buffer "^1.1.5" 1546 | 1547 | kind-of@^6.0.0: 1548 | version "6.0.2" 1549 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1550 | 1551 | latest-version@^3.0.0: 1552 | version "3.1.0" 1553 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 1554 | dependencies: 1555 | package-json "^4.0.0" 1556 | 1557 | listr-input@^0.1.1: 1558 | version "0.1.3" 1559 | resolved "https://registry.yarnpkg.com/listr-input/-/listr-input-0.1.3.tgz#0c313967b6d179ebe964a81e9363ce2a5a39d25c" 1560 | dependencies: 1561 | inquirer "^3.3.0" 1562 | rxjs "^5.5.2" 1563 | through "^2.3.8" 1564 | 1565 | listr-silent-renderer@^1.1.1: 1566 | version "1.1.1" 1567 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 1568 | 1569 | listr-update-renderer@^0.4.0: 1570 | version "0.4.0" 1571 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.4.0.tgz#344d980da2ca2e8b145ba305908f32ae3f4cc8a7" 1572 | dependencies: 1573 | chalk "^1.1.3" 1574 | cli-truncate "^0.2.1" 1575 | elegant-spinner "^1.0.1" 1576 | figures "^1.7.0" 1577 | indent-string "^3.0.0" 1578 | log-symbols "^1.0.2" 1579 | log-update "^1.0.2" 1580 | strip-ansi "^3.0.1" 1581 | 1582 | listr-verbose-renderer@^0.4.0: 1583 | version "0.4.1" 1584 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#8206f4cf6d52ddc5827e5fd14989e0e965933a35" 1585 | dependencies: 1586 | chalk "^1.1.3" 1587 | cli-cursor "^1.0.2" 1588 | date-fns "^1.27.2" 1589 | figures "^1.7.0" 1590 | 1591 | listr@^0.14.1: 1592 | version "0.14.1" 1593 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.1.tgz#8a7afa4a7135cee4c921d128e0b7dfc6e522d43d" 1594 | dependencies: 1595 | "@samverschueren/stream-to-observable" "^0.3.0" 1596 | cli-truncate "^0.2.1" 1597 | figures "^1.7.0" 1598 | indent-string "^2.1.0" 1599 | is-observable "^1.1.0" 1600 | is-promise "^2.1.0" 1601 | is-stream "^1.1.0" 1602 | listr-silent-renderer "^1.1.1" 1603 | listr-update-renderer "^0.4.0" 1604 | listr-verbose-renderer "^0.4.0" 1605 | log-symbols "^1.0.2" 1606 | log-update "^1.0.2" 1607 | ora "^0.2.3" 1608 | p-map "^1.1.1" 1609 | rxjs "^6.1.0" 1610 | strip-ansi "^3.0.1" 1611 | 1612 | load-json-file@^4.0.0: 1613 | version "4.0.0" 1614 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 1615 | dependencies: 1616 | graceful-fs "^4.1.2" 1617 | parse-json "^4.0.0" 1618 | pify "^3.0.0" 1619 | strip-bom "^3.0.0" 1620 | 1621 | locate-path@^2.0.0: 1622 | version "2.0.0" 1623 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1624 | dependencies: 1625 | p-locate "^2.0.0" 1626 | path-exists "^3.0.0" 1627 | 1628 | lodash@^4.17.4, lodash@^4.3.0: 1629 | version "4.17.10" 1630 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 1631 | 1632 | log-symbols@^1.0.2: 1633 | version "1.0.2" 1634 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 1635 | dependencies: 1636 | chalk "^1.0.0" 1637 | 1638 | log-symbols@^2.1.0: 1639 | version "2.2.0" 1640 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" 1641 | dependencies: 1642 | chalk "^2.0.1" 1643 | 1644 | log-update@^1.0.2: 1645 | version "1.0.2" 1646 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 1647 | dependencies: 1648 | ansi-escapes "^1.0.0" 1649 | cli-cursor "^1.0.2" 1650 | 1651 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3.1: 1652 | version "1.4.0" 1653 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1654 | dependencies: 1655 | js-tokens "^3.0.0 || ^4.0.0" 1656 | 1657 | loud-rejection@^1.0.0: 1658 | version "1.6.0" 1659 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1660 | dependencies: 1661 | currently-unhandled "^0.4.1" 1662 | signal-exit "^3.0.0" 1663 | 1664 | lowercase-keys@^1.0.0: 1665 | version "1.0.1" 1666 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 1667 | 1668 | lru-cache@^4.0.1: 1669 | version "4.1.3" 1670 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 1671 | dependencies: 1672 | pseudomap "^1.0.2" 1673 | yallist "^2.1.2" 1674 | 1675 | make-dir@^1.0.0: 1676 | version "1.3.0" 1677 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" 1678 | dependencies: 1679 | pify "^3.0.0" 1680 | 1681 | map-obj@^1.0.0: 1682 | version "1.0.1" 1683 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1684 | 1685 | map-obj@^2.0.0: 1686 | version "2.0.0" 1687 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" 1688 | 1689 | math-random@^1.0.1: 1690 | version "1.0.1" 1691 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 1692 | 1693 | meow@^5.0.0: 1694 | version "5.0.0" 1695 | resolved "https://registry.yarnpkg.com/meow/-/meow-5.0.0.tgz#dfc73d63a9afc714a5e371760eb5c88b91078aa4" 1696 | dependencies: 1697 | camelcase-keys "^4.0.0" 1698 | decamelize-keys "^1.0.0" 1699 | loud-rejection "^1.0.0" 1700 | minimist-options "^3.0.1" 1701 | normalize-package-data "^2.3.4" 1702 | read-pkg-up "^3.0.0" 1703 | redent "^2.0.0" 1704 | trim-newlines "^2.0.0" 1705 | yargs-parser "^10.0.0" 1706 | 1707 | micromatch@^2.1.5: 1708 | version "2.3.11" 1709 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1710 | dependencies: 1711 | arr-diff "^2.0.0" 1712 | array-unique "^0.2.1" 1713 | braces "^1.8.2" 1714 | expand-brackets "^0.1.4" 1715 | extglob "^0.3.1" 1716 | filename-regex "^2.0.0" 1717 | is-extglob "^1.0.0" 1718 | is-glob "^2.0.1" 1719 | kind-of "^3.0.2" 1720 | normalize-path "^2.0.1" 1721 | object.omit "^2.0.0" 1722 | parse-glob "^3.0.4" 1723 | regex-cache "^0.4.2" 1724 | 1725 | mimic-fn@^1.0.0: 1726 | version "1.2.0" 1727 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 1728 | 1729 | minimatch@^3.0.2, minimatch@^3.0.4: 1730 | version "3.0.4" 1731 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1732 | dependencies: 1733 | brace-expansion "^1.1.7" 1734 | 1735 | minimist-options@^3.0.1: 1736 | version "3.0.2" 1737 | resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954" 1738 | dependencies: 1739 | arrify "^1.0.1" 1740 | is-plain-obj "^1.1.0" 1741 | 1742 | minimist@0.0.8: 1743 | version "0.0.8" 1744 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1745 | 1746 | minimist@^1.2.0: 1747 | version "1.2.0" 1748 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1749 | 1750 | minipass@^2.2.1, minipass@^2.3.3: 1751 | version "2.3.3" 1752 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233" 1753 | dependencies: 1754 | safe-buffer "^5.1.2" 1755 | yallist "^3.0.0" 1756 | 1757 | minizlib@^1.1.0: 1758 | version "1.1.0" 1759 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 1760 | dependencies: 1761 | minipass "^2.2.1" 1762 | 1763 | mkdirp@^0.5.0, mkdirp@^0.5.1: 1764 | version "0.5.1" 1765 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1766 | dependencies: 1767 | minimist "0.0.8" 1768 | 1769 | ms@2.0.0: 1770 | version "2.0.0" 1771 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1772 | 1773 | mute-stream@0.0.7: 1774 | version "0.0.7" 1775 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1776 | 1777 | nan@^2.9.2: 1778 | version "2.10.0" 1779 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 1780 | 1781 | needle@^2.2.1: 1782 | version "2.2.2" 1783 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.2.tgz#1120ca4c41f2fcc6976fd28a8968afe239929418" 1784 | dependencies: 1785 | debug "^2.1.2" 1786 | iconv-lite "^0.4.4" 1787 | sax "^1.2.4" 1788 | 1789 | nice-try@^1.0.4: 1790 | version "1.0.4" 1791 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.4.tgz#d93962f6c52f2c1558c0fbda6d512819f1efe1c4" 1792 | 1793 | node-fetch@^1.0.1: 1794 | version "1.7.3" 1795 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 1796 | dependencies: 1797 | encoding "^0.1.11" 1798 | is-stream "^1.0.1" 1799 | 1800 | node-pre-gyp@^0.10.0: 1801 | version "0.10.3" 1802 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" 1803 | dependencies: 1804 | detect-libc "^1.0.2" 1805 | mkdirp "^0.5.1" 1806 | needle "^2.2.1" 1807 | nopt "^4.0.1" 1808 | npm-packlist "^1.1.6" 1809 | npmlog "^4.0.2" 1810 | rc "^1.2.7" 1811 | rimraf "^2.6.1" 1812 | semver "^5.3.0" 1813 | tar "^4" 1814 | 1815 | nopt@^4.0.1: 1816 | version "4.0.1" 1817 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1818 | dependencies: 1819 | abbrev "1" 1820 | osenv "^0.1.4" 1821 | 1822 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1823 | version "2.4.0" 1824 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1825 | dependencies: 1826 | hosted-git-info "^2.1.4" 1827 | is-builtin-module "^1.0.0" 1828 | semver "2 || 3 || 4 || 5" 1829 | validate-npm-package-license "^3.0.1" 1830 | 1831 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1832 | version "2.1.1" 1833 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1834 | dependencies: 1835 | remove-trailing-separator "^1.0.1" 1836 | 1837 | np@^3.0.4: 1838 | version "3.0.4" 1839 | resolved "https://registry.yarnpkg.com/np/-/np-3.0.4.tgz#cccd1fd55bc1aea5b22b2ab5ee96e8273b9bbdd5" 1840 | dependencies: 1841 | "@samverschueren/stream-to-observable" "^0.3.0" 1842 | any-observable "^0.3.0" 1843 | chalk "^2.3.0" 1844 | del "^3.0.0" 1845 | execa "^0.10.0" 1846 | github-url-from-git "^1.5.0" 1847 | has-yarn "^1.0.0" 1848 | inquirer "^5.2.0" 1849 | issue-regex "^2.0.0" 1850 | listr "^0.14.1" 1851 | listr-input "^0.1.1" 1852 | log-symbols "^2.1.0" 1853 | meow "^5.0.0" 1854 | p-timeout "^2.0.1" 1855 | read-pkg-up "^3.0.0" 1856 | rxjs "^6.2.0" 1857 | semver "^5.2.0" 1858 | split "^1.0.0" 1859 | terminal-link "^1.1.0" 1860 | update-notifier "^2.1.0" 1861 | 1862 | npm-bundled@^1.0.1: 1863 | version "1.0.3" 1864 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 1865 | 1866 | npm-packlist@^1.1.6: 1867 | version "1.1.11" 1868 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.11.tgz#84e8c683cbe7867d34b1d357d893ce29e28a02de" 1869 | dependencies: 1870 | ignore-walk "^3.0.1" 1871 | npm-bundled "^1.0.1" 1872 | 1873 | npm-run-path@^2.0.0: 1874 | version "2.0.2" 1875 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1876 | dependencies: 1877 | path-key "^2.0.0" 1878 | 1879 | npmlog@^4.0.2: 1880 | version "4.1.2" 1881 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1882 | dependencies: 1883 | are-we-there-yet "~1.1.2" 1884 | console-control-strings "~1.1.0" 1885 | gauge "~2.7.3" 1886 | set-blocking "~2.0.0" 1887 | 1888 | number-is-nan@^1.0.0: 1889 | version "1.0.1" 1890 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1891 | 1892 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 1893 | version "4.1.1" 1894 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1895 | 1896 | object.omit@^2.0.0: 1897 | version "2.0.1" 1898 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1899 | dependencies: 1900 | for-own "^0.1.4" 1901 | is-extendable "^0.1.1" 1902 | 1903 | once@^1.3.0: 1904 | version "1.4.0" 1905 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1906 | dependencies: 1907 | wrappy "1" 1908 | 1909 | onetime@^1.0.0: 1910 | version "1.1.0" 1911 | resolved "http://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 1912 | 1913 | onetime@^2.0.0: 1914 | version "2.0.1" 1915 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1916 | dependencies: 1917 | mimic-fn "^1.0.0" 1918 | 1919 | ora@^0.2.3: 1920 | version "0.2.3" 1921 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 1922 | dependencies: 1923 | chalk "^1.1.1" 1924 | cli-cursor "^1.0.2" 1925 | cli-spinners "^0.1.2" 1926 | object-assign "^4.0.1" 1927 | 1928 | os-homedir@^1.0.0: 1929 | version "1.0.2" 1930 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1931 | 1932 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 1933 | version "1.0.2" 1934 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1935 | 1936 | osenv@^0.1.4: 1937 | version "0.1.5" 1938 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1939 | dependencies: 1940 | os-homedir "^1.0.0" 1941 | os-tmpdir "^1.0.0" 1942 | 1943 | output-file-sync@^1.1.2: 1944 | version "1.1.2" 1945 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1946 | dependencies: 1947 | graceful-fs "^4.1.4" 1948 | mkdirp "^0.5.1" 1949 | object-assign "^4.1.0" 1950 | 1951 | p-finally@^1.0.0: 1952 | version "1.0.0" 1953 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1954 | 1955 | p-limit@^1.1.0: 1956 | version "1.3.0" 1957 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1958 | dependencies: 1959 | p-try "^1.0.0" 1960 | 1961 | p-locate@^2.0.0: 1962 | version "2.0.0" 1963 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1964 | dependencies: 1965 | p-limit "^1.1.0" 1966 | 1967 | p-map@^1.1.1: 1968 | version "1.2.0" 1969 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" 1970 | 1971 | p-timeout@^2.0.1: 1972 | version "2.0.1" 1973 | resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-2.0.1.tgz#d8dd1979595d2dc0139e1fe46b8b646cb3cdf038" 1974 | dependencies: 1975 | p-finally "^1.0.0" 1976 | 1977 | p-try@^1.0.0: 1978 | version "1.0.0" 1979 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1980 | 1981 | package-json@^4.0.0: 1982 | version "4.0.1" 1983 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 1984 | dependencies: 1985 | got "^6.7.1" 1986 | registry-auth-token "^3.0.1" 1987 | registry-url "^3.0.3" 1988 | semver "^5.1.0" 1989 | 1990 | parse-glob@^3.0.4: 1991 | version "3.0.4" 1992 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1993 | dependencies: 1994 | glob-base "^0.3.0" 1995 | is-dotfile "^1.0.0" 1996 | is-extglob "^1.0.0" 1997 | is-glob "^2.0.0" 1998 | 1999 | parse-json@^4.0.0: 2000 | version "4.0.0" 2001 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2002 | dependencies: 2003 | error-ex "^1.3.1" 2004 | json-parse-better-errors "^1.0.1" 2005 | 2006 | path-exists@^3.0.0: 2007 | version "3.0.0" 2008 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2009 | 2010 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2011 | version "1.0.1" 2012 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2013 | 2014 | path-is-inside@^1.0.1: 2015 | version "1.0.2" 2016 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2017 | 2018 | path-key@^2.0.0, path-key@^2.0.1: 2019 | version "2.0.1" 2020 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2021 | 2022 | path-to-regexp@^2.2.1: 2023 | version "2.2.1" 2024 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.2.1.tgz#90b617025a16381a879bc82a38d4e8bdeb2bcf45" 2025 | 2026 | path-type@^3.0.0: 2027 | version "3.0.0" 2028 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 2029 | dependencies: 2030 | pify "^3.0.0" 2031 | 2032 | pify@^2.0.0: 2033 | version "2.3.0" 2034 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2035 | 2036 | pify@^3.0.0: 2037 | version "3.0.0" 2038 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2039 | 2040 | pinkie-promise@^2.0.0: 2041 | version "2.0.1" 2042 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2043 | dependencies: 2044 | pinkie "^2.0.0" 2045 | 2046 | pinkie@^2.0.0: 2047 | version "2.0.4" 2048 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2049 | 2050 | prepend-http@^1.0.1: 2051 | version "1.0.4" 2052 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2053 | 2054 | preserve@^0.2.0: 2055 | version "0.2.0" 2056 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2057 | 2058 | private@^0.1.6, private@^0.1.8: 2059 | version "0.1.8" 2060 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2061 | 2062 | process-nextick-args@~2.0.0: 2063 | version "2.0.0" 2064 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2065 | 2066 | promise@^7.1.1: 2067 | version "7.3.1" 2068 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 2069 | dependencies: 2070 | asap "~2.0.3" 2071 | 2072 | prop-types@^15.6.0, prop-types@^15.6.2: 2073 | version "15.6.2" 2074 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.2.tgz#05d5ca77b4453e985d60fc7ff8c859094a497102" 2075 | dependencies: 2076 | loose-envify "^1.3.1" 2077 | object-assign "^4.1.1" 2078 | 2079 | pseudomap@^1.0.2: 2080 | version "1.0.2" 2081 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2082 | 2083 | quick-lru@^1.0.0: 2084 | version "1.1.0" 2085 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" 2086 | 2087 | randomatic@^3.0.0: 2088 | version "3.1.0" 2089 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.0.tgz#36f2ca708e9e567f5ed2ec01949026d50aa10116" 2090 | dependencies: 2091 | is-number "^4.0.0" 2092 | kind-of "^6.0.0" 2093 | math-random "^1.0.1" 2094 | 2095 | rc@^1.0.1, rc@^1.1.6, rc@^1.2.7: 2096 | version "1.2.8" 2097 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2098 | dependencies: 2099 | deep-extend "^0.6.0" 2100 | ini "~1.3.0" 2101 | minimist "^1.2.0" 2102 | strip-json-comments "~2.0.1" 2103 | 2104 | react-dom@^16.4.2: 2105 | version "16.4.2" 2106 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.4.2.tgz#4afed569689f2c561d2b8da0b819669c38a0bda4" 2107 | dependencies: 2108 | fbjs "^0.8.16" 2109 | loose-envify "^1.1.0" 2110 | object-assign "^4.1.1" 2111 | prop-types "^15.6.0" 2112 | 2113 | react@^16.4.2: 2114 | version "16.4.2" 2115 | resolved "https://registry.yarnpkg.com/react/-/react-16.4.2.tgz#2cd90154e3a9d9dd8da2991149fdca3c260e129f" 2116 | dependencies: 2117 | fbjs "^0.8.16" 2118 | loose-envify "^1.1.0" 2119 | object-assign "^4.1.1" 2120 | prop-types "^15.6.0" 2121 | 2122 | read-pkg-up@^3.0.0: 2123 | version "3.0.0" 2124 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" 2125 | dependencies: 2126 | find-up "^2.0.0" 2127 | read-pkg "^3.0.0" 2128 | 2129 | read-pkg@^3.0.0: 2130 | version "3.0.0" 2131 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 2132 | dependencies: 2133 | load-json-file "^4.0.0" 2134 | normalize-package-data "^2.3.2" 2135 | path-type "^3.0.0" 2136 | 2137 | readable-stream@^2.0.2, readable-stream@^2.0.6: 2138 | version "2.3.6" 2139 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2140 | dependencies: 2141 | core-util-is "~1.0.0" 2142 | inherits "~2.0.3" 2143 | isarray "~1.0.0" 2144 | process-nextick-args "~2.0.0" 2145 | safe-buffer "~5.1.1" 2146 | string_decoder "~1.1.1" 2147 | util-deprecate "~1.0.1" 2148 | 2149 | readdirp@^2.0.0: 2150 | version "2.1.0" 2151 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2152 | dependencies: 2153 | graceful-fs "^4.1.2" 2154 | minimatch "^3.0.2" 2155 | readable-stream "^2.0.2" 2156 | set-immediate-shim "^1.0.1" 2157 | 2158 | redent@^2.0.0: 2159 | version "2.0.0" 2160 | resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" 2161 | dependencies: 2162 | indent-string "^3.0.0" 2163 | strip-indent "^2.0.0" 2164 | 2165 | regenerate@^1.2.1: 2166 | version "1.4.0" 2167 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 2168 | 2169 | regenerator-runtime@^0.10.5: 2170 | version "0.10.5" 2171 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2172 | 2173 | regenerator-runtime@^0.11.0: 2174 | version "0.11.1" 2175 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2176 | 2177 | regenerator-transform@^0.10.0: 2178 | version "0.10.1" 2179 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2180 | dependencies: 2181 | babel-runtime "^6.18.0" 2182 | babel-types "^6.19.0" 2183 | private "^0.1.6" 2184 | 2185 | regex-cache@^0.4.2: 2186 | version "0.4.4" 2187 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2188 | dependencies: 2189 | is-equal-shallow "^0.1.3" 2190 | 2191 | regexpu-core@^2.0.0: 2192 | version "2.0.0" 2193 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2194 | dependencies: 2195 | regenerate "^1.2.1" 2196 | regjsgen "^0.2.0" 2197 | regjsparser "^0.1.4" 2198 | 2199 | registry-auth-token@^3.0.1: 2200 | version "3.3.2" 2201 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" 2202 | dependencies: 2203 | rc "^1.1.6" 2204 | safe-buffer "^5.0.1" 2205 | 2206 | registry-url@^3.0.3: 2207 | version "3.1.0" 2208 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2209 | dependencies: 2210 | rc "^1.0.1" 2211 | 2212 | regjsgen@^0.2.0: 2213 | version "0.2.0" 2214 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2215 | 2216 | regjsparser@^0.1.4: 2217 | version "0.1.5" 2218 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2219 | dependencies: 2220 | jsesc "~0.5.0" 2221 | 2222 | remove-trailing-separator@^1.0.1: 2223 | version "1.1.0" 2224 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2225 | 2226 | repeat-element@^1.1.2: 2227 | version "1.1.2" 2228 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2229 | 2230 | repeat-string@^1.5.2: 2231 | version "1.6.1" 2232 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2233 | 2234 | repeating@^2.0.0: 2235 | version "2.0.1" 2236 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2237 | dependencies: 2238 | is-finite "^1.0.0" 2239 | 2240 | resolve-pathname@^2.2.0: 2241 | version "2.2.0" 2242 | resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-2.2.0.tgz#7e9ae21ed815fd63ab189adeee64dc831eefa879" 2243 | 2244 | restore-cursor@^1.0.1: 2245 | version "1.0.1" 2246 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2247 | dependencies: 2248 | exit-hook "^1.0.0" 2249 | onetime "^1.0.0" 2250 | 2251 | restore-cursor@^2.0.0: 2252 | version "2.0.0" 2253 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2254 | dependencies: 2255 | onetime "^2.0.0" 2256 | signal-exit "^3.0.2" 2257 | 2258 | rimraf@^2.2.8, rimraf@^2.6.1: 2259 | version "2.6.2" 2260 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2261 | dependencies: 2262 | glob "^7.0.5" 2263 | 2264 | run-async@^2.2.0: 2265 | version "2.3.0" 2266 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2267 | dependencies: 2268 | is-promise "^2.1.0" 2269 | 2270 | rx-lite-aggregates@^4.0.8: 2271 | version "4.0.8" 2272 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2273 | dependencies: 2274 | rx-lite "*" 2275 | 2276 | rx-lite@*, rx-lite@^4.0.8: 2277 | version "4.0.8" 2278 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2279 | 2280 | rxjs@^5.5.2: 2281 | version "5.5.11" 2282 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.11.tgz#f733027ca43e3bec6b994473be4ab98ad43ced87" 2283 | dependencies: 2284 | symbol-observable "1.0.1" 2285 | 2286 | rxjs@^6.1.0, rxjs@^6.2.0: 2287 | version "6.2.2" 2288 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.2.2.tgz#eb75fa3c186ff5289907d06483a77884586e1cf9" 2289 | dependencies: 2290 | tslib "^1.9.0" 2291 | 2292 | safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2293 | version "5.1.2" 2294 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2295 | 2296 | "safer-buffer@>= 2.1.2 < 3": 2297 | version "2.1.2" 2298 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2299 | 2300 | sax@^1.2.4: 2301 | version "1.2.4" 2302 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2303 | 2304 | semver-diff@^2.0.0: 2305 | version "2.1.0" 2306 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2307 | dependencies: 2308 | semver "^5.0.3" 2309 | 2310 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.2.0, semver@^5.3.0, semver@^5.5.0: 2311 | version "5.5.0" 2312 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2313 | 2314 | set-blocking@~2.0.0: 2315 | version "2.0.0" 2316 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2317 | 2318 | set-immediate-shim@^1.0.1: 2319 | version "1.0.1" 2320 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2321 | 2322 | setimmediate@^1.0.5: 2323 | version "1.0.5" 2324 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2325 | 2326 | shebang-command@^1.2.0: 2327 | version "1.2.0" 2328 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2329 | dependencies: 2330 | shebang-regex "^1.0.0" 2331 | 2332 | shebang-regex@^1.0.0: 2333 | version "1.0.0" 2334 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2335 | 2336 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2337 | version "3.0.2" 2338 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2339 | 2340 | slash@^1.0.0: 2341 | version "1.0.0" 2342 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2343 | 2344 | slice-ansi@0.0.4: 2345 | version "0.0.4" 2346 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2347 | 2348 | source-map-support@^0.4.15: 2349 | version "0.4.18" 2350 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2351 | dependencies: 2352 | source-map "^0.5.6" 2353 | 2354 | source-map@^0.5.6, source-map@^0.5.7: 2355 | version "0.5.7" 2356 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2357 | 2358 | spdx-correct@^3.0.0: 2359 | version "3.0.0" 2360 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 2361 | dependencies: 2362 | spdx-expression-parse "^3.0.0" 2363 | spdx-license-ids "^3.0.0" 2364 | 2365 | spdx-exceptions@^2.1.0: 2366 | version "2.1.0" 2367 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 2368 | 2369 | spdx-expression-parse@^3.0.0: 2370 | version "3.0.0" 2371 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 2372 | dependencies: 2373 | spdx-exceptions "^2.1.0" 2374 | spdx-license-ids "^3.0.0" 2375 | 2376 | spdx-license-ids@^3.0.0: 2377 | version "3.0.0" 2378 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 2379 | 2380 | split@^1.0.0: 2381 | version "1.0.1" 2382 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 2383 | dependencies: 2384 | through "2" 2385 | 2386 | string-width@^1.0.1: 2387 | version "1.0.2" 2388 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2389 | dependencies: 2390 | code-point-at "^1.0.0" 2391 | is-fullwidth-code-point "^1.0.0" 2392 | strip-ansi "^3.0.0" 2393 | 2394 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 2395 | version "2.1.1" 2396 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2397 | dependencies: 2398 | is-fullwidth-code-point "^2.0.0" 2399 | strip-ansi "^4.0.0" 2400 | 2401 | string_decoder@~1.1.1: 2402 | version "1.1.1" 2403 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2404 | dependencies: 2405 | safe-buffer "~5.1.0" 2406 | 2407 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2408 | version "3.0.1" 2409 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2410 | dependencies: 2411 | ansi-regex "^2.0.0" 2412 | 2413 | strip-ansi@^4.0.0: 2414 | version "4.0.0" 2415 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2416 | dependencies: 2417 | ansi-regex "^3.0.0" 2418 | 2419 | strip-bom@^3.0.0: 2420 | version "3.0.0" 2421 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2422 | 2423 | strip-eof@^1.0.0: 2424 | version "1.0.0" 2425 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2426 | 2427 | strip-indent@^2.0.0: 2428 | version "2.0.0" 2429 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 2430 | 2431 | strip-json-comments@~2.0.1: 2432 | version "2.0.1" 2433 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2434 | 2435 | supports-color@^2.0.0: 2436 | version "2.0.0" 2437 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2438 | 2439 | supports-color@^5.0.0, supports-color@^5.3.0: 2440 | version "5.4.0" 2441 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 2442 | dependencies: 2443 | has-flag "^3.0.0" 2444 | 2445 | supports-hyperlinks@^1.0.1: 2446 | version "1.0.1" 2447 | resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-1.0.1.tgz#71daedf36cc1060ac5100c351bb3da48c29c0ef7" 2448 | dependencies: 2449 | has-flag "^2.0.0" 2450 | supports-color "^5.0.0" 2451 | 2452 | symbol-observable@1.0.1: 2453 | version "1.0.1" 2454 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" 2455 | 2456 | symbol-observable@^1.1.0: 2457 | version "1.2.0" 2458 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" 2459 | 2460 | tar@^4: 2461 | version "4.4.6" 2462 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.6.tgz#63110f09c00b4e60ac8bcfe1bf3c8660235fbc9b" 2463 | dependencies: 2464 | chownr "^1.0.1" 2465 | fs-minipass "^1.2.5" 2466 | minipass "^2.3.3" 2467 | minizlib "^1.1.0" 2468 | mkdirp "^0.5.0" 2469 | safe-buffer "^5.1.2" 2470 | yallist "^3.0.2" 2471 | 2472 | term-size@^1.2.0: 2473 | version "1.2.0" 2474 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 2475 | dependencies: 2476 | execa "^0.7.0" 2477 | 2478 | terminal-link@^1.1.0: 2479 | version "1.1.0" 2480 | resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-1.1.0.tgz#8573e830db810baa62ce67859c1f102e88fa4318" 2481 | dependencies: 2482 | ansi-escapes "^3.1.0" 2483 | supports-hyperlinks "^1.0.1" 2484 | 2485 | through@2, through@^2.3.6, through@^2.3.8: 2486 | version "2.3.8" 2487 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2488 | 2489 | timed-out@^4.0.0: 2490 | version "4.0.1" 2491 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 2492 | 2493 | tmp@^0.0.33: 2494 | version "0.0.33" 2495 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 2496 | dependencies: 2497 | os-tmpdir "~1.0.2" 2498 | 2499 | to-fast-properties@^1.0.3: 2500 | version "1.0.3" 2501 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2502 | 2503 | trim-newlines@^2.0.0: 2504 | version "2.0.0" 2505 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20" 2506 | 2507 | trim-right@^1.0.1: 2508 | version "1.0.1" 2509 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2510 | 2511 | tslib@^1.9.0: 2512 | version "1.9.3" 2513 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" 2514 | 2515 | ua-parser-js@^0.7.18: 2516 | version "0.7.18" 2517 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.18.tgz#a7bfd92f56edfb117083b69e31d2aa8882d4b1ed" 2518 | 2519 | unique-string@^1.0.0: 2520 | version "1.0.0" 2521 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 2522 | dependencies: 2523 | crypto-random-string "^1.0.0" 2524 | 2525 | unzip-response@^2.0.1: 2526 | version "2.0.1" 2527 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 2528 | 2529 | update-notifier@^2.1.0: 2530 | version "2.5.0" 2531 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6" 2532 | dependencies: 2533 | boxen "^1.2.1" 2534 | chalk "^2.0.1" 2535 | configstore "^3.0.0" 2536 | import-lazy "^2.1.0" 2537 | is-ci "^1.0.10" 2538 | is-installed-globally "^0.1.0" 2539 | is-npm "^1.0.0" 2540 | latest-version "^3.0.0" 2541 | semver-diff "^2.0.0" 2542 | xdg-basedir "^3.0.0" 2543 | 2544 | url-parse-lax@^1.0.0: 2545 | version "1.0.0" 2546 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 2547 | dependencies: 2548 | prepend-http "^1.0.1" 2549 | 2550 | user-home@^1.1.1: 2551 | version "1.1.1" 2552 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2553 | 2554 | util-deprecate@~1.0.1: 2555 | version "1.0.2" 2556 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2557 | 2558 | v8flags@^2.1.1: 2559 | version "2.1.1" 2560 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 2561 | dependencies: 2562 | user-home "^1.1.1" 2563 | 2564 | validate-npm-package-license@^3.0.1: 2565 | version "3.0.4" 2566 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 2567 | dependencies: 2568 | spdx-correct "^3.0.0" 2569 | spdx-expression-parse "^3.0.0" 2570 | 2571 | value-equal@^0.4.0: 2572 | version "0.4.0" 2573 | resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-0.4.0.tgz#c5bdd2f54ee093c04839d71ce2e4758a6890abc7" 2574 | 2575 | warning@^3.0.0: 2576 | version "3.0.0" 2577 | resolved "https://registry.yarnpkg.com/warning/-/warning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c" 2578 | dependencies: 2579 | loose-envify "^1.0.0" 2580 | 2581 | whatwg-fetch@>=0.10.0: 2582 | version "2.0.4" 2583 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f" 2584 | 2585 | which@^1.2.9: 2586 | version "1.3.1" 2587 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 2588 | dependencies: 2589 | isexe "^2.0.0" 2590 | 2591 | wide-align@^1.1.0: 2592 | version "1.1.3" 2593 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 2594 | dependencies: 2595 | string-width "^1.0.2 || 2" 2596 | 2597 | widest-line@^2.0.0: 2598 | version "2.0.0" 2599 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.0.tgz#0142a4e8a243f8882c0233aa0e0281aa76152273" 2600 | dependencies: 2601 | string-width "^2.1.1" 2602 | 2603 | wrappy@1: 2604 | version "1.0.2" 2605 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2606 | 2607 | write-file-atomic@^2.0.0: 2608 | version "2.3.0" 2609 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 2610 | dependencies: 2611 | graceful-fs "^4.1.11" 2612 | imurmurhash "^0.1.4" 2613 | signal-exit "^3.0.2" 2614 | 2615 | xdg-basedir@^3.0.0: 2616 | version "3.0.0" 2617 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 2618 | 2619 | yallist@^2.1.2: 2620 | version "2.1.2" 2621 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2622 | 2623 | yallist@^3.0.0, yallist@^3.0.2: 2624 | version "3.0.2" 2625 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 2626 | 2627 | yargs-parser@^10.0.0: 2628 | version "10.1.0" 2629 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" 2630 | dependencies: 2631 | camelcase "^4.1.0" 2632 | --------------------------------------------------------------------------------