├── .gitignore
├── LICENSE
├── README-en.md
├── README.md
├── babel.config.js
├── examples
├── .gitignore
├── README.md
├── package.json
├── public
│ ├── favicon.ico
│ ├── index.html
│ └── manifest.json
├── src
│ ├── App.js
│ ├── antd
│ │ └── index.js
│ ├── index.js
│ ├── react-bootstrap
│ │ └── index.js
│ └── serviceWorker.js
└── yarn.lock
├── package.json
├── src
├── ModalProvider.js
├── context.js
├── index.js
└── useModal.js
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | dist
2 | node_modules
3 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 卢思侗
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README-en.md:
--------------------------------------------------------------------------------
1 | # react-use-modal
2 |
3 | Most of the mainstream modal needs to use the state control in the component to display whether it is inconvenient to call in multiple places, so it is easier to provide based on [context](https://reactjs.org/docs/context.html#api) The method of calling.
4 |
5 | `use-modal` supports the mainstream modal. In theory, as long as the modal is controlled by something like `show props`, it can be supported, for example:
6 | - [antd](https://github.com/ant-design/ant-design)
7 | - [react-bootstrap](https://react-bootstrap.github.io/components/modal/)
8 | - [react-overlays](https://github.com/react-bootstrap/react-overlays)
9 | - [react-modals](https://github.com/reactjs/react-modal)
10 | - [material-ui](https://material-ui.com/utils/modal/)
11 |
12 | ## Installation
13 |
14 | Use yarn
15 | ```
16 | $ yarn add react-use-modal
17 | ```
18 | Or use npm
19 | ```
20 | $ npm install react-use-modal --save
21 | ```
22 |
23 | ## Use
24 |
25 | Put `ModalProvider` in the outer layer of the component
26 | ```js
27 | Import ReactDOM from 'react-dom';
28 | Import { ModalProvider } from 'react-use-modal';
29 |
30 | ReactDOM.render(
31 |
32 | ...
33 | ,
34 | document.querySelector('#root')
35 | )
36 | ```
37 | Call mode, with react-bootstrap example
38 |
39 | Use context
40 | ```js
41 | Import React from 'react';
42 |
43 | Import { Modal } from 'react-bootstrap';
44 | Import { ModalContext } from 'react-use-modal';
45 |
46 | Export default class App extends React.Component {
47 |
48 | handleClick = () => {
49 | Const {showModal, closeModal} = this.context;
50 | showModal(({ show }) => (
51 |
52 | body
53 |
54 | ))
55 | }
56 |
57 | Render() {
58 | Return (
59 |
60 | )
61 | }
62 | }
63 | Product.contextType = ModalContext
64 | ```
65 | Use hooks
66 | ```js
67 | Import React from 'react';
68 | Import { Modal } from 'react-bootstrap';
69 | Import { useModal } from 'react-use-modal';
70 |
71 | Const App = () => {
72 | Const { showModal, closeModal } = useModal();
73 |
74 | Function handleClick() {
75 | showModal(({ show }) => (
76 |
77 |
78 | Modal title
79 |
80 | Modal body text goes here.
81 |
82 | ))
83 | }
84 |
85 | Return (
86 |
87 | )
88 | }
89 | ```
90 |
91 | ## API
92 |
93 | #### showModal
94 | Show modal, set `show` to true
95 |
96 | ##### Parameters
97 | Component(?Function):
98 | The first call must pass a parameter, and the call again can be ignored.
99 | ```js
100 | showModal(props => (
101 |
102 | body
103 |
104 | ))
105 | ```
106 |
107 | Component props
108 |
109 | Name|Type|Default|Description
110 | -|-|-|-
111 | Show|boolean|false| Whether to display modal
112 |
113 | #### closeModal
114 | Turn off modal and set `show` to false
115 |
116 | ---
117 | by google translate
118 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # react-use-modal · [](https://www.npmjs.com/package/react-use-modal) [](https://bundlephobia.com/result?p=react-use-modal)
2 |
3 | 简体中文 | [English](https://github.com/wowlusitong/react-use-modal/blob/master/README-en.md)
4 |
5 | 主流modal大多需要在组件内使用state控制是否显示,在多个地方调用的时候很不方便,所以基于 [context](https://reactjs.org/docs/context.html#api) 提供一个更加易用的调用方式。
6 |
7 | `use-modal` 支持主流的modal, 理论上只要modal通过类似于 `show props` 控制显示的,就可以支持,例如:
8 | - [antd](https://github.com/ant-design/ant-design)
9 | - [react-bootstrap](https://react-bootstrap.github.io/components/modal/)
10 | - [react-overlays](https://github.com/react-bootstrap/react-overlays)
11 | - [react-modals](https://github.com/reactjs/react-modal)
12 | - [material-ui](https://material-ui.com/utils/modal/)
13 |
14 | ## 安装
15 |
16 | 使用yarn
17 | ```
18 | $ yarn add react-use-modal
19 | ```
20 | 或者用npm
21 | ```
22 | $ npm install react-use-modal --save
23 | ```
24 |
25 | ## 使用
26 |
27 | 将 `ModalProvider` 放在组件外层
28 | ```js
29 | import ReactDOM from 'react-dom';
30 | import { ModalProvider } from 'react-use-modal';
31 |
32 | ReactDOM.render(
33 |
34 | ...
35 | ,
36 | document.querySelector('#root')
37 | )
38 | ```
39 | 调用方式,以react-bootstrap举例
40 |
41 | 使用context
42 | ```js
43 | import React from 'react';
44 |
45 | import { Modal } from 'react-bootstrap';
46 | import { ModalContext } from 'react-use-modal';
47 |
48 | export default class App extends React.Component {
49 |
50 | handleClick = () => {
51 | const {showModal, closeModal} = this.context;
52 | showModal(({ show }) => (
53 |
54 | body
55 |
56 | ))
57 | }
58 |
59 | render() {
60 | return (
61 |
62 | )
63 | }
64 | }
65 | App.contextType = ModalContext
66 | ```
67 | 使用hooks
68 | ```js
69 | import React from 'react';
70 | import { Modal } from 'react-bootstrap';
71 | import { useModal } from 'react-use-modal';
72 |
73 | const App = () => {
74 | const { showModal, closeModal } = useModal();
75 |
76 | function handleClick() {
77 | showModal(({ show }) => (
78 |
79 |
80 | Modal title
81 |
82 | Modal body text goes here.
83 |
84 | ))
85 | }
86 |
87 | return (
88 |
89 | )
90 | }
91 | ```
92 |
93 | ## API
94 |
95 | #### showModal
96 | 显示modal,将 `show` 设置为true
97 |
98 | ##### 参数
99 | component(?Function):
100 | 第一次调用必须传递参数,再次调用可忽略
101 | ```js
102 | showModal(props => (
103 |
104 | body
105 |
106 | ))
107 | ```
108 |
109 | 组件props
110 |
111 | Name|Type|Default|Description
112 | -|-|-|-
113 | show|boolean|false|是否显示modal
114 |
115 | #### closeModal
116 | 关闭modal,将 `show` 设置为false
117 |
--------------------------------------------------------------------------------
/babel.config.js:
--------------------------------------------------------------------------------
1 | const presets = [
2 | "@babel/env",
3 | "@babel/preset-react"
4 | ];
5 |
6 | const plugins = [
7 | "@babel/plugin-proposal-class-properties"
8 | ]
9 |
10 | module.exports = {
11 | presets,
12 | plugins
13 | };
14 |
--------------------------------------------------------------------------------
/examples/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # production
12 | /build
13 |
14 | # misc
15 | .DS_Store
16 | .env.local
17 | .env.development.local
18 | .env.test.local
19 | .env.production.local
20 |
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
--------------------------------------------------------------------------------
/examples/README.md:
--------------------------------------------------------------------------------
1 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
2 |
3 | ## Available Scripts
4 |
5 | In the project directory, you can run:
6 |
7 | ### `npm start`
8 |
9 | Runs the app in the development mode.
10 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
11 |
12 | The page will reload if you make edits.
13 | You will also see any lint errors in the console.
14 |
15 | ### `npm test`
16 |
17 | Launches the test runner in the interactive watch mode.
18 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
19 |
20 | ### `npm run build`
21 |
22 | Builds the app for production to the `build` folder.
23 | It correctly bundles React in production mode and optimizes the build for the best performance.
24 |
25 | The build is minified and the filenames include the hashes.
26 | Your app is ready to be deployed!
27 |
28 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
29 |
30 | ### `npm run eject`
31 |
32 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!**
33 |
34 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
35 |
36 | Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
37 |
38 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
39 |
40 | ## Learn More
41 |
42 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
43 |
44 | To learn React, check out the [React documentation](https://reactjs.org/).
45 |
46 | ### Code Splitting
47 |
48 | This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
49 |
50 | ### Analyzing the Bundle Size
51 |
52 | This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
53 |
54 | ### Making a Progressive Web App
55 |
56 | This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
57 |
58 | ### Advanced Configuration
59 |
60 | This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
61 |
62 | ### Deployment
63 |
64 | This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
65 |
66 | ### `npm run build` fails to minify
67 |
68 | This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
69 |
--------------------------------------------------------------------------------
/examples/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "examples",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "antd": "^3.13.3",
7 | "react": "^16.8.2",
8 | "react-bootstrap": "^1.0.0-beta.5",
9 | "react-dom": "^16.8.2",
10 | "react-modal": "^3.8.1",
11 | "react-scripts": "2.1.5",
12 | "react-use-modal": "^1.0.0"
13 | },
14 | "scripts": {
15 | "start": "react-scripts start",
16 | "build": "react-scripts build",
17 | "test": "react-scripts test",
18 | "eject": "react-scripts eject"
19 | },
20 | "eslintConfig": {
21 | "extends": "react-app"
22 | },
23 | "browserslist": [
24 | ">0.2%",
25 | "not dead",
26 | "not ie <= 11",
27 | "not op_mini all"
28 | ]
29 | }
30 |
--------------------------------------------------------------------------------
/examples/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wowlusitong/react-use-modal/80b03b465d7d99676e8e493554054edbb1dcabe0/examples/public/favicon.ico
--------------------------------------------------------------------------------
/examples/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
9 |
10 | use-modal
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/examples/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "React App",
3 | "name": "Create React App Sample",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | }
10 | ],
11 | "start_url": ".",
12 | "display": "standalone",
13 | "theme_color": "#000000",
14 | "background_color": "#ffffff"
15 | }
16 |
--------------------------------------------------------------------------------
/examples/src/App.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { ModalProvider } from 'react-use-modal';
3 |
4 | import AntModal from './antd';
5 | import ReactBootstrapModal from './react-bootstrap';
6 |
7 | const App = () => (
8 |
9 |
10 |
react-use-modal
11 |
12 |
13 |
ant-design
14 |
15 |
16 |
17 |
react-bootstrap
18 |
19 |
20 |
21 |
22 | )
23 |
24 | export default App;
25 |
--------------------------------------------------------------------------------
/examples/src/antd/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { Modal, Button } from 'antd';
3 | import { useModal } from 'react-use-modal';
4 |
5 | const AntModal = () => {
6 | const { showModal, closeModal } = useModal();
7 | function handleClick() {
8 | showModal(({ show }) => (
9 |
15 | Some contents...
16 |
17 | ))
18 | }
19 |
20 | return (
21 |
22 | )
23 | }
24 |
25 | export default AntModal;
26 |
--------------------------------------------------------------------------------
/examples/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import App from './App';
4 | import * as serviceWorker from './serviceWorker';
5 |
6 | ReactDOM.render(, document.getElementById('root'));
7 |
8 | // If you want your app to work offline and load faster, you can change
9 | // unregister() to register() below. Note this comes with some pitfalls.
10 | // Learn more about service workers: http://bit.ly/CRA-PWA
11 | serviceWorker.unregister();
12 |
--------------------------------------------------------------------------------
/examples/src/react-bootstrap/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { Modal, Button } from 'react-bootstrap';
3 | import { useModal } from 'react-use-modal';
4 |
5 |
6 | const ReactBootstrapModal = () => {
7 | const { showModal, closeModal } = useModal();
8 | function handleClick() {
9 | showModal(({ show }) => (
10 |
11 |
12 | Modal title
13 |
14 | Modal body text goes here.
15 |
16 | ))
17 | }
18 |
19 | return (
20 |
21 | )
22 | }
23 |
24 | export default ReactBootstrapModal;
25 |
--------------------------------------------------------------------------------
/examples/src/serviceWorker.js:
--------------------------------------------------------------------------------
1 | // This optional code is used to register a service worker.
2 | // register() is not called by default.
3 |
4 | // This lets the app load faster on subsequent visits in production, and gives
5 | // it offline capabilities. However, it also means that developers (and users)
6 | // will only see deployed updates on subsequent visits to a page, after all the
7 | // existing tabs open on the page have been closed, since previously cached
8 | // resources are updated in the background.
9 |
10 | // To learn more about the benefits of this model and instructions on how to
11 | // opt-in, read http://bit.ly/CRA-PWA
12 |
13 | const isLocalhost = Boolean(
14 | window.location.hostname === 'localhost' ||
15 | // [::1] is the IPv6 localhost address.
16 | window.location.hostname === '[::1]' ||
17 | // 127.0.0.1/8 is considered localhost for IPv4.
18 | window.location.hostname.match(
19 | /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/
20 | )
21 | );
22 |
23 | export function register(config) {
24 | if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
25 | // The URL constructor is available in all browsers that support SW.
26 | const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href);
27 | if (publicUrl.origin !== window.location.origin) {
28 | // Our service worker won't work if PUBLIC_URL is on a different origin
29 | // from what our page is served on. This might happen if a CDN is used to
30 | // serve assets; see https://github.com/facebook/create-react-app/issues/2374
31 | return;
32 | }
33 |
34 | window.addEventListener('load', () => {
35 | const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`;
36 |
37 | if (isLocalhost) {
38 | // This is running on localhost. Let's check if a service worker still exists or not.
39 | checkValidServiceWorker(swUrl, config);
40 |
41 | // Add some additional logging to localhost, pointing developers to the
42 | // service worker/PWA documentation.
43 | navigator.serviceWorker.ready.then(() => {
44 | console.log(
45 | 'This web app is being served cache-first by a service ' +
46 | 'worker. To learn more, visit http://bit.ly/CRA-PWA'
47 | );
48 | });
49 | } else {
50 | // Is not localhost. Just register service worker
51 | registerValidSW(swUrl, config);
52 | }
53 | });
54 | }
55 | }
56 |
57 | function registerValidSW(swUrl, config) {
58 | navigator.serviceWorker
59 | .register(swUrl)
60 | .then(registration => {
61 | registration.onupdatefound = () => {
62 | const installingWorker = registration.installing;
63 | if (installingWorker == null) {
64 | return;
65 | }
66 | installingWorker.onstatechange = () => {
67 | if (installingWorker.state === 'installed') {
68 | if (navigator.serviceWorker.controller) {
69 | // At this point, the updated precached content has been fetched,
70 | // but the previous service worker will still serve the older
71 | // content until all client tabs are closed.
72 | console.log(
73 | 'New content is available and will be used when all ' +
74 | 'tabs for this page are closed. See http://bit.ly/CRA-PWA.'
75 | );
76 |
77 | // Execute callback
78 | if (config && config.onUpdate) {
79 | config.onUpdate(registration);
80 | }
81 | } else {
82 | // At this point, everything has been precached.
83 | // It's the perfect time to display a
84 | // "Content is cached for offline use." message.
85 | console.log('Content is cached for offline use.');
86 |
87 | // Execute callback
88 | if (config && config.onSuccess) {
89 | config.onSuccess(registration);
90 | }
91 | }
92 | }
93 | };
94 | };
95 | })
96 | .catch(error => {
97 | console.error('Error during service worker registration:', error);
98 | });
99 | }
100 |
101 | function checkValidServiceWorker(swUrl, config) {
102 | // Check if the service worker can be found. If it can't reload the page.
103 | fetch(swUrl)
104 | .then(response => {
105 | // Ensure service worker exists, and that we really are getting a JS file.
106 | const contentType = response.headers.get('content-type');
107 | if (
108 | response.status === 404 ||
109 | (contentType != null && contentType.indexOf('javascript') === -1)
110 | ) {
111 | // No service worker found. Probably a different app. Reload the page.
112 | navigator.serviceWorker.ready.then(registration => {
113 | registration.unregister().then(() => {
114 | window.location.reload();
115 | });
116 | });
117 | } else {
118 | // Service worker found. Proceed as normal.
119 | registerValidSW(swUrl, config);
120 | }
121 | })
122 | .catch(() => {
123 | console.log(
124 | 'No internet connection found. App is running in offline mode.'
125 | );
126 | });
127 | }
128 |
129 | export function unregister() {
130 | if ('serviceWorker' in navigator) {
131 | navigator.serviceWorker.ready.then(registration => {
132 | registration.unregister();
133 | });
134 | }
135 | }
136 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-use-modal",
3 | "version": "1.0.0",
4 | "main": "dist/index.js",
5 | "scripts": {
6 | "test": "echo \"Error: no test specified\" && exit 1",
7 | "start": "babel src -d dist --watch",
8 | "build": "rm -rf dist && babel src -d dist",
9 | "prepublish": "npm run build"
10 | },
11 | "keywords": [
12 | "react",
13 | "modal"
14 | ],
15 | "author": "SitongLu",
16 | "license": "ISC",
17 | "description": "",
18 | "devDependencies": {
19 | "@babel/cli": "^7.2.3",
20 | "@babel/core": "^7.2.2",
21 | "@babel/plugin-proposal-class-properties": "^7.3.0",
22 | "@babel/preset-env": "^7.3.1",
23 | "@babel/preset-react": "^7.0.0",
24 | "react": "^16.8.1",
25 | "react-dom": "^16.8.1"
26 | },
27 | "peerDependencies": {
28 | "react": ">=16.3",
29 | "react-dom": ">=16.3"
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/src/ModalProvider.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | import ModalContext from './context';
4 |
5 | export default class ModalProvider extends React.Component {
6 | state = {
7 | show: true,
8 | Modal: null
9 | }
10 |
11 | handleClose = () => {
12 | this.setState({
13 | show: false
14 | })
15 | }
16 |
17 | handleShow = (Modal) => {
18 | this.setState({
19 | show: true,
20 | })
21 | if (Modal) {
22 | this.setState({
23 | Modal
24 | })
25 | }
26 | }
27 |
28 | render() {
29 | const { show, Modal } = this.state;
30 | return (
31 |
36 | {this.props.children}
37 | {Modal && }
38 |
39 | )
40 | }
41 | }
42 |
--------------------------------------------------------------------------------
/src/context.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | const ModalContext = React.createContext()
4 |
5 | export default ModalContext;
6 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import ModalContext from './context';
2 | import ModalProvider from './ModalProvider';
3 | import useModal from './useModal';
4 |
5 | export {
6 | ModalContext,
7 | ModalProvider,
8 | useModal
9 | }
10 |
--------------------------------------------------------------------------------
/src/useModal.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ModalProvider from './ModalProvider';
3 | import ModalContext from './context';
4 |
5 | export default function useModal(friendID) {
6 | return React.useContext(ModalContext);
7 | }
8 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/cli@^7.2.3":
6 | version "7.2.3"
7 | resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.2.3.tgz#1b262e42a3e959d28ab3d205ba2718e1923cfee6"
8 | dependencies:
9 | commander "^2.8.1"
10 | convert-source-map "^1.1.0"
11 | fs-readdir-recursive "^1.1.0"
12 | glob "^7.0.0"
13 | lodash "^4.17.10"
14 | mkdirp "^0.5.1"
15 | output-file-sync "^2.0.0"
16 | slash "^2.0.0"
17 | source-map "^0.5.0"
18 | optionalDependencies:
19 | chokidar "^2.0.3"
20 |
21 | "@babel/code-frame@^7.0.0":
22 | version "7.0.0"
23 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"
24 | dependencies:
25 | "@babel/highlight" "^7.0.0"
26 |
27 | "@babel/core@^7.2.2":
28 | version "7.2.2"
29 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.2.2.tgz#07adba6dde27bb5ad8d8672f15fde3e08184a687"
30 | dependencies:
31 | "@babel/code-frame" "^7.0.0"
32 | "@babel/generator" "^7.2.2"
33 | "@babel/helpers" "^7.2.0"
34 | "@babel/parser" "^7.2.2"
35 | "@babel/template" "^7.2.2"
36 | "@babel/traverse" "^7.2.2"
37 | "@babel/types" "^7.2.2"
38 | convert-source-map "^1.1.0"
39 | debug "^4.1.0"
40 | json5 "^2.1.0"
41 | lodash "^4.17.10"
42 | resolve "^1.3.2"
43 | semver "^5.4.1"
44 | source-map "^0.5.0"
45 |
46 | "@babel/generator@^7.2.2":
47 | version "7.3.0"
48 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.0.tgz#f663838cd7b542366de3aa608a657b8ccb2a99eb"
49 | dependencies:
50 | "@babel/types" "^7.3.0"
51 | jsesc "^2.5.1"
52 | lodash "^4.17.10"
53 | source-map "^0.5.0"
54 | trim-right "^1.0.1"
55 |
56 | "@babel/helper-annotate-as-pure@^7.0.0":
57 | version "7.0.0"
58 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32"
59 | dependencies:
60 | "@babel/types" "^7.0.0"
61 |
62 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0":
63 | version "7.1.0"
64 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f"
65 | dependencies:
66 | "@babel/helper-explode-assignable-expression" "^7.1.0"
67 | "@babel/types" "^7.0.0"
68 |
69 | "@babel/helper-builder-react-jsx@^7.3.0":
70 | version "7.3.0"
71 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.3.0.tgz#a1ac95a5d2b3e88ae5e54846bf462eeb81b318a4"
72 | dependencies:
73 | "@babel/types" "^7.3.0"
74 | esutils "^2.0.0"
75 |
76 | "@babel/helper-call-delegate@^7.1.0":
77 | version "7.1.0"
78 | resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.1.0.tgz#6a957f105f37755e8645343d3038a22e1449cc4a"
79 | dependencies:
80 | "@babel/helper-hoist-variables" "^7.0.0"
81 | "@babel/traverse" "^7.1.0"
82 | "@babel/types" "^7.0.0"
83 |
84 | "@babel/helper-create-class-features-plugin@^7.3.0":
85 | version "7.3.0"
86 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.3.0.tgz#2b01a81b3adc2b1287f9ee193688ef8dc71e718f"
87 | dependencies:
88 | "@babel/helper-function-name" "^7.1.0"
89 | "@babel/helper-member-expression-to-functions" "^7.0.0"
90 | "@babel/helper-optimise-call-expression" "^7.0.0"
91 | "@babel/helper-plugin-utils" "^7.0.0"
92 | "@babel/helper-replace-supers" "^7.2.3"
93 |
94 | "@babel/helper-define-map@^7.1.0":
95 | version "7.1.0"
96 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.1.0.tgz#3b74caec329b3c80c116290887c0dd9ae468c20c"
97 | dependencies:
98 | "@babel/helper-function-name" "^7.1.0"
99 | "@babel/types" "^7.0.0"
100 | lodash "^4.17.10"
101 |
102 | "@babel/helper-explode-assignable-expression@^7.1.0":
103 | version "7.1.0"
104 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6"
105 | dependencies:
106 | "@babel/traverse" "^7.1.0"
107 | "@babel/types" "^7.0.0"
108 |
109 | "@babel/helper-function-name@^7.1.0":
110 | version "7.1.0"
111 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53"
112 | dependencies:
113 | "@babel/helper-get-function-arity" "^7.0.0"
114 | "@babel/template" "^7.1.0"
115 | "@babel/types" "^7.0.0"
116 |
117 | "@babel/helper-get-function-arity@^7.0.0":
118 | version "7.0.0"
119 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3"
120 | dependencies:
121 | "@babel/types" "^7.0.0"
122 |
123 | "@babel/helper-hoist-variables@^7.0.0":
124 | version "7.0.0"
125 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0.tgz#46adc4c5e758645ae7a45deb92bab0918c23bb88"
126 | dependencies:
127 | "@babel/types" "^7.0.0"
128 |
129 | "@babel/helper-member-expression-to-functions@^7.0.0":
130 | version "7.0.0"
131 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f"
132 | dependencies:
133 | "@babel/types" "^7.0.0"
134 |
135 | "@babel/helper-module-imports@^7.0.0":
136 | version "7.0.0"
137 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d"
138 | dependencies:
139 | "@babel/types" "^7.0.0"
140 |
141 | "@babel/helper-module-transforms@^7.1.0":
142 | version "7.2.2"
143 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.2.2.tgz#ab2f8e8d231409f8370c883d20c335190284b963"
144 | dependencies:
145 | "@babel/helper-module-imports" "^7.0.0"
146 | "@babel/helper-simple-access" "^7.1.0"
147 | "@babel/helper-split-export-declaration" "^7.0.0"
148 | "@babel/template" "^7.2.2"
149 | "@babel/types" "^7.2.2"
150 | lodash "^4.17.10"
151 |
152 | "@babel/helper-optimise-call-expression@^7.0.0":
153 | version "7.0.0"
154 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5"
155 | dependencies:
156 | "@babel/types" "^7.0.0"
157 |
158 | "@babel/helper-plugin-utils@^7.0.0":
159 | version "7.0.0"
160 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250"
161 |
162 | "@babel/helper-regex@^7.0.0":
163 | version "7.0.0"
164 | resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.0.0.tgz#2c1718923b57f9bbe64705ffe5640ac64d9bdb27"
165 | dependencies:
166 | lodash "^4.17.10"
167 |
168 | "@babel/helper-remap-async-to-generator@^7.1.0":
169 | version "7.1.0"
170 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f"
171 | dependencies:
172 | "@babel/helper-annotate-as-pure" "^7.0.0"
173 | "@babel/helper-wrap-function" "^7.1.0"
174 | "@babel/template" "^7.1.0"
175 | "@babel/traverse" "^7.1.0"
176 | "@babel/types" "^7.0.0"
177 |
178 | "@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.2.3":
179 | version "7.2.3"
180 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.2.3.tgz#19970020cf22677d62b3a689561dbd9644d8c5e5"
181 | dependencies:
182 | "@babel/helper-member-expression-to-functions" "^7.0.0"
183 | "@babel/helper-optimise-call-expression" "^7.0.0"
184 | "@babel/traverse" "^7.2.3"
185 | "@babel/types" "^7.0.0"
186 |
187 | "@babel/helper-simple-access@^7.1.0":
188 | version "7.1.0"
189 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c"
190 | dependencies:
191 | "@babel/template" "^7.1.0"
192 | "@babel/types" "^7.0.0"
193 |
194 | "@babel/helper-split-export-declaration@^7.0.0":
195 | version "7.0.0"
196 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz#3aae285c0311c2ab095d997b8c9a94cad547d813"
197 | dependencies:
198 | "@babel/types" "^7.0.0"
199 |
200 | "@babel/helper-wrap-function@^7.1.0":
201 | version "7.2.0"
202 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa"
203 | dependencies:
204 | "@babel/helper-function-name" "^7.1.0"
205 | "@babel/template" "^7.1.0"
206 | "@babel/traverse" "^7.1.0"
207 | "@babel/types" "^7.2.0"
208 |
209 | "@babel/helpers@^7.2.0":
210 | version "7.3.1"
211 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.3.1.tgz#949eec9ea4b45d3210feb7dc1c22db664c9e44b9"
212 | dependencies:
213 | "@babel/template" "^7.1.2"
214 | "@babel/traverse" "^7.1.5"
215 | "@babel/types" "^7.3.0"
216 |
217 | "@babel/highlight@^7.0.0":
218 | version "7.0.0"
219 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4"
220 | dependencies:
221 | chalk "^2.0.0"
222 | esutils "^2.0.2"
223 | js-tokens "^4.0.0"
224 |
225 | "@babel/parser@^7.2.2", "@babel/parser@^7.2.3":
226 | version "7.3.1"
227 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.1.tgz#8f4ffd45f779e6132780835ffa7a215fa0b2d181"
228 |
229 | "@babel/plugin-proposal-async-generator-functions@^7.2.0":
230 | version "7.2.0"
231 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e"
232 | dependencies:
233 | "@babel/helper-plugin-utils" "^7.0.0"
234 | "@babel/helper-remap-async-to-generator" "^7.1.0"
235 | "@babel/plugin-syntax-async-generators" "^7.2.0"
236 |
237 | "@babel/plugin-proposal-class-properties@^7.3.0":
238 | version "7.3.0"
239 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.3.0.tgz#272636bc0fa19a0bc46e601ec78136a173ea36cd"
240 | dependencies:
241 | "@babel/helper-create-class-features-plugin" "^7.3.0"
242 | "@babel/helper-plugin-utils" "^7.0.0"
243 |
244 | "@babel/plugin-proposal-json-strings@^7.2.0":
245 | version "7.2.0"
246 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317"
247 | dependencies:
248 | "@babel/helper-plugin-utils" "^7.0.0"
249 | "@babel/plugin-syntax-json-strings" "^7.2.0"
250 |
251 | "@babel/plugin-proposal-object-rest-spread@^7.3.1":
252 | version "7.3.1"
253 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.3.1.tgz#f69fb6a1ea6a4e1c503994a91d9cf76f3c4b36e8"
254 | dependencies:
255 | "@babel/helper-plugin-utils" "^7.0.0"
256 | "@babel/plugin-syntax-object-rest-spread" "^7.2.0"
257 |
258 | "@babel/plugin-proposal-optional-catch-binding@^7.2.0":
259 | version "7.2.0"
260 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5"
261 | dependencies:
262 | "@babel/helper-plugin-utils" "^7.0.0"
263 | "@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
264 |
265 | "@babel/plugin-proposal-unicode-property-regex@^7.2.0":
266 | version "7.2.0"
267 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.2.0.tgz#abe7281fe46c95ddc143a65e5358647792039520"
268 | dependencies:
269 | "@babel/helper-plugin-utils" "^7.0.0"
270 | "@babel/helper-regex" "^7.0.0"
271 | regexpu-core "^4.2.0"
272 |
273 | "@babel/plugin-syntax-async-generators@^7.2.0":
274 | version "7.2.0"
275 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f"
276 | dependencies:
277 | "@babel/helper-plugin-utils" "^7.0.0"
278 |
279 | "@babel/plugin-syntax-json-strings@^7.2.0":
280 | version "7.2.0"
281 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470"
282 | dependencies:
283 | "@babel/helper-plugin-utils" "^7.0.0"
284 |
285 | "@babel/plugin-syntax-jsx@^7.2.0":
286 | version "7.2.0"
287 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz#0b85a3b4bc7cdf4cc4b8bf236335b907ca22e7c7"
288 | dependencies:
289 | "@babel/helper-plugin-utils" "^7.0.0"
290 |
291 | "@babel/plugin-syntax-object-rest-spread@^7.2.0":
292 | version "7.2.0"
293 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e"
294 | dependencies:
295 | "@babel/helper-plugin-utils" "^7.0.0"
296 |
297 | "@babel/plugin-syntax-optional-catch-binding@^7.2.0":
298 | version "7.2.0"
299 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c"
300 | dependencies:
301 | "@babel/helper-plugin-utils" "^7.0.0"
302 |
303 | "@babel/plugin-transform-arrow-functions@^7.2.0":
304 | version "7.2.0"
305 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550"
306 | dependencies:
307 | "@babel/helper-plugin-utils" "^7.0.0"
308 |
309 | "@babel/plugin-transform-async-to-generator@^7.2.0":
310 | version "7.2.0"
311 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.2.0.tgz#68b8a438663e88519e65b776f8938f3445b1a2ff"
312 | dependencies:
313 | "@babel/helper-module-imports" "^7.0.0"
314 | "@babel/helper-plugin-utils" "^7.0.0"
315 | "@babel/helper-remap-async-to-generator" "^7.1.0"
316 |
317 | "@babel/plugin-transform-block-scoped-functions@^7.2.0":
318 | version "7.2.0"
319 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190"
320 | dependencies:
321 | "@babel/helper-plugin-utils" "^7.0.0"
322 |
323 | "@babel/plugin-transform-block-scoping@^7.2.0":
324 | version "7.2.0"
325 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.2.0.tgz#f17c49d91eedbcdf5dd50597d16f5f2f770132d4"
326 | dependencies:
327 | "@babel/helper-plugin-utils" "^7.0.0"
328 | lodash "^4.17.10"
329 |
330 | "@babel/plugin-transform-classes@^7.2.0":
331 | version "7.2.2"
332 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.2.2.tgz#6c90542f210ee975aa2aa8c8b5af7fa73a126953"
333 | dependencies:
334 | "@babel/helper-annotate-as-pure" "^7.0.0"
335 | "@babel/helper-define-map" "^7.1.0"
336 | "@babel/helper-function-name" "^7.1.0"
337 | "@babel/helper-optimise-call-expression" "^7.0.0"
338 | "@babel/helper-plugin-utils" "^7.0.0"
339 | "@babel/helper-replace-supers" "^7.1.0"
340 | "@babel/helper-split-export-declaration" "^7.0.0"
341 | globals "^11.1.0"
342 |
343 | "@babel/plugin-transform-computed-properties@^7.2.0":
344 | version "7.2.0"
345 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da"
346 | dependencies:
347 | "@babel/helper-plugin-utils" "^7.0.0"
348 |
349 | "@babel/plugin-transform-destructuring@^7.2.0":
350 | version "7.2.0"
351 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.2.0.tgz#e75269b4b7889ec3a332cd0d0c8cff8fed0dc6f3"
352 | dependencies:
353 | "@babel/helper-plugin-utils" "^7.0.0"
354 |
355 | "@babel/plugin-transform-dotall-regex@^7.2.0":
356 | version "7.2.0"
357 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.2.0.tgz#f0aabb93d120a8ac61e925ea0ba440812dbe0e49"
358 | dependencies:
359 | "@babel/helper-plugin-utils" "^7.0.0"
360 | "@babel/helper-regex" "^7.0.0"
361 | regexpu-core "^4.1.3"
362 |
363 | "@babel/plugin-transform-duplicate-keys@^7.2.0":
364 | version "7.2.0"
365 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz#d952c4930f312a4dbfff18f0b2914e60c35530b3"
366 | dependencies:
367 | "@babel/helper-plugin-utils" "^7.0.0"
368 |
369 | "@babel/plugin-transform-exponentiation-operator@^7.2.0":
370 | version "7.2.0"
371 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008"
372 | dependencies:
373 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0"
374 | "@babel/helper-plugin-utils" "^7.0.0"
375 |
376 | "@babel/plugin-transform-for-of@^7.2.0":
377 | version "7.2.0"
378 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.2.0.tgz#ab7468befa80f764bb03d3cb5eef8cc998e1cad9"
379 | dependencies:
380 | "@babel/helper-plugin-utils" "^7.0.0"
381 |
382 | "@babel/plugin-transform-function-name@^7.2.0":
383 | version "7.2.0"
384 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.2.0.tgz#f7930362829ff99a3174c39f0afcc024ef59731a"
385 | dependencies:
386 | "@babel/helper-function-name" "^7.1.0"
387 | "@babel/helper-plugin-utils" "^7.0.0"
388 |
389 | "@babel/plugin-transform-literals@^7.2.0":
390 | version "7.2.0"
391 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1"
392 | dependencies:
393 | "@babel/helper-plugin-utils" "^7.0.0"
394 |
395 | "@babel/plugin-transform-modules-amd@^7.2.0":
396 | version "7.2.0"
397 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz#82a9bce45b95441f617a24011dc89d12da7f4ee6"
398 | dependencies:
399 | "@babel/helper-module-transforms" "^7.1.0"
400 | "@babel/helper-plugin-utils" "^7.0.0"
401 |
402 | "@babel/plugin-transform-modules-commonjs@^7.2.0":
403 | version "7.2.0"
404 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.2.0.tgz#c4f1933f5991d5145e9cfad1dfd848ea1727f404"
405 | dependencies:
406 | "@babel/helper-module-transforms" "^7.1.0"
407 | "@babel/helper-plugin-utils" "^7.0.0"
408 | "@babel/helper-simple-access" "^7.1.0"
409 |
410 | "@babel/plugin-transform-modules-systemjs@^7.2.0":
411 | version "7.2.0"
412 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.2.0.tgz#912bfe9e5ff982924c81d0937c92d24994bb9068"
413 | dependencies:
414 | "@babel/helper-hoist-variables" "^7.0.0"
415 | "@babel/helper-plugin-utils" "^7.0.0"
416 |
417 | "@babel/plugin-transform-modules-umd@^7.2.0":
418 | version "7.2.0"
419 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae"
420 | dependencies:
421 | "@babel/helper-module-transforms" "^7.1.0"
422 | "@babel/helper-plugin-utils" "^7.0.0"
423 |
424 | "@babel/plugin-transform-named-capturing-groups-regex@^7.3.0":
425 | version "7.3.0"
426 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.3.0.tgz#140b52985b2d6ef0cb092ef3b29502b990f9cd50"
427 | dependencies:
428 | regexp-tree "^0.1.0"
429 |
430 | "@babel/plugin-transform-new-target@^7.0.0":
431 | version "7.0.0"
432 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.0.0.tgz#ae8fbd89517fa7892d20e6564e641e8770c3aa4a"
433 | dependencies:
434 | "@babel/helper-plugin-utils" "^7.0.0"
435 |
436 | "@babel/plugin-transform-object-super@^7.2.0":
437 | version "7.2.0"
438 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz#b35d4c10f56bab5d650047dad0f1d8e8814b6598"
439 | dependencies:
440 | "@babel/helper-plugin-utils" "^7.0.0"
441 | "@babel/helper-replace-supers" "^7.1.0"
442 |
443 | "@babel/plugin-transform-parameters@^7.2.0":
444 | version "7.2.0"
445 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.2.0.tgz#0d5ad15dc805e2ea866df4dd6682bfe76d1408c2"
446 | dependencies:
447 | "@babel/helper-call-delegate" "^7.1.0"
448 | "@babel/helper-get-function-arity" "^7.0.0"
449 | "@babel/helper-plugin-utils" "^7.0.0"
450 |
451 | "@babel/plugin-transform-react-display-name@^7.0.0":
452 | version "7.2.0"
453 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.2.0.tgz#ebfaed87834ce8dc4279609a4f0c324c156e3eb0"
454 | dependencies:
455 | "@babel/helper-plugin-utils" "^7.0.0"
456 |
457 | "@babel/plugin-transform-react-jsx-self@^7.0.0":
458 | version "7.2.0"
459 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.2.0.tgz#461e21ad9478f1031dd5e276108d027f1b5240ba"
460 | dependencies:
461 | "@babel/helper-plugin-utils" "^7.0.0"
462 | "@babel/plugin-syntax-jsx" "^7.2.0"
463 |
464 | "@babel/plugin-transform-react-jsx-source@^7.0.0":
465 | version "7.2.0"
466 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.2.0.tgz#20c8c60f0140f5dd3cd63418d452801cf3f7180f"
467 | dependencies:
468 | "@babel/helper-plugin-utils" "^7.0.0"
469 | "@babel/plugin-syntax-jsx" "^7.2.0"
470 |
471 | "@babel/plugin-transform-react-jsx@^7.0.0":
472 | version "7.3.0"
473 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.3.0.tgz#f2cab99026631c767e2745a5368b331cfe8f5290"
474 | dependencies:
475 | "@babel/helper-builder-react-jsx" "^7.3.0"
476 | "@babel/helper-plugin-utils" "^7.0.0"
477 | "@babel/plugin-syntax-jsx" "^7.2.0"
478 |
479 | "@babel/plugin-transform-regenerator@^7.0.0":
480 | version "7.0.0"
481 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0.tgz#5b41686b4ed40bef874d7ed6a84bdd849c13e0c1"
482 | dependencies:
483 | regenerator-transform "^0.13.3"
484 |
485 | "@babel/plugin-transform-shorthand-properties@^7.2.0":
486 | version "7.2.0"
487 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0"
488 | dependencies:
489 | "@babel/helper-plugin-utils" "^7.0.0"
490 |
491 | "@babel/plugin-transform-spread@^7.2.0":
492 | version "7.2.2"
493 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406"
494 | dependencies:
495 | "@babel/helper-plugin-utils" "^7.0.0"
496 |
497 | "@babel/plugin-transform-sticky-regex@^7.2.0":
498 | version "7.2.0"
499 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1"
500 | dependencies:
501 | "@babel/helper-plugin-utils" "^7.0.0"
502 | "@babel/helper-regex" "^7.0.0"
503 |
504 | "@babel/plugin-transform-template-literals@^7.2.0":
505 | version "7.2.0"
506 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.2.0.tgz#d87ed01b8eaac7a92473f608c97c089de2ba1e5b"
507 | dependencies:
508 | "@babel/helper-annotate-as-pure" "^7.0.0"
509 | "@babel/helper-plugin-utils" "^7.0.0"
510 |
511 | "@babel/plugin-transform-typeof-symbol@^7.2.0":
512 | version "7.2.0"
513 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2"
514 | dependencies:
515 | "@babel/helper-plugin-utils" "^7.0.0"
516 |
517 | "@babel/plugin-transform-unicode-regex@^7.2.0":
518 | version "7.2.0"
519 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.2.0.tgz#4eb8db16f972f8abb5062c161b8b115546ade08b"
520 | dependencies:
521 | "@babel/helper-plugin-utils" "^7.0.0"
522 | "@babel/helper-regex" "^7.0.0"
523 | regexpu-core "^4.1.3"
524 |
525 | "@babel/preset-env@^7.3.1":
526 | version "7.3.1"
527 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.3.1.tgz#389e8ca6b17ae67aaf9a2111665030be923515db"
528 | dependencies:
529 | "@babel/helper-module-imports" "^7.0.0"
530 | "@babel/helper-plugin-utils" "^7.0.0"
531 | "@babel/plugin-proposal-async-generator-functions" "^7.2.0"
532 | "@babel/plugin-proposal-json-strings" "^7.2.0"
533 | "@babel/plugin-proposal-object-rest-spread" "^7.3.1"
534 | "@babel/plugin-proposal-optional-catch-binding" "^7.2.0"
535 | "@babel/plugin-proposal-unicode-property-regex" "^7.2.0"
536 | "@babel/plugin-syntax-async-generators" "^7.2.0"
537 | "@babel/plugin-syntax-json-strings" "^7.2.0"
538 | "@babel/plugin-syntax-object-rest-spread" "^7.2.0"
539 | "@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
540 | "@babel/plugin-transform-arrow-functions" "^7.2.0"
541 | "@babel/plugin-transform-async-to-generator" "^7.2.0"
542 | "@babel/plugin-transform-block-scoped-functions" "^7.2.0"
543 | "@babel/plugin-transform-block-scoping" "^7.2.0"
544 | "@babel/plugin-transform-classes" "^7.2.0"
545 | "@babel/plugin-transform-computed-properties" "^7.2.0"
546 | "@babel/plugin-transform-destructuring" "^7.2.0"
547 | "@babel/plugin-transform-dotall-regex" "^7.2.0"
548 | "@babel/plugin-transform-duplicate-keys" "^7.2.0"
549 | "@babel/plugin-transform-exponentiation-operator" "^7.2.0"
550 | "@babel/plugin-transform-for-of" "^7.2.0"
551 | "@babel/plugin-transform-function-name" "^7.2.0"
552 | "@babel/plugin-transform-literals" "^7.2.0"
553 | "@babel/plugin-transform-modules-amd" "^7.2.0"
554 | "@babel/plugin-transform-modules-commonjs" "^7.2.0"
555 | "@babel/plugin-transform-modules-systemjs" "^7.2.0"
556 | "@babel/plugin-transform-modules-umd" "^7.2.0"
557 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.3.0"
558 | "@babel/plugin-transform-new-target" "^7.0.0"
559 | "@babel/plugin-transform-object-super" "^7.2.0"
560 | "@babel/plugin-transform-parameters" "^7.2.0"
561 | "@babel/plugin-transform-regenerator" "^7.0.0"
562 | "@babel/plugin-transform-shorthand-properties" "^7.2.0"
563 | "@babel/plugin-transform-spread" "^7.2.0"
564 | "@babel/plugin-transform-sticky-regex" "^7.2.0"
565 | "@babel/plugin-transform-template-literals" "^7.2.0"
566 | "@babel/plugin-transform-typeof-symbol" "^7.2.0"
567 | "@babel/plugin-transform-unicode-regex" "^7.2.0"
568 | browserslist "^4.3.4"
569 | invariant "^2.2.2"
570 | js-levenshtein "^1.1.3"
571 | semver "^5.3.0"
572 |
573 | "@babel/preset-react@^7.0.0":
574 | version "7.0.0"
575 | resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.0.0.tgz#e86b4b3d99433c7b3e9e91747e2653958bc6b3c0"
576 | dependencies:
577 | "@babel/helper-plugin-utils" "^7.0.0"
578 | "@babel/plugin-transform-react-display-name" "^7.0.0"
579 | "@babel/plugin-transform-react-jsx" "^7.0.0"
580 | "@babel/plugin-transform-react-jsx-self" "^7.0.0"
581 | "@babel/plugin-transform-react-jsx-source" "^7.0.0"
582 |
583 | "@babel/template@^7.1.0", "@babel/template@^7.1.2", "@babel/template@^7.2.2":
584 | version "7.2.2"
585 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.2.2.tgz#005b3fdf0ed96e88041330379e0da9a708eb2907"
586 | dependencies:
587 | "@babel/code-frame" "^7.0.0"
588 | "@babel/parser" "^7.2.2"
589 | "@babel/types" "^7.2.2"
590 |
591 | "@babel/traverse@^7.1.0", "@babel/traverse@^7.1.5", "@babel/traverse@^7.2.2", "@babel/traverse@^7.2.3":
592 | version "7.2.3"
593 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.2.3.tgz#7ff50cefa9c7c0bd2d81231fdac122f3957748d8"
594 | dependencies:
595 | "@babel/code-frame" "^7.0.0"
596 | "@babel/generator" "^7.2.2"
597 | "@babel/helper-function-name" "^7.1.0"
598 | "@babel/helper-split-export-declaration" "^7.0.0"
599 | "@babel/parser" "^7.2.3"
600 | "@babel/types" "^7.2.2"
601 | debug "^4.1.0"
602 | globals "^11.1.0"
603 | lodash "^4.17.10"
604 |
605 | "@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0":
606 | version "7.3.0"
607 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.3.0.tgz#61dc0b336a93badc02bf5f69c4cd8e1353f2ffc0"
608 | dependencies:
609 | esutils "^2.0.2"
610 | lodash "^4.17.10"
611 | to-fast-properties "^2.0.0"
612 |
613 | abbrev@1:
614 | version "1.1.1"
615 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
616 |
617 | ansi-regex@^2.0.0:
618 | version "2.1.1"
619 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
620 |
621 | ansi-regex@^3.0.0:
622 | version "3.0.0"
623 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
624 |
625 | ansi-styles@^3.2.1:
626 | version "3.2.1"
627 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
628 | dependencies:
629 | color-convert "^1.9.0"
630 |
631 | anymatch@^2.0.0:
632 | version "2.0.0"
633 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
634 | dependencies:
635 | micromatch "^3.1.4"
636 | normalize-path "^2.1.1"
637 |
638 | aproba@^1.0.3:
639 | version "1.2.0"
640 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
641 |
642 | are-we-there-yet@~1.1.2:
643 | version "1.1.5"
644 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
645 | dependencies:
646 | delegates "^1.0.0"
647 | readable-stream "^2.0.6"
648 |
649 | arr-diff@^4.0.0:
650 | version "4.0.0"
651 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
652 |
653 | arr-flatten@^1.1.0:
654 | version "1.1.0"
655 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
656 |
657 | arr-union@^3.1.0:
658 | version "3.1.0"
659 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
660 |
661 | array-unique@^0.3.2:
662 | version "0.3.2"
663 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
664 |
665 | assign-symbols@^1.0.0:
666 | version "1.0.0"
667 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
668 |
669 | async-each@^1.0.0:
670 | version "1.0.1"
671 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
672 |
673 | atob@^2.1.1:
674 | version "2.1.2"
675 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
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 | base@^0.11.1:
682 | version "0.11.2"
683 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
684 | dependencies:
685 | cache-base "^1.0.1"
686 | class-utils "^0.3.5"
687 | component-emitter "^1.2.1"
688 | define-property "^1.0.0"
689 | isobject "^3.0.1"
690 | mixin-deep "^1.2.0"
691 | pascalcase "^0.1.1"
692 |
693 | binary-extensions@^1.0.0:
694 | version "1.12.0"
695 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.12.0.tgz#c2d780f53d45bba8317a8902d4ceeaf3a6385b14"
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@^2.3.0, braces@^2.3.1:
705 | version "2.3.2"
706 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
707 | dependencies:
708 | arr-flatten "^1.1.0"
709 | array-unique "^0.3.2"
710 | extend-shallow "^2.0.1"
711 | fill-range "^4.0.0"
712 | isobject "^3.0.1"
713 | repeat-element "^1.1.2"
714 | snapdragon "^0.8.1"
715 | snapdragon-node "^2.0.1"
716 | split-string "^3.0.2"
717 | to-regex "^3.0.1"
718 |
719 | browserslist@^4.3.4:
720 | version "4.4.1"
721 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.4.1.tgz#42e828954b6b29a7a53e352277be429478a69062"
722 | dependencies:
723 | caniuse-lite "^1.0.30000929"
724 | electron-to-chromium "^1.3.103"
725 | node-releases "^1.1.3"
726 |
727 | cache-base@^1.0.1:
728 | version "1.0.1"
729 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
730 | dependencies:
731 | collection-visit "^1.0.0"
732 | component-emitter "^1.2.1"
733 | get-value "^2.0.6"
734 | has-value "^1.0.0"
735 | isobject "^3.0.1"
736 | set-value "^2.0.0"
737 | to-object-path "^0.3.0"
738 | union-value "^1.0.0"
739 | unset-value "^1.0.0"
740 |
741 | camelcase@^5.0.0:
742 | version "5.0.0"
743 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42"
744 |
745 | caniuse-lite@^1.0.30000929:
746 | version "1.0.30000933"
747 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000933.tgz#5871ff54b3177675ae1c2a275b2aae7abf2b9222"
748 |
749 | chalk@^2.0.0:
750 | version "2.4.2"
751 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
752 | dependencies:
753 | ansi-styles "^3.2.1"
754 | escape-string-regexp "^1.0.5"
755 | supports-color "^5.3.0"
756 |
757 | chokidar@^2.0.3:
758 | version "2.0.4"
759 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.4.tgz#356ff4e2b0e8e43e322d18a372460bbcf3accd26"
760 | dependencies:
761 | anymatch "^2.0.0"
762 | async-each "^1.0.0"
763 | braces "^2.3.0"
764 | glob-parent "^3.1.0"
765 | inherits "^2.0.1"
766 | is-binary-path "^1.0.0"
767 | is-glob "^4.0.0"
768 | lodash.debounce "^4.0.8"
769 | normalize-path "^2.1.1"
770 | path-is-absolute "^1.0.0"
771 | readdirp "^2.0.0"
772 | upath "^1.0.5"
773 | optionalDependencies:
774 | fsevents "^1.2.2"
775 |
776 | chownr@^1.1.1:
777 | version "1.1.1"
778 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494"
779 |
780 | class-utils@^0.3.5:
781 | version "0.3.6"
782 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
783 | dependencies:
784 | arr-union "^3.1.0"
785 | define-property "^0.2.5"
786 | isobject "^3.0.0"
787 | static-extend "^0.1.1"
788 |
789 | cli-table3@^0.5.0:
790 | version "0.5.1"
791 | resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.5.1.tgz#0252372d94dfc40dbd8df06005f48f31f656f202"
792 | dependencies:
793 | object-assign "^4.1.0"
794 | string-width "^2.1.1"
795 | optionalDependencies:
796 | colors "^1.1.2"
797 |
798 | cliui@^4.0.0:
799 | version "4.1.0"
800 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49"
801 | dependencies:
802 | string-width "^2.1.1"
803 | strip-ansi "^4.0.0"
804 | wrap-ansi "^2.0.0"
805 |
806 | code-point-at@^1.0.0:
807 | version "1.1.0"
808 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
809 |
810 | collection-visit@^1.0.0:
811 | version "1.0.0"
812 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
813 | dependencies:
814 | map-visit "^1.0.0"
815 | object-visit "^1.0.0"
816 |
817 | color-convert@^1.9.0:
818 | version "1.9.3"
819 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
820 | dependencies:
821 | color-name "1.1.3"
822 |
823 | color-name@1.1.3:
824 | version "1.1.3"
825 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
826 |
827 | colors@^1.1.2:
828 | version "1.3.3"
829 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.3.tgz#39e005d546afe01e01f9c4ca8fa50f686a01205d"
830 |
831 | commander@^2.8.1:
832 | version "2.19.0"
833 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a"
834 |
835 | component-emitter@^1.2.1:
836 | version "1.2.1"
837 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
838 |
839 | concat-map@0.0.1:
840 | version "0.0.1"
841 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
842 |
843 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
844 | version "1.1.0"
845 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
846 |
847 | convert-source-map@^1.1.0:
848 | version "1.6.0"
849 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20"
850 | dependencies:
851 | safe-buffer "~5.1.1"
852 |
853 | copy-descriptor@^0.1.0:
854 | version "0.1.1"
855 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
856 |
857 | core-util-is@~1.0.0:
858 | version "1.0.2"
859 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
860 |
861 | cross-spawn@^6.0.0:
862 | version "6.0.5"
863 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
864 | dependencies:
865 | nice-try "^1.0.4"
866 | path-key "^2.0.1"
867 | semver "^5.5.0"
868 | shebang-command "^1.2.0"
869 | which "^1.2.9"
870 |
871 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3:
872 | version "2.6.9"
873 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
874 | dependencies:
875 | ms "2.0.0"
876 |
877 | debug@^4.1.0:
878 | version "4.1.1"
879 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
880 | dependencies:
881 | ms "^2.1.1"
882 |
883 | decamelize@^1.2.0:
884 | version "1.2.0"
885 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
886 |
887 | decode-uri-component@^0.2.0:
888 | version "0.2.0"
889 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
890 |
891 | deep-extend@^0.6.0:
892 | version "0.6.0"
893 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
894 |
895 | define-property@^0.2.5:
896 | version "0.2.5"
897 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
898 | dependencies:
899 | is-descriptor "^0.1.0"
900 |
901 | define-property@^1.0.0:
902 | version "1.0.0"
903 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
904 | dependencies:
905 | is-descriptor "^1.0.0"
906 |
907 | define-property@^2.0.2:
908 | version "2.0.2"
909 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
910 | dependencies:
911 | is-descriptor "^1.0.2"
912 | isobject "^3.0.1"
913 |
914 | delegates@^1.0.0:
915 | version "1.0.0"
916 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
917 |
918 | detect-libc@^1.0.2:
919 | version "1.0.3"
920 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
921 |
922 | electron-to-chromium@^1.3.103:
923 | version "1.3.111"
924 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.111.tgz#9bde11c953425c1756f85c66e61de2b74ced75d0"
925 |
926 | end-of-stream@^1.1.0:
927 | version "1.4.1"
928 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43"
929 | dependencies:
930 | once "^1.4.0"
931 |
932 | escape-string-regexp@^1.0.5:
933 | version "1.0.5"
934 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
935 |
936 | esutils@^2.0.0, esutils@^2.0.2:
937 | version "2.0.2"
938 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
939 |
940 | execa@^1.0.0:
941 | version "1.0.0"
942 | resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
943 | dependencies:
944 | cross-spawn "^6.0.0"
945 | get-stream "^4.0.0"
946 | is-stream "^1.1.0"
947 | npm-run-path "^2.0.0"
948 | p-finally "^1.0.0"
949 | signal-exit "^3.0.0"
950 | strip-eof "^1.0.0"
951 |
952 | expand-brackets@^2.1.4:
953 | version "2.1.4"
954 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
955 | dependencies:
956 | debug "^2.3.3"
957 | define-property "^0.2.5"
958 | extend-shallow "^2.0.1"
959 | posix-character-classes "^0.1.0"
960 | regex-not "^1.0.0"
961 | snapdragon "^0.8.1"
962 | to-regex "^3.0.1"
963 |
964 | extend-shallow@^2.0.1:
965 | version "2.0.1"
966 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
967 | dependencies:
968 | is-extendable "^0.1.0"
969 |
970 | extend-shallow@^3.0.0, extend-shallow@^3.0.2:
971 | version "3.0.2"
972 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
973 | dependencies:
974 | assign-symbols "^1.0.0"
975 | is-extendable "^1.0.1"
976 |
977 | extglob@^2.0.4:
978 | version "2.0.4"
979 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
980 | dependencies:
981 | array-unique "^0.3.2"
982 | define-property "^1.0.0"
983 | expand-brackets "^2.1.4"
984 | extend-shallow "^2.0.1"
985 | fragment-cache "^0.2.1"
986 | regex-not "^1.0.0"
987 | snapdragon "^0.8.1"
988 | to-regex "^3.0.1"
989 |
990 | fill-range@^4.0.0:
991 | version "4.0.0"
992 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
993 | dependencies:
994 | extend-shallow "^2.0.1"
995 | is-number "^3.0.0"
996 | repeat-string "^1.6.1"
997 | to-regex-range "^2.1.0"
998 |
999 | find-up@^3.0.0:
1000 | version "3.0.0"
1001 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
1002 | dependencies:
1003 | locate-path "^3.0.0"
1004 |
1005 | for-in@^1.0.2:
1006 | version "1.0.2"
1007 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1008 |
1009 | fragment-cache@^0.2.1:
1010 | version "0.2.1"
1011 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
1012 | dependencies:
1013 | map-cache "^0.2.2"
1014 |
1015 | fs-minipass@^1.2.5:
1016 | version "1.2.5"
1017 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d"
1018 | dependencies:
1019 | minipass "^2.2.1"
1020 |
1021 | fs-readdir-recursive@^1.1.0:
1022 | version "1.1.0"
1023 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27"
1024 |
1025 | fs.realpath@^1.0.0:
1026 | version "1.0.0"
1027 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1028 |
1029 | fsevents@^1.2.2:
1030 | version "1.2.7"
1031 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.7.tgz#4851b664a3783e52003b3c66eb0eee1074933aa4"
1032 | dependencies:
1033 | nan "^2.9.2"
1034 | node-pre-gyp "^0.10.0"
1035 |
1036 | gauge@~2.7.3:
1037 | version "2.7.4"
1038 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1039 | dependencies:
1040 | aproba "^1.0.3"
1041 | console-control-strings "^1.0.0"
1042 | has-unicode "^2.0.0"
1043 | object-assign "^4.1.0"
1044 | signal-exit "^3.0.0"
1045 | string-width "^1.0.1"
1046 | strip-ansi "^3.0.1"
1047 | wide-align "^1.1.0"
1048 |
1049 | get-caller-file@^1.0.1:
1050 | version "1.0.3"
1051 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
1052 |
1053 | get-stream@^4.0.0:
1054 | version "4.1.0"
1055 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
1056 | dependencies:
1057 | pump "^3.0.0"
1058 |
1059 | get-value@^2.0.3, get-value@^2.0.6:
1060 | version "2.0.6"
1061 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
1062 |
1063 | glob-parent@^3.1.0:
1064 | version "3.1.0"
1065 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
1066 | dependencies:
1067 | is-glob "^3.1.0"
1068 | path-dirname "^1.0.0"
1069 |
1070 | glob@^7.0.0, glob@^7.1.3:
1071 | version "7.1.3"
1072 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1"
1073 | dependencies:
1074 | fs.realpath "^1.0.0"
1075 | inflight "^1.0.4"
1076 | inherits "2"
1077 | minimatch "^3.0.4"
1078 | once "^1.3.0"
1079 | path-is-absolute "^1.0.0"
1080 |
1081 | globals@^11.1.0:
1082 | version "11.10.0"
1083 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.10.0.tgz#1e09776dffda5e01816b3bb4077c8b59c24eaa50"
1084 |
1085 | graceful-fs@^4.1.11:
1086 | version "4.1.15"
1087 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"
1088 |
1089 | has-flag@^3.0.0:
1090 | version "3.0.0"
1091 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1092 |
1093 | has-unicode@^2.0.0:
1094 | version "2.0.1"
1095 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1096 |
1097 | has-value@^0.3.1:
1098 | version "0.3.1"
1099 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
1100 | dependencies:
1101 | get-value "^2.0.3"
1102 | has-values "^0.1.4"
1103 | isobject "^2.0.0"
1104 |
1105 | has-value@^1.0.0:
1106 | version "1.0.0"
1107 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
1108 | dependencies:
1109 | get-value "^2.0.6"
1110 | has-values "^1.0.0"
1111 | isobject "^3.0.0"
1112 |
1113 | has-values@^0.1.4:
1114 | version "0.1.4"
1115 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
1116 |
1117 | has-values@^1.0.0:
1118 | version "1.0.0"
1119 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
1120 | dependencies:
1121 | is-number "^3.0.0"
1122 | kind-of "^4.0.0"
1123 |
1124 | iconv-lite@^0.4.4:
1125 | version "0.4.24"
1126 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
1127 | dependencies:
1128 | safer-buffer ">= 2.1.2 < 3"
1129 |
1130 | ignore-walk@^3.0.1:
1131 | version "3.0.1"
1132 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8"
1133 | dependencies:
1134 | minimatch "^3.0.4"
1135 |
1136 | inflight@^1.0.4:
1137 | version "1.0.6"
1138 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1139 | dependencies:
1140 | once "^1.3.0"
1141 | wrappy "1"
1142 |
1143 | inherits@2, inherits@^2.0.1, inherits@~2.0.3:
1144 | version "2.0.3"
1145 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1146 |
1147 | ini@~1.3.0:
1148 | version "1.3.5"
1149 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
1150 |
1151 | invariant@^2.2.2:
1152 | version "2.2.4"
1153 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
1154 | dependencies:
1155 | loose-envify "^1.0.0"
1156 |
1157 | invert-kv@^2.0.0:
1158 | version "2.0.0"
1159 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02"
1160 |
1161 | is-accessor-descriptor@^0.1.6:
1162 | version "0.1.6"
1163 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
1164 | dependencies:
1165 | kind-of "^3.0.2"
1166 |
1167 | is-accessor-descriptor@^1.0.0:
1168 | version "1.0.0"
1169 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
1170 | dependencies:
1171 | kind-of "^6.0.0"
1172 |
1173 | is-binary-path@^1.0.0:
1174 | version "1.0.1"
1175 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
1176 | dependencies:
1177 | binary-extensions "^1.0.0"
1178 |
1179 | is-buffer@^1.1.5:
1180 | version "1.1.6"
1181 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
1182 |
1183 | is-data-descriptor@^0.1.4:
1184 | version "0.1.4"
1185 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
1186 | dependencies:
1187 | kind-of "^3.0.2"
1188 |
1189 | is-data-descriptor@^1.0.0:
1190 | version "1.0.0"
1191 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
1192 | dependencies:
1193 | kind-of "^6.0.0"
1194 |
1195 | is-descriptor@^0.1.0:
1196 | version "0.1.6"
1197 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
1198 | dependencies:
1199 | is-accessor-descriptor "^0.1.6"
1200 | is-data-descriptor "^0.1.4"
1201 | kind-of "^5.0.0"
1202 |
1203 | is-descriptor@^1.0.0, is-descriptor@^1.0.2:
1204 | version "1.0.2"
1205 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
1206 | dependencies:
1207 | is-accessor-descriptor "^1.0.0"
1208 | is-data-descriptor "^1.0.0"
1209 | kind-of "^6.0.2"
1210 |
1211 | is-extendable@^0.1.0, is-extendable@^0.1.1:
1212 | version "0.1.1"
1213 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1214 |
1215 | is-extendable@^1.0.1:
1216 | version "1.0.1"
1217 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
1218 | dependencies:
1219 | is-plain-object "^2.0.4"
1220 |
1221 | is-extglob@^2.1.0, is-extglob@^2.1.1:
1222 | version "2.1.1"
1223 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1224 |
1225 | is-fullwidth-code-point@^1.0.0:
1226 | version "1.0.0"
1227 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1228 | dependencies:
1229 | number-is-nan "^1.0.0"
1230 |
1231 | is-fullwidth-code-point@^2.0.0:
1232 | version "2.0.0"
1233 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1234 |
1235 | is-glob@^3.1.0:
1236 | version "3.1.0"
1237 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
1238 | dependencies:
1239 | is-extglob "^2.1.0"
1240 |
1241 | is-glob@^4.0.0:
1242 | version "4.0.0"
1243 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0"
1244 | dependencies:
1245 | is-extglob "^2.1.1"
1246 |
1247 | is-number@^3.0.0:
1248 | version "3.0.0"
1249 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1250 | dependencies:
1251 | kind-of "^3.0.2"
1252 |
1253 | is-plain-obj@^1.1.0:
1254 | version "1.1.0"
1255 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
1256 |
1257 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
1258 | version "2.0.4"
1259 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
1260 | dependencies:
1261 | isobject "^3.0.1"
1262 |
1263 | is-stream@^1.1.0:
1264 | version "1.1.0"
1265 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1266 |
1267 | is-windows@^1.0.2:
1268 | version "1.0.2"
1269 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
1270 |
1271 | isarray@1.0.0, isarray@~1.0.0:
1272 | version "1.0.0"
1273 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1274 |
1275 | isexe@^2.0.0:
1276 | version "2.0.0"
1277 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1278 |
1279 | isobject@^2.0.0:
1280 | version "2.1.0"
1281 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1282 | dependencies:
1283 | isarray "1.0.0"
1284 |
1285 | isobject@^3.0.0, isobject@^3.0.1:
1286 | version "3.0.1"
1287 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
1288 |
1289 | js-levenshtein@^1.1.3:
1290 | version "1.1.6"
1291 | resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d"
1292 |
1293 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
1294 | version "4.0.0"
1295 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1296 |
1297 | jsesc@^2.5.1:
1298 | version "2.5.2"
1299 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
1300 |
1301 | jsesc@~0.5.0:
1302 | version "0.5.0"
1303 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
1304 |
1305 | json5@^2.1.0:
1306 | version "2.1.0"
1307 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850"
1308 | dependencies:
1309 | minimist "^1.2.0"
1310 |
1311 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
1312 | version "3.2.2"
1313 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1314 | dependencies:
1315 | is-buffer "^1.1.5"
1316 |
1317 | kind-of@^4.0.0:
1318 | version "4.0.0"
1319 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
1320 | dependencies:
1321 | is-buffer "^1.1.5"
1322 |
1323 | kind-of@^5.0.0:
1324 | version "5.1.0"
1325 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
1326 |
1327 | kind-of@^6.0.0, kind-of@^6.0.2:
1328 | version "6.0.2"
1329 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
1330 |
1331 | lcid@^2.0.0:
1332 | version "2.0.0"
1333 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf"
1334 | dependencies:
1335 | invert-kv "^2.0.0"
1336 |
1337 | locate-path@^3.0.0:
1338 | version "3.0.0"
1339 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
1340 | dependencies:
1341 | p-locate "^3.0.0"
1342 | path-exists "^3.0.0"
1343 |
1344 | lodash.debounce@^4.0.8:
1345 | version "4.0.8"
1346 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
1347 |
1348 | lodash@^4.17.10:
1349 | version "4.17.11"
1350 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
1351 |
1352 | loose-envify@^1.0.0, loose-envify@^1.1.0:
1353 | version "1.4.0"
1354 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
1355 | dependencies:
1356 | js-tokens "^3.0.0 || ^4.0.0"
1357 |
1358 | map-age-cleaner@^0.1.1:
1359 | version "0.1.3"
1360 | resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a"
1361 | dependencies:
1362 | p-defer "^1.0.0"
1363 |
1364 | map-cache@^0.2.2:
1365 | version "0.2.2"
1366 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
1367 |
1368 | map-visit@^1.0.0:
1369 | version "1.0.0"
1370 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
1371 | dependencies:
1372 | object-visit "^1.0.0"
1373 |
1374 | mem@^4.0.0:
1375 | version "4.1.0"
1376 | resolved "https://registry.yarnpkg.com/mem/-/mem-4.1.0.tgz#aeb9be2d21f47e78af29e4ac5978e8afa2ca5b8a"
1377 | dependencies:
1378 | map-age-cleaner "^0.1.1"
1379 | mimic-fn "^1.0.0"
1380 | p-is-promise "^2.0.0"
1381 |
1382 | micromatch@^3.1.10, micromatch@^3.1.4:
1383 | version "3.1.10"
1384 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
1385 | dependencies:
1386 | arr-diff "^4.0.0"
1387 | array-unique "^0.3.2"
1388 | braces "^2.3.1"
1389 | define-property "^2.0.2"
1390 | extend-shallow "^3.0.2"
1391 | extglob "^2.0.4"
1392 | fragment-cache "^0.2.1"
1393 | kind-of "^6.0.2"
1394 | nanomatch "^1.2.9"
1395 | object.pick "^1.3.0"
1396 | regex-not "^1.0.0"
1397 | snapdragon "^0.8.1"
1398 | to-regex "^3.0.2"
1399 |
1400 | mimic-fn@^1.0.0:
1401 | version "1.2.0"
1402 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
1403 |
1404 | minimatch@^3.0.4:
1405 | version "3.0.4"
1406 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1407 | dependencies:
1408 | brace-expansion "^1.1.7"
1409 |
1410 | minimist@0.0.8:
1411 | version "0.0.8"
1412 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1413 |
1414 | minimist@^1.2.0:
1415 | version "1.2.0"
1416 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1417 |
1418 | minipass@^2.2.1, minipass@^2.3.4:
1419 | version "2.3.5"
1420 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848"
1421 | dependencies:
1422 | safe-buffer "^5.1.2"
1423 | yallist "^3.0.0"
1424 |
1425 | minizlib@^1.1.1:
1426 | version "1.2.1"
1427 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614"
1428 | dependencies:
1429 | minipass "^2.2.1"
1430 |
1431 | mixin-deep@^1.2.0:
1432 | version "1.3.1"
1433 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe"
1434 | dependencies:
1435 | for-in "^1.0.2"
1436 | is-extendable "^1.0.1"
1437 |
1438 | mkdirp@^0.5.0, mkdirp@^0.5.1:
1439 | version "0.5.1"
1440 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1441 | dependencies:
1442 | minimist "0.0.8"
1443 |
1444 | ms@2.0.0:
1445 | version "2.0.0"
1446 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1447 |
1448 | ms@^2.1.1:
1449 | version "2.1.1"
1450 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
1451 |
1452 | nan@^2.9.2:
1453 | version "2.12.1"
1454 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.12.1.tgz#7b1aa193e9aa86057e3c7bbd0ac448e770925552"
1455 |
1456 | nanomatch@^1.2.9:
1457 | version "1.2.13"
1458 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
1459 | dependencies:
1460 | arr-diff "^4.0.0"
1461 | array-unique "^0.3.2"
1462 | define-property "^2.0.2"
1463 | extend-shallow "^3.0.2"
1464 | fragment-cache "^0.2.1"
1465 | is-windows "^1.0.2"
1466 | kind-of "^6.0.2"
1467 | object.pick "^1.3.0"
1468 | regex-not "^1.0.0"
1469 | snapdragon "^0.8.1"
1470 | to-regex "^3.0.1"
1471 |
1472 | needle@^2.2.1:
1473 | version "2.2.4"
1474 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e"
1475 | dependencies:
1476 | debug "^2.1.2"
1477 | iconv-lite "^0.4.4"
1478 | sax "^1.2.4"
1479 |
1480 | nice-try@^1.0.4:
1481 | version "1.0.5"
1482 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
1483 |
1484 | node-pre-gyp@^0.10.0:
1485 | version "0.10.3"
1486 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc"
1487 | dependencies:
1488 | detect-libc "^1.0.2"
1489 | mkdirp "^0.5.1"
1490 | needle "^2.2.1"
1491 | nopt "^4.0.1"
1492 | npm-packlist "^1.1.6"
1493 | npmlog "^4.0.2"
1494 | rc "^1.2.7"
1495 | rimraf "^2.6.1"
1496 | semver "^5.3.0"
1497 | tar "^4"
1498 |
1499 | node-releases@^1.1.3:
1500 | version "1.1.6"
1501 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.6.tgz#47d160033e24a64e79487a62de63cf691052ec54"
1502 | dependencies:
1503 | semver "^5.3.0"
1504 |
1505 | nopt@^4.0.1:
1506 | version "4.0.1"
1507 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
1508 | dependencies:
1509 | abbrev "1"
1510 | osenv "^0.1.4"
1511 |
1512 | normalize-path@^2.1.1:
1513 | version "2.1.1"
1514 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
1515 | dependencies:
1516 | remove-trailing-separator "^1.0.1"
1517 |
1518 | npm-bundled@^1.0.1:
1519 | version "1.0.5"
1520 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979"
1521 |
1522 | npm-packlist@^1.1.6:
1523 | version "1.2.0"
1524 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.2.0.tgz#55a60e793e272f00862c7089274439a4cc31fc7f"
1525 | dependencies:
1526 | ignore-walk "^3.0.1"
1527 | npm-bundled "^1.0.1"
1528 |
1529 | npm-run-path@^2.0.0:
1530 | version "2.0.2"
1531 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
1532 | dependencies:
1533 | path-key "^2.0.0"
1534 |
1535 | npmlog@^4.0.2:
1536 | version "4.1.2"
1537 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
1538 | dependencies:
1539 | are-we-there-yet "~1.1.2"
1540 | console-control-strings "~1.1.0"
1541 | gauge "~2.7.3"
1542 | set-blocking "~2.0.0"
1543 |
1544 | number-is-nan@^1.0.0:
1545 | version "1.0.1"
1546 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
1547 |
1548 | object-assign@^4.1.0, object-assign@^4.1.1:
1549 | version "4.1.1"
1550 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1551 |
1552 | object-copy@^0.1.0:
1553 | version "0.1.0"
1554 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
1555 | dependencies:
1556 | copy-descriptor "^0.1.0"
1557 | define-property "^0.2.5"
1558 | kind-of "^3.0.3"
1559 |
1560 | object-visit@^1.0.0:
1561 | version "1.0.1"
1562 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
1563 | dependencies:
1564 | isobject "^3.0.0"
1565 |
1566 | object.pick@^1.3.0:
1567 | version "1.3.0"
1568 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
1569 | dependencies:
1570 | isobject "^3.0.1"
1571 |
1572 | once@^1.3.0, once@^1.3.1, once@^1.4.0:
1573 | version "1.4.0"
1574 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1575 | dependencies:
1576 | wrappy "1"
1577 |
1578 | os-homedir@^1.0.0:
1579 | version "1.0.2"
1580 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
1581 |
1582 | os-locale@^3.0.0:
1583 | version "3.1.0"
1584 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a"
1585 | dependencies:
1586 | execa "^1.0.0"
1587 | lcid "^2.0.0"
1588 | mem "^4.0.0"
1589 |
1590 | os-tmpdir@^1.0.0:
1591 | version "1.0.2"
1592 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
1593 |
1594 | osenv@^0.1.4:
1595 | version "0.1.5"
1596 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
1597 | dependencies:
1598 | os-homedir "^1.0.0"
1599 | os-tmpdir "^1.0.0"
1600 |
1601 | output-file-sync@^2.0.0:
1602 | version "2.0.1"
1603 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-2.0.1.tgz#f53118282f5f553c2799541792b723a4c71430c0"
1604 | dependencies:
1605 | graceful-fs "^4.1.11"
1606 | is-plain-obj "^1.1.0"
1607 | mkdirp "^0.5.1"
1608 |
1609 | p-defer@^1.0.0:
1610 | version "1.0.0"
1611 | resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"
1612 |
1613 | p-finally@^1.0.0:
1614 | version "1.0.0"
1615 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
1616 |
1617 | p-is-promise@^2.0.0:
1618 | version "2.0.0"
1619 | resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.0.0.tgz#7554e3d572109a87e1f3f53f6a7d85d1b194f4c5"
1620 |
1621 | p-limit@^2.0.0:
1622 | version "2.1.0"
1623 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.1.0.tgz#1d5a0d20fb12707c758a655f6bbc4386b5930d68"
1624 | dependencies:
1625 | p-try "^2.0.0"
1626 |
1627 | p-locate@^3.0.0:
1628 | version "3.0.0"
1629 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
1630 | dependencies:
1631 | p-limit "^2.0.0"
1632 |
1633 | p-try@^2.0.0:
1634 | version "2.0.0"
1635 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.0.0.tgz#85080bb87c64688fa47996fe8f7dfbe8211760b1"
1636 |
1637 | pascalcase@^0.1.1:
1638 | version "0.1.1"
1639 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
1640 |
1641 | path-dirname@^1.0.0:
1642 | version "1.0.2"
1643 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
1644 |
1645 | path-exists@^3.0.0:
1646 | version "3.0.0"
1647 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
1648 |
1649 | path-is-absolute@^1.0.0:
1650 | version "1.0.1"
1651 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1652 |
1653 | path-key@^2.0.0, path-key@^2.0.1:
1654 | version "2.0.1"
1655 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
1656 |
1657 | path-parse@^1.0.6:
1658 | version "1.0.6"
1659 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
1660 |
1661 | posix-character-classes@^0.1.0:
1662 | version "0.1.1"
1663 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
1664 |
1665 | private@^0.1.6:
1666 | version "0.1.8"
1667 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
1668 |
1669 | process-nextick-args@~2.0.0:
1670 | version "2.0.0"
1671 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
1672 |
1673 | prop-types@^15.6.2:
1674 | version "15.7.0"
1675 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.0.tgz#cc45233a8ccef80f4a2e3a6bf575bee4e19b4a50"
1676 | dependencies:
1677 | object-assign "^4.1.1"
1678 | react-is "^16.8.1"
1679 |
1680 | pump@^3.0.0:
1681 | version "3.0.0"
1682 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
1683 | dependencies:
1684 | end-of-stream "^1.1.0"
1685 | once "^1.3.1"
1686 |
1687 | rc@^1.2.7:
1688 | version "1.2.8"
1689 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
1690 | dependencies:
1691 | deep-extend "^0.6.0"
1692 | ini "~1.3.0"
1693 | minimist "^1.2.0"
1694 | strip-json-comments "~2.0.1"
1695 |
1696 | react-dom@^16.8.1:
1697 | version "16.8.1"
1698 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.8.1.tgz#ec860f98853d09d39bafd3a6f1e12389d283dbb4"
1699 | dependencies:
1700 | loose-envify "^1.1.0"
1701 | object-assign "^4.1.1"
1702 | prop-types "^15.6.2"
1703 | scheduler "^0.13.1"
1704 |
1705 | react-is@^16.8.1:
1706 | version "16.8.1"
1707 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.1.tgz#a80141e246eb894824fb4f2901c0c50ef31d4cdb"
1708 |
1709 | react@^16.8.1:
1710 | version "16.8.1"
1711 | resolved "https://registry.yarnpkg.com/react/-/react-16.8.1.tgz#ae11831f6cb2a05d58603a976afc8a558e852c4a"
1712 | dependencies:
1713 | loose-envify "^1.1.0"
1714 | object-assign "^4.1.1"
1715 | prop-types "^15.6.2"
1716 | scheduler "^0.13.1"
1717 |
1718 | readable-stream@^2.0.2, readable-stream@^2.0.6:
1719 | version "2.3.6"
1720 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
1721 | dependencies:
1722 | core-util-is "~1.0.0"
1723 | inherits "~2.0.3"
1724 | isarray "~1.0.0"
1725 | process-nextick-args "~2.0.0"
1726 | safe-buffer "~5.1.1"
1727 | string_decoder "~1.1.1"
1728 | util-deprecate "~1.0.1"
1729 |
1730 | readdirp@^2.0.0:
1731 | version "2.2.1"
1732 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
1733 | dependencies:
1734 | graceful-fs "^4.1.11"
1735 | micromatch "^3.1.10"
1736 | readable-stream "^2.0.2"
1737 |
1738 | regenerate-unicode-properties@^7.0.0:
1739 | version "7.0.0"
1740 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-7.0.0.tgz#107405afcc4a190ec5ed450ecaa00ed0cafa7a4c"
1741 | dependencies:
1742 | regenerate "^1.4.0"
1743 |
1744 | regenerate@^1.4.0:
1745 | version "1.4.0"
1746 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
1747 |
1748 | regenerator-transform@^0.13.3:
1749 | version "0.13.3"
1750 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.13.3.tgz#264bd9ff38a8ce24b06e0636496b2c856b57bcbb"
1751 | dependencies:
1752 | private "^0.1.6"
1753 |
1754 | regex-not@^1.0.0, regex-not@^1.0.2:
1755 | version "1.0.2"
1756 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
1757 | dependencies:
1758 | extend-shallow "^3.0.2"
1759 | safe-regex "^1.1.0"
1760 |
1761 | regexp-tree@^0.1.0:
1762 | version "0.1.1"
1763 | resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.1.tgz#27b455f9b138ca2e84c090e9aff1ffe2a04d97fa"
1764 | dependencies:
1765 | cli-table3 "^0.5.0"
1766 | colors "^1.1.2"
1767 | yargs "^12.0.5"
1768 |
1769 | regexpu-core@^4.1.3, regexpu-core@^4.2.0:
1770 | version "4.4.0"
1771 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.4.0.tgz#8d43e0d1266883969720345e70c275ee0aec0d32"
1772 | dependencies:
1773 | regenerate "^1.4.0"
1774 | regenerate-unicode-properties "^7.0.0"
1775 | regjsgen "^0.5.0"
1776 | regjsparser "^0.6.0"
1777 | unicode-match-property-ecmascript "^1.0.4"
1778 | unicode-match-property-value-ecmascript "^1.0.2"
1779 |
1780 | regjsgen@^0.5.0:
1781 | version "0.5.0"
1782 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd"
1783 |
1784 | regjsparser@^0.6.0:
1785 | version "0.6.0"
1786 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c"
1787 | dependencies:
1788 | jsesc "~0.5.0"
1789 |
1790 | remove-trailing-separator@^1.0.1:
1791 | version "1.1.0"
1792 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
1793 |
1794 | repeat-element@^1.1.2:
1795 | version "1.1.3"
1796 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce"
1797 |
1798 | repeat-string@^1.6.1:
1799 | version "1.6.1"
1800 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
1801 |
1802 | require-directory@^2.1.1:
1803 | version "2.1.1"
1804 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
1805 |
1806 | require-main-filename@^1.0.1:
1807 | version "1.0.1"
1808 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
1809 |
1810 | resolve-url@^0.2.1:
1811 | version "0.2.1"
1812 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
1813 |
1814 | resolve@^1.3.2:
1815 | version "1.10.0"
1816 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba"
1817 | dependencies:
1818 | path-parse "^1.0.6"
1819 |
1820 | ret@~0.1.10:
1821 | version "0.1.15"
1822 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
1823 |
1824 | rimraf@^2.6.1:
1825 | version "2.6.3"
1826 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
1827 | dependencies:
1828 | glob "^7.1.3"
1829 |
1830 | safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
1831 | version "5.1.2"
1832 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
1833 |
1834 | safe-regex@^1.1.0:
1835 | version "1.1.0"
1836 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
1837 | dependencies:
1838 | ret "~0.1.10"
1839 |
1840 | "safer-buffer@>= 2.1.2 < 3":
1841 | version "2.1.2"
1842 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
1843 |
1844 | sax@^1.2.4:
1845 | version "1.2.4"
1846 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
1847 |
1848 | scheduler@^0.13.1:
1849 | version "0.13.1"
1850 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.13.1.tgz#1a217df1bfaabaf4f1b92a9127d5d732d85a9591"
1851 | dependencies:
1852 | loose-envify "^1.1.0"
1853 | object-assign "^4.1.1"
1854 |
1855 | semver@^5.3.0, semver@^5.4.1, semver@^5.5.0:
1856 | version "5.6.0"
1857 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004"
1858 |
1859 | set-blocking@^2.0.0, set-blocking@~2.0.0:
1860 | version "2.0.0"
1861 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
1862 |
1863 | set-value@^0.4.3:
1864 | version "0.4.3"
1865 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"
1866 | dependencies:
1867 | extend-shallow "^2.0.1"
1868 | is-extendable "^0.1.1"
1869 | is-plain-object "^2.0.1"
1870 | to-object-path "^0.3.0"
1871 |
1872 | set-value@^2.0.0:
1873 | version "2.0.0"
1874 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"
1875 | dependencies:
1876 | extend-shallow "^2.0.1"
1877 | is-extendable "^0.1.1"
1878 | is-plain-object "^2.0.3"
1879 | split-string "^3.0.1"
1880 |
1881 | shebang-command@^1.2.0:
1882 | version "1.2.0"
1883 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
1884 | dependencies:
1885 | shebang-regex "^1.0.0"
1886 |
1887 | shebang-regex@^1.0.0:
1888 | version "1.0.0"
1889 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
1890 |
1891 | signal-exit@^3.0.0:
1892 | version "3.0.2"
1893 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
1894 |
1895 | slash@^2.0.0:
1896 | version "2.0.0"
1897 | resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
1898 |
1899 | snapdragon-node@^2.0.1:
1900 | version "2.1.1"
1901 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
1902 | dependencies:
1903 | define-property "^1.0.0"
1904 | isobject "^3.0.0"
1905 | snapdragon-util "^3.0.1"
1906 |
1907 | snapdragon-util@^3.0.1:
1908 | version "3.0.1"
1909 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
1910 | dependencies:
1911 | kind-of "^3.2.0"
1912 |
1913 | snapdragon@^0.8.1:
1914 | version "0.8.2"
1915 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
1916 | dependencies:
1917 | base "^0.11.1"
1918 | debug "^2.2.0"
1919 | define-property "^0.2.5"
1920 | extend-shallow "^2.0.1"
1921 | map-cache "^0.2.2"
1922 | source-map "^0.5.6"
1923 | source-map-resolve "^0.5.0"
1924 | use "^3.1.0"
1925 |
1926 | source-map-resolve@^0.5.0:
1927 | version "0.5.2"
1928 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259"
1929 | dependencies:
1930 | atob "^2.1.1"
1931 | decode-uri-component "^0.2.0"
1932 | resolve-url "^0.2.1"
1933 | source-map-url "^0.4.0"
1934 | urix "^0.1.0"
1935 |
1936 | source-map-url@^0.4.0:
1937 | version "0.4.0"
1938 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
1939 |
1940 | source-map@^0.5.0, source-map@^0.5.6:
1941 | version "0.5.7"
1942 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
1943 |
1944 | split-string@^3.0.1, split-string@^3.0.2:
1945 | version "3.1.0"
1946 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
1947 | dependencies:
1948 | extend-shallow "^3.0.0"
1949 |
1950 | static-extend@^0.1.1:
1951 | version "0.1.2"
1952 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
1953 | dependencies:
1954 | define-property "^0.2.5"
1955 | object-copy "^0.1.0"
1956 |
1957 | string-width@^1.0.1:
1958 | version "1.0.2"
1959 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
1960 | dependencies:
1961 | code-point-at "^1.0.0"
1962 | is-fullwidth-code-point "^1.0.0"
1963 | strip-ansi "^3.0.0"
1964 |
1965 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1:
1966 | version "2.1.1"
1967 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
1968 | dependencies:
1969 | is-fullwidth-code-point "^2.0.0"
1970 | strip-ansi "^4.0.0"
1971 |
1972 | string_decoder@~1.1.1:
1973 | version "1.1.1"
1974 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
1975 | dependencies:
1976 | safe-buffer "~5.1.0"
1977 |
1978 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
1979 | version "3.0.1"
1980 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
1981 | dependencies:
1982 | ansi-regex "^2.0.0"
1983 |
1984 | strip-ansi@^4.0.0:
1985 | version "4.0.0"
1986 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
1987 | dependencies:
1988 | ansi-regex "^3.0.0"
1989 |
1990 | strip-eof@^1.0.0:
1991 | version "1.0.0"
1992 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
1993 |
1994 | strip-json-comments@~2.0.1:
1995 | version "2.0.1"
1996 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
1997 |
1998 | supports-color@^5.3.0:
1999 | version "5.5.0"
2000 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
2001 | dependencies:
2002 | has-flag "^3.0.0"
2003 |
2004 | tar@^4:
2005 | version "4.4.8"
2006 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d"
2007 | dependencies:
2008 | chownr "^1.1.1"
2009 | fs-minipass "^1.2.5"
2010 | minipass "^2.3.4"
2011 | minizlib "^1.1.1"
2012 | mkdirp "^0.5.0"
2013 | safe-buffer "^5.1.2"
2014 | yallist "^3.0.2"
2015 |
2016 | to-fast-properties@^2.0.0:
2017 | version "2.0.0"
2018 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
2019 |
2020 | to-object-path@^0.3.0:
2021 | version "0.3.0"
2022 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
2023 | dependencies:
2024 | kind-of "^3.0.2"
2025 |
2026 | to-regex-range@^2.1.0:
2027 | version "2.1.1"
2028 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
2029 | dependencies:
2030 | is-number "^3.0.0"
2031 | repeat-string "^1.6.1"
2032 |
2033 | to-regex@^3.0.1, to-regex@^3.0.2:
2034 | version "3.0.2"
2035 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
2036 | dependencies:
2037 | define-property "^2.0.2"
2038 | extend-shallow "^3.0.2"
2039 | regex-not "^1.0.2"
2040 | safe-regex "^1.1.0"
2041 |
2042 | trim-right@^1.0.1:
2043 | version "1.0.1"
2044 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
2045 |
2046 | unicode-canonical-property-names-ecmascript@^1.0.4:
2047 | version "1.0.4"
2048 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
2049 |
2050 | unicode-match-property-ecmascript@^1.0.4:
2051 | version "1.0.4"
2052 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
2053 | dependencies:
2054 | unicode-canonical-property-names-ecmascript "^1.0.4"
2055 | unicode-property-aliases-ecmascript "^1.0.4"
2056 |
2057 | unicode-match-property-value-ecmascript@^1.0.2:
2058 | version "1.0.2"
2059 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.0.2.tgz#9f1dc76926d6ccf452310564fd834ace059663d4"
2060 |
2061 | unicode-property-aliases-ecmascript@^1.0.4:
2062 | version "1.0.4"
2063 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz#5a533f31b4317ea76f17d807fa0d116546111dd0"
2064 |
2065 | union-value@^1.0.0:
2066 | version "1.0.0"
2067 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"
2068 | dependencies:
2069 | arr-union "^3.1.0"
2070 | get-value "^2.0.6"
2071 | is-extendable "^0.1.1"
2072 | set-value "^0.4.3"
2073 |
2074 | unset-value@^1.0.0:
2075 | version "1.0.0"
2076 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
2077 | dependencies:
2078 | has-value "^0.3.1"
2079 | isobject "^3.0.0"
2080 |
2081 | upath@^1.0.5:
2082 | version "1.1.0"
2083 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.0.tgz#35256597e46a581db4793d0ce47fa9aebfc9fabd"
2084 |
2085 | urix@^0.1.0:
2086 | version "0.1.0"
2087 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
2088 |
2089 | use@^3.1.0:
2090 | version "3.1.1"
2091 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
2092 |
2093 | util-deprecate@~1.0.1:
2094 | version "1.0.2"
2095 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
2096 |
2097 | which-module@^2.0.0:
2098 | version "2.0.0"
2099 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
2100 |
2101 | which@^1.2.9:
2102 | version "1.3.1"
2103 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
2104 | dependencies:
2105 | isexe "^2.0.0"
2106 |
2107 | wide-align@^1.1.0:
2108 | version "1.1.3"
2109 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
2110 | dependencies:
2111 | string-width "^1.0.2 || 2"
2112 |
2113 | wrap-ansi@^2.0.0:
2114 | version "2.1.0"
2115 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
2116 | dependencies:
2117 | string-width "^1.0.1"
2118 | strip-ansi "^3.0.1"
2119 |
2120 | wrappy@1:
2121 | version "1.0.2"
2122 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2123 |
2124 | "y18n@^3.2.1 || ^4.0.0":
2125 | version "4.0.0"
2126 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b"
2127 |
2128 | yallist@^3.0.0, yallist@^3.0.2:
2129 | version "3.0.3"
2130 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9"
2131 |
2132 | yargs-parser@^11.1.1:
2133 | version "11.1.1"
2134 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4"
2135 | dependencies:
2136 | camelcase "^5.0.0"
2137 | decamelize "^1.2.0"
2138 |
2139 | yargs@^12.0.5:
2140 | version "12.0.5"
2141 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13"
2142 | dependencies:
2143 | cliui "^4.0.0"
2144 | decamelize "^1.2.0"
2145 | find-up "^3.0.0"
2146 | get-caller-file "^1.0.1"
2147 | os-locale "^3.0.0"
2148 | require-directory "^2.1.1"
2149 | require-main-filename "^1.0.1"
2150 | set-blocking "^2.0.0"
2151 | string-width "^2.0.0"
2152 | which-module "^2.0.0"
2153 | y18n "^3.2.1 || ^4.0.0"
2154 | yargs-parser "^11.1.1"
2155 |
--------------------------------------------------------------------------------