├── .gitignore
├── README.md
├── ReactNestedLoader.d.ts
├── index.js
├── package.json
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | # Created by .ignore support plugin (hsz.mobi)
2 |
3 |
4 | *.iml
5 | .idea
6 |
7 | ReactNestedLoader.js
8 |
9 | ### Node template
10 | # Logs
11 | logs
12 | *.log
13 | npm-debug.log*
14 | yarn-debug.log*
15 | yarn-error.log*
16 |
17 | # Runtime data
18 | pids
19 | *.pid
20 | *.seed
21 | *.pid.lock
22 |
23 | # Directory for instrumented libs generated by jscoverage/JSCover
24 | lib-cov
25 |
26 | # Coverage directory used by tools like istanbul
27 | coverage
28 |
29 | # nyc test coverage
30 | .nyc_output
31 |
32 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
33 | .grunt
34 |
35 | # Bower dependency directory (https://bower.io/)
36 | bower_components
37 |
38 | # node-waf configuration
39 | .lock-wscript
40 |
41 | # Compiled binary addons (https://nodejs.org/api/addons.html)
42 | build/Release
43 |
44 | # Dependency directories
45 | node_modules/
46 | jspm_packages/
47 |
48 | # Typescript v1 declaration files
49 | typings/
50 |
51 | # Optional npm cache directory
52 | .npm
53 |
54 | # Optional eslint cache
55 | .eslintcache
56 |
57 | # Optional REPL history
58 | .node_repl_history
59 |
60 | # Output of 'npm pack'
61 | *.tgz
62 |
63 | # Yarn Integrity file
64 | .yarn-integrity
65 |
66 | # dotenv environment variables file
67 | .env
68 |
69 |
70 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # ARCHIVED REPO.
2 |
3 | Deprecated in favor of [react-async-hook](https://github.com/slorber/react-async-hook) which permit the same thing with a better hooks-based api, with `useAsyncCallback`.
4 |
5 |
6 |
7 | React Nested Loader
8 | ==========================
9 |
10 | - Manage loading/error state of nested views/buttons triggering async actions
11 | - Not an UI lib, you provide the UI. Works with ReactNative.
12 | - *No boilerplate at all*, no need to use setState/Redux
13 |
14 | ## Main usecase: button triggering api calls
15 |
16 | You have a submit button on your form. For good UX you may want to:
17 | - show temporarily a spinner into the button
18 | - disable the button during the async operation
19 | - make the button blink on api errors
20 |
21 | Unfortunately, you are using Redux/setState/whatever, and implementing this kind of UX detail takes too much time/pollutes state/creates boilerplate so it is left for later while it doesn't have to.
22 |
23 | 
24 | 
25 | 
26 | 
27 |
28 |
29 | ## Demo
30 |
31 | Here is a [CodeSandbox](https://codesandbox.io/s/w640yv5p9w) demo
32 |
33 | ## Usage
34 |
35 | `npm install react-nested-loader`
36 |
37 | #### 1) Create a button:
38 |
39 | ```javascript
40 |
41 | const Button = ({
42 | onClick,
43 | loading,
44 | error,
45 | }) => (
46 |
49 | );
50 | ```
51 |
52 | The button UI should be able to display appropriately loading/error states. You define the styling entirely.
53 |
54 | #### 2) Wrap your button:
55 |
56 | ```javascript
57 | import ReactNestedLoader from "react-nested-loader";
58 |
59 | const LoadingButton = ReactNestedLoader({
60 | // optional but convenient: only inject the error for 1sec for blinking effect
61 | onError: (error, remove) => setTimeout(remove,1000),
62 | })(Button);
63 | ```
64 |
65 | The `ReactNestedLoader` HOC will by default inject a `loading=false` and `error=undefined` prop to the wrapped component.
66 |
67 | #### 3) Return a promise in container/smartComp/controller:
68 |
69 |
70 | ```javascript
71 | const SomeIntermediateComp = ({onButtonClick}) => (
72 |
73 |
74 |
75 | );
76 |
77 | class Container extends React.Component {
78 | handleClick = () => {
79 | const promise = MyAPI.doSomethingAsync();
80 | // VERY IMPORTANT: the promise MUST be returned to the button (or you can use "async handleClick")
81 | return promise;
82 | };
83 | render() {
84 | return (
85 |
86 |
87 |
88 | )
89 | }
90 | }
91 | ```
92 |
93 | Using the `LoadingButton` into a top-level component.
94 |
95 | No need to use any local state, you just need to return the promise to the button, and the `loading` / `error` prop of your button will be automatically updated according to the state of the last intercepted promise.
96 |
97 |
98 | ## API
99 |
100 | ```javascript
101 | const LoadingButton = ReactNestedLoader(Button);
102 | ```
103 |
104 | Or
105 |
106 | ```javascript
107 | const LoadingButton = ReactNestedLoader(config)(Button);
108 | ```
109 |
110 | ### Options
111 |
112 | ```js
113 | const DefaultConfig = {
114 | // The "loading" prop to use for injecting the loading boolean value
115 | loadingProp: "loading",
116 |
117 | // The "error" prop to use for injecting the rejection error on failed async operation
118 | errorProp: "error",
119 |
120 | // The "success" prop to use for injecting the success boolean on successful async operation
121 | successProp: false,
122 |
123 | // The "api" prop that will be injected into your component for manual control
124 | apiProp: false,
125 |
126 |
127 | // You might want to log the intercepted errors?
128 | // Sometimes you want to only display the promise error temporarily (for example, make the button blink on error)
129 | // You can do so with: onError: (error, remove, isCurrentPromise) => setTimeout(remove,1000)
130 | onError: (error, remove, isCurrentPromise) => {},
131 |
132 | // You can also inject a success boolean prop, and schedule its removal to give user feedback (like congratulations)
133 | onSuccess: (result, remove, isCurrentPromise) => {},
134 |
135 | // It is safer to delay by default slightly the loader removal
136 | // For example if your promise has 2 then() callbacks (removal of a view and loader removal),
137 | // this ensures that the loader is not removed just before view removal, leading to flicker
138 | delay: true,
139 |
140 | // Should we use React.forwardRef (meaning it won't be possible to get this comp instance, just the wrapped comp)
141 | forwardRef: true,
142 |
143 | // To which prop should the ref be forwarded
144 | // - if wrapped component use forwardRef, then "ref" makes sense
145 | // - else you may want to get the instance of the wrapped component, or it probably expose an "innerRef" prop...
146 | refProp: 'ref',
147 | };
148 | ```
149 |
150 | ## Features
151 |
152 | - Works with React and React-Native
153 | - The callback proxies are cached appropriately so that the underlying button does not render unnecessarily. If you provide stable callbacks, the HOC will pass-down stable proxies and your pure component button can bypass rendering
154 | - Will only handle the loading state of the last returned promise, to avoid concurrency issues (think `takeLatest` of Redux-saga`)
155 | - API injected as prop into button (`props.reactNestedLoader.handlePromise(promise))`
156 | - Can use React.forwardRef() (2.*)
157 | - Imperative API, when not forwarding ref (`componentRef.api.handlePromise(promise)`)
158 |
159 |
160 |
161 | ## Limits
162 |
163 | The HOC does hold the button loading state as React component state. This means it won't be in your state management system (Redux/Apollo/Mobx...) and as any local state you will loose ability to use devtools to replay that state (or other fancy features). In my opinion it is not critical state that is worth putting in your Redux store anyway. I assume perfectly using this lib as well as Redux/Redux-saga/Apollo mutations.
164 |
165 | Currently the lib only support injecting a single `loading` prop. As a component may receive multiple callbacks, we could inject multiple loading props. Please open issues with your specific usecase if needed.
166 |
167 |
168 | ## Advices
169 |
170 | - Wrap generic app button with `ReactNestedLoader` and manage the `loading` prop inside it to show some alternative content like a spinner
171 | - When button component change from `loading=false` to `loading=true`, make sure the component dimension is not affected for better UX
172 | - A nice UX is to make the text disappear and make the spinner appear, as it does not mess-up with button dimensions (make sure to use a small-enough spinner)
173 | - If needed, pass spinner size in button props
174 |
175 | ## TODOS
176 |
177 | - Find more explicit name?
178 | - Support more advanced usecases?
179 | - Tests
180 |
181 | # Hire a freelance expert
182 |
183 | Looking for a React/ReactNative freelance expert with more than 5 years production experience?
184 | Contact me from my [website](https://sebastienlorber.com/) or with [Twitter](https://twitter.com/sebastienlorber).
185 |
--------------------------------------------------------------------------------
/ReactNestedLoader.d.ts:
--------------------------------------------------------------------------------
1 |
2 | export default function wrap(Comp: T): T
3 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 |
3 |
4 | function mapValues(object, iteratee) {
5 | object = Object(object);
6 | const result = {};
7 | Object.keys(object).forEach((key) => {
8 | result[key] = iteratee(object[key], key, object);
9 | });
10 | return result
11 | }
12 |
13 | function getDisplayName(WrappedComponent) {
14 | return WrappedComponent.displayName || WrappedComponent.name || "Component";
15 | }
16 |
17 |
18 | const DefaultConfig = {
19 | // The "loading" prop to use for injecting the loading boolean value
20 | loadingProp: "loading",
21 |
22 | // The "error" prop to use for injecting the rejection error on failed async operation
23 | errorProp: "error",
24 |
25 | // The "success" prop to use for injecting the success boolean on successful async operation
26 | successProp: false,
27 |
28 | // The "api" prop that will be injected into your component for manual control
29 | apiProp: false,
30 |
31 |
32 | // You might want to log the intercepted errors?
33 | // Sometimes you want to only display the promise error temporarily (for example, make the button blink on error)
34 | // You can do so with: onError: (error, remove, isCurrentPromise) => setTimeout(remove,1000)
35 | onError: (error, remove, isCurrentPromise) => {},
36 |
37 | // You can also inject a success boolean prop, and schedule its removal to give user feedback (like congratulations)
38 | onSuccess: (result, remove, isCurrentPromise) => {},
39 |
40 | // It is safer to delay by default slightly the loader removal
41 | // For example if your promise has 2 then() callbacks (removal of a view and loader removal),
42 | // this ensures that the loader is not removed just before view removal, leading to flicker
43 | delay: true,
44 |
45 | // Should we use React.forwardRef (meaning it won't be possible to get this comp instance, just the wrapped comp)
46 | forwardRef: true,
47 |
48 | // To which prop should the ref be forwarded
49 | // - if wrapped component use forwardRef, then "ref" makes sense
50 | // - else you may want to get the instance of the wrapped component, or it probably expose an "innerRef" prop...
51 | refProp: 'ref',
52 | };
53 |
54 |
55 | function wrap(Comp,config = DefaultConfig) {
56 |
57 | const {
58 | loadingProp,
59 | errorProp,
60 | successProp,
61 | apiProp,
62 | onError,
63 | onSuccess,
64 | delay,
65 | forwardRef,
66 | refProp,
67 | } = {
68 | ...DefaultConfig,
69 | ...config,
70 | };
71 |
72 | class ReactNestedLoader extends React.Component {
73 |
74 | static InitialState = {
75 | loading: false,
76 | success: undefined,
77 | error: undefined,
78 | };
79 |
80 | constructor(props) {
81 | super(props);
82 | this.state = ReactNestedLoader.InitialState;
83 | this.api = {
84 | handlePromise: this.handlePromise,
85 | };
86 | this.proxyCache = {};
87 | }
88 |
89 | componentWillUnmount() {
90 | this.setState = () => {};
91 | }
92 |
93 |
94 | handlePromise = promise => {
95 | this.setState({loading: true, error: undefined});
96 |
97 | // Handle potential concurrency issues due to handling multiple promises concurrently
98 | this.promise = promise;
99 | const isCurrentPromise = () => promise === this.promise;
100 |
101 | const removeSuccess = () => {
102 | if (isCurrentPromise()) {
103 | this.setState({
104 | success: undefined,
105 | });
106 | }
107 | };
108 | const removeError = () => {
109 | if (isCurrentPromise()) {
110 | this.setState({
111 | error: undefined,
112 | });
113 | }
114 | };
115 |
116 | const handleResolve = (result,error) => {
117 | const success = !error;
118 | // Handle potential concurrency issues due to handling multiple promises concurrently
119 | // We only want to handle the last promise
120 | this.scheduleWithDelay(() => {
121 | if (isCurrentPromise()) {
122 | this.setState(
123 | {
124 | loading: false,
125 | success,
126 | error,
127 | }
128 | );
129 | }
130 | });
131 |
132 | if (success) {
133 | onSuccess(result, removeSuccess, isCurrentPromise())
134 | }
135 | else {
136 | onError(error, removeError, isCurrentPromise())
137 | }
138 | };
139 |
140 | promise.then(
141 | result => handleResolve(result),
142 | e => handleResolve(null,e)
143 | );
144 | };
145 |
146 | scheduleWithDelay = (fn) => {
147 | if (delay) {
148 | if (delay instanceof Function) {
149 | delay(fn);
150 | }
151 | else if (delay instanceof Number ) {
152 | setTimeout(fn,delay);
153 | }
154 | else {
155 | setTimeout(fn,0);
156 | }
157 | }
158 | else {
159 | fn();
160 | }
161 | };
162 |
163 | buildProxy = fn => {
164 | return (...args) => {
165 | const result = fn(...args);
166 | if (result instanceof Promise) {
167 | this.handlePromise(result);
168 | }
169 | return result;
170 | };
171 | };
172 |
173 | // We use caching, so that if input functions are stable across renders,
174 | // we provide stable proxied functions to children to avoid triggering unnecessary renders to wrapped component
175 | maybeBuildProxy = (prop, propName) => {
176 | if (prop instanceof Function) {
177 | const cache = this.proxyCache[propName];
178 | if (cache && cache.originalProp === prop) {
179 | return cache.proxyProp;
180 | } else {
181 | const proxy = this.buildProxy(prop);
182 | this.proxyCache[propName] = {
183 | originalProp: prop,
184 | proxyProp: proxy,
185 | };
186 | return proxy;
187 | }
188 | } else {
189 | return prop;
190 | }
191 | };
192 |
193 | render() {
194 | const { innerRef, ...props } = this.props;
195 | return (
196 |
204 | );
205 | }
206 | }
207 |
208 | ReactNestedLoader.displayName = `ReactNestedLoader(${getDisplayName(Comp)})`;
209 |
210 | if ( forwardRef ) {
211 | return React.forwardRef((props,ref) => (
212 |
213 | ));
214 | }
215 | else {
216 | return ReactNestedLoader
217 | }
218 | }
219 |
220 | // see https://twitter.com/sebastienlorber/status/1034747209215041536
221 | const isForwardRef = x => typeof x.$$typeof === "symbol" && !!x.render
222 |
223 | export default compOrOptions => {
224 | if ( typeof compOrOptions === 'object' && !isForwardRef(compOrOptions) ) {
225 | return Comp => wrap(Comp,compOrOptions);
226 | }
227 | else {
228 | return wrap(compOrOptions);
229 | }
230 | }
231 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-nested-loader",
3 | "version": "2.2.1",
4 | "description": "Easiest way to inject a loader/spinner into a deeply nested component (like a button)",
5 | "main": "ReactNestedLoader.js",
6 | "types": "ReactNestedLoader.d.ts",
7 | "scripts": {
8 | "build": "babel index.js --out-file ReactNestedLoader.js --plugins=transform-class-properties,transform-object-rest-spread --presets=es2015,react",
9 | "release": "npm run build && npm publish"
10 | },
11 | "repository": {
12 | "type": "git",
13 | "url": "git+https://github.com/slorber/react-nested-loader.git"
14 | },
15 | "keywords": [
16 | "react",
17 | "loader",
18 | "spinner",
19 | "nested",
20 | "deep",
21 | "deeply"
22 | ],
23 | "author": "Sébastien Lorber",
24 | "license": "MIT",
25 | "bugs": {
26 | "url": "https://github.com/slorber/react-nested-loader/issues"
27 | },
28 | "homepage": "https://github.com/slorber/react-nested-loader#readme",
29 | "peerDependencies": {
30 | "react": ">=16.3.0"
31 | },
32 | "devDependencies": {
33 | "babel-cli": "^6.24.1",
34 | "babel-core": "^6.5.2",
35 | "babel-plugin-transform-class-properties": "^6.8.0",
36 | "babel-plugin-transform-object-rest-spread": "^6.8.0",
37 | "babel-preset-es2015": "^6.24.1",
38 | "babel-preset-react": "^6.24.1"
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | abbrev@1:
6 | version "1.1.1"
7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
8 |
9 | ajv@^4.9.1:
10 | version "4.11.8"
11 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
12 | dependencies:
13 | co "^4.6.0"
14 | json-stable-stringify "^1.0.1"
15 |
16 | ansi-regex@^2.0.0:
17 | version "2.1.1"
18 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
19 |
20 | ansi-styles@^2.2.1:
21 | version "2.2.1"
22 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
23 |
24 | anymatch@^1.3.0:
25 | version "1.3.2"
26 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
27 | dependencies:
28 | micromatch "^2.1.5"
29 | normalize-path "^2.0.0"
30 |
31 | aproba@^1.0.3:
32 | version "1.2.0"
33 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
34 |
35 | are-we-there-yet@~1.1.2:
36 | version "1.1.4"
37 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
38 | dependencies:
39 | delegates "^1.0.0"
40 | readable-stream "^2.0.6"
41 |
42 | arr-diff@^2.0.0:
43 | version "2.0.0"
44 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
45 | dependencies:
46 | arr-flatten "^1.0.1"
47 |
48 | arr-flatten@^1.0.1:
49 | version "1.1.0"
50 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
51 |
52 | array-unique@^0.2.1:
53 | version "0.2.1"
54 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
55 |
56 | asn1@~0.2.3:
57 | version "0.2.3"
58 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
59 |
60 | assert-plus@1.0.0, assert-plus@^1.0.0:
61 | version "1.0.0"
62 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
63 |
64 | assert-plus@^0.2.0:
65 | version "0.2.0"
66 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
67 |
68 | async-each@^1.0.0:
69 | version "1.0.1"
70 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
71 |
72 | asynckit@^0.4.0:
73 | version "0.4.0"
74 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
75 |
76 | aws-sign2@~0.6.0:
77 | version "0.6.0"
78 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
79 |
80 | aws4@^1.2.1:
81 | version "1.6.0"
82 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
83 |
84 | babel-cli@^6.24.1:
85 | version "6.26.0"
86 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1"
87 | dependencies:
88 | babel-core "^6.26.0"
89 | babel-polyfill "^6.26.0"
90 | babel-register "^6.26.0"
91 | babel-runtime "^6.26.0"
92 | commander "^2.11.0"
93 | convert-source-map "^1.5.0"
94 | fs-readdir-recursive "^1.0.0"
95 | glob "^7.1.2"
96 | lodash "^4.17.4"
97 | output-file-sync "^1.1.2"
98 | path-is-absolute "^1.0.1"
99 | slash "^1.0.0"
100 | source-map "^0.5.6"
101 | v8flags "^2.1.1"
102 | optionalDependencies:
103 | chokidar "^1.6.1"
104 |
105 | babel-code-frame@^6.26.0:
106 | version "6.26.0"
107 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
108 | dependencies:
109 | chalk "^1.1.3"
110 | esutils "^2.0.2"
111 | js-tokens "^3.0.2"
112 |
113 | babel-core@^6.26.0, babel-core@^6.5.2:
114 | version "6.26.0"
115 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"
116 | dependencies:
117 | babel-code-frame "^6.26.0"
118 | babel-generator "^6.26.0"
119 | babel-helpers "^6.24.1"
120 | babel-messages "^6.23.0"
121 | babel-register "^6.26.0"
122 | babel-runtime "^6.26.0"
123 | babel-template "^6.26.0"
124 | babel-traverse "^6.26.0"
125 | babel-types "^6.26.0"
126 | babylon "^6.18.0"
127 | convert-source-map "^1.5.0"
128 | debug "^2.6.8"
129 | json5 "^0.5.1"
130 | lodash "^4.17.4"
131 | minimatch "^3.0.4"
132 | path-is-absolute "^1.0.1"
133 | private "^0.1.7"
134 | slash "^1.0.0"
135 | source-map "^0.5.6"
136 |
137 | babel-generator@^6.26.0:
138 | version "6.26.0"
139 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5"
140 | dependencies:
141 | babel-messages "^6.23.0"
142 | babel-runtime "^6.26.0"
143 | babel-types "^6.26.0"
144 | detect-indent "^4.0.0"
145 | jsesc "^1.3.0"
146 | lodash "^4.17.4"
147 | source-map "^0.5.6"
148 | trim-right "^1.0.1"
149 |
150 | babel-helper-builder-react-jsx@^6.24.1:
151 | version "6.26.0"
152 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0"
153 | dependencies:
154 | babel-runtime "^6.26.0"
155 | babel-types "^6.26.0"
156 | esutils "^2.0.2"
157 |
158 | babel-helper-call-delegate@^6.24.1:
159 | version "6.24.1"
160 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
161 | dependencies:
162 | babel-helper-hoist-variables "^6.24.1"
163 | babel-runtime "^6.22.0"
164 | babel-traverse "^6.24.1"
165 | babel-types "^6.24.1"
166 |
167 | babel-helper-define-map@^6.24.1:
168 | version "6.26.0"
169 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
170 | dependencies:
171 | babel-helper-function-name "^6.24.1"
172 | babel-runtime "^6.26.0"
173 | babel-types "^6.26.0"
174 | lodash "^4.17.4"
175 |
176 | babel-helper-function-name@^6.24.1:
177 | version "6.24.1"
178 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
179 | dependencies:
180 | babel-helper-get-function-arity "^6.24.1"
181 | babel-runtime "^6.22.0"
182 | babel-template "^6.24.1"
183 | babel-traverse "^6.24.1"
184 | babel-types "^6.24.1"
185 |
186 | babel-helper-get-function-arity@^6.24.1:
187 | version "6.24.1"
188 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
189 | dependencies:
190 | babel-runtime "^6.22.0"
191 | babel-types "^6.24.1"
192 |
193 | babel-helper-hoist-variables@^6.24.1:
194 | version "6.24.1"
195 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
196 | dependencies:
197 | babel-runtime "^6.22.0"
198 | babel-types "^6.24.1"
199 |
200 | babel-helper-optimise-call-expression@^6.24.1:
201 | version "6.24.1"
202 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
203 | dependencies:
204 | babel-runtime "^6.22.0"
205 | babel-types "^6.24.1"
206 |
207 | babel-helper-regex@^6.24.1:
208 | version "6.26.0"
209 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
210 | dependencies:
211 | babel-runtime "^6.26.0"
212 | babel-types "^6.26.0"
213 | lodash "^4.17.4"
214 |
215 | babel-helper-replace-supers@^6.24.1:
216 | version "6.24.1"
217 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
218 | dependencies:
219 | babel-helper-optimise-call-expression "^6.24.1"
220 | babel-messages "^6.23.0"
221 | babel-runtime "^6.22.0"
222 | babel-template "^6.24.1"
223 | babel-traverse "^6.24.1"
224 | babel-types "^6.24.1"
225 |
226 | babel-helpers@^6.24.1:
227 | version "6.24.1"
228 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
229 | dependencies:
230 | babel-runtime "^6.22.0"
231 | babel-template "^6.24.1"
232 |
233 | babel-messages@^6.23.0:
234 | version "6.23.0"
235 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
236 | dependencies:
237 | babel-runtime "^6.22.0"
238 |
239 | babel-plugin-check-es2015-constants@^6.22.0:
240 | version "6.22.0"
241 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
242 | dependencies:
243 | babel-runtime "^6.22.0"
244 |
245 | babel-plugin-syntax-class-properties@^6.8.0:
246 | version "6.13.0"
247 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
248 |
249 | babel-plugin-syntax-flow@^6.18.0:
250 | version "6.18.0"
251 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
252 |
253 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0:
254 | version "6.18.0"
255 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
256 |
257 | babel-plugin-syntax-object-rest-spread@^6.8.0:
258 | version "6.13.0"
259 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
260 |
261 | babel-plugin-transform-class-properties@^6.8.0:
262 | version "6.24.1"
263 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac"
264 | dependencies:
265 | babel-helper-function-name "^6.24.1"
266 | babel-plugin-syntax-class-properties "^6.8.0"
267 | babel-runtime "^6.22.0"
268 | babel-template "^6.24.1"
269 |
270 | babel-plugin-transform-es2015-arrow-functions@^6.22.0:
271 | version "6.22.0"
272 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
273 | dependencies:
274 | babel-runtime "^6.22.0"
275 |
276 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
277 | version "6.22.0"
278 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
279 | dependencies:
280 | babel-runtime "^6.22.0"
281 |
282 | babel-plugin-transform-es2015-block-scoping@^6.24.1:
283 | version "6.26.0"
284 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
285 | dependencies:
286 | babel-runtime "^6.26.0"
287 | babel-template "^6.26.0"
288 | babel-traverse "^6.26.0"
289 | babel-types "^6.26.0"
290 | lodash "^4.17.4"
291 |
292 | babel-plugin-transform-es2015-classes@^6.24.1:
293 | version "6.24.1"
294 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
295 | dependencies:
296 | babel-helper-define-map "^6.24.1"
297 | babel-helper-function-name "^6.24.1"
298 | babel-helper-optimise-call-expression "^6.24.1"
299 | babel-helper-replace-supers "^6.24.1"
300 | babel-messages "^6.23.0"
301 | babel-runtime "^6.22.0"
302 | babel-template "^6.24.1"
303 | babel-traverse "^6.24.1"
304 | babel-types "^6.24.1"
305 |
306 | babel-plugin-transform-es2015-computed-properties@^6.24.1:
307 | version "6.24.1"
308 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
309 | dependencies:
310 | babel-runtime "^6.22.0"
311 | babel-template "^6.24.1"
312 |
313 | babel-plugin-transform-es2015-destructuring@^6.22.0:
314 | version "6.23.0"
315 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
316 | dependencies:
317 | babel-runtime "^6.22.0"
318 |
319 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1:
320 | version "6.24.1"
321 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
322 | dependencies:
323 | babel-runtime "^6.22.0"
324 | babel-types "^6.24.1"
325 |
326 | babel-plugin-transform-es2015-for-of@^6.22.0:
327 | version "6.23.0"
328 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
329 | dependencies:
330 | babel-runtime "^6.22.0"
331 |
332 | babel-plugin-transform-es2015-function-name@^6.24.1:
333 | version "6.24.1"
334 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
335 | dependencies:
336 | babel-helper-function-name "^6.24.1"
337 | babel-runtime "^6.22.0"
338 | babel-types "^6.24.1"
339 |
340 | babel-plugin-transform-es2015-literals@^6.22.0:
341 | version "6.22.0"
342 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
343 | dependencies:
344 | babel-runtime "^6.22.0"
345 |
346 | babel-plugin-transform-es2015-modules-amd@^6.24.1:
347 | version "6.24.1"
348 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
349 | dependencies:
350 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
351 | babel-runtime "^6.22.0"
352 | babel-template "^6.24.1"
353 |
354 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
355 | version "6.26.0"
356 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a"
357 | dependencies:
358 | babel-plugin-transform-strict-mode "^6.24.1"
359 | babel-runtime "^6.26.0"
360 | babel-template "^6.26.0"
361 | babel-types "^6.26.0"
362 |
363 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
364 | version "6.24.1"
365 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
366 | dependencies:
367 | babel-helper-hoist-variables "^6.24.1"
368 | babel-runtime "^6.22.0"
369 | babel-template "^6.24.1"
370 |
371 | babel-plugin-transform-es2015-modules-umd@^6.24.1:
372 | version "6.24.1"
373 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
374 | dependencies:
375 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
376 | babel-runtime "^6.22.0"
377 | babel-template "^6.24.1"
378 |
379 | babel-plugin-transform-es2015-object-super@^6.24.1:
380 | version "6.24.1"
381 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
382 | dependencies:
383 | babel-helper-replace-supers "^6.24.1"
384 | babel-runtime "^6.22.0"
385 |
386 | babel-plugin-transform-es2015-parameters@^6.24.1:
387 | version "6.24.1"
388 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
389 | dependencies:
390 | babel-helper-call-delegate "^6.24.1"
391 | babel-helper-get-function-arity "^6.24.1"
392 | babel-runtime "^6.22.0"
393 | babel-template "^6.24.1"
394 | babel-traverse "^6.24.1"
395 | babel-types "^6.24.1"
396 |
397 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1:
398 | version "6.24.1"
399 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
400 | dependencies:
401 | babel-runtime "^6.22.0"
402 | babel-types "^6.24.1"
403 |
404 | babel-plugin-transform-es2015-spread@^6.22.0:
405 | version "6.22.0"
406 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
407 | dependencies:
408 | babel-runtime "^6.22.0"
409 |
410 | babel-plugin-transform-es2015-sticky-regex@^6.24.1:
411 | version "6.24.1"
412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
413 | dependencies:
414 | babel-helper-regex "^6.24.1"
415 | babel-runtime "^6.22.0"
416 | babel-types "^6.24.1"
417 |
418 | babel-plugin-transform-es2015-template-literals@^6.22.0:
419 | version "6.22.0"
420 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
421 | dependencies:
422 | babel-runtime "^6.22.0"
423 |
424 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0:
425 | version "6.23.0"
426 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
427 | dependencies:
428 | babel-runtime "^6.22.0"
429 |
430 | babel-plugin-transform-es2015-unicode-regex@^6.24.1:
431 | version "6.24.1"
432 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
433 | dependencies:
434 | babel-helper-regex "^6.24.1"
435 | babel-runtime "^6.22.0"
436 | regexpu-core "^2.0.0"
437 |
438 | babel-plugin-transform-flow-strip-types@^6.22.0:
439 | version "6.22.0"
440 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
441 | dependencies:
442 | babel-plugin-syntax-flow "^6.18.0"
443 | babel-runtime "^6.22.0"
444 |
445 | babel-plugin-transform-object-rest-spread@^6.8.0:
446 | version "6.26.0"
447 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06"
448 | dependencies:
449 | babel-plugin-syntax-object-rest-spread "^6.8.0"
450 | babel-runtime "^6.26.0"
451 |
452 | babel-plugin-transform-react-display-name@^6.23.0:
453 | version "6.25.0"
454 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1"
455 | dependencies:
456 | babel-runtime "^6.22.0"
457 |
458 | babel-plugin-transform-react-jsx-self@^6.22.0:
459 | version "6.22.0"
460 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e"
461 | dependencies:
462 | babel-plugin-syntax-jsx "^6.8.0"
463 | babel-runtime "^6.22.0"
464 |
465 | babel-plugin-transform-react-jsx-source@^6.22.0:
466 | version "6.22.0"
467 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6"
468 | dependencies:
469 | babel-plugin-syntax-jsx "^6.8.0"
470 | babel-runtime "^6.22.0"
471 |
472 | babel-plugin-transform-react-jsx@^6.24.1:
473 | version "6.24.1"
474 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3"
475 | dependencies:
476 | babel-helper-builder-react-jsx "^6.24.1"
477 | babel-plugin-syntax-jsx "^6.8.0"
478 | babel-runtime "^6.22.0"
479 |
480 | babel-plugin-transform-regenerator@^6.24.1:
481 | version "6.26.0"
482 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
483 | dependencies:
484 | regenerator-transform "^0.10.0"
485 |
486 | babel-plugin-transform-strict-mode@^6.24.1:
487 | version "6.24.1"
488 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
489 | dependencies:
490 | babel-runtime "^6.22.0"
491 | babel-types "^6.24.1"
492 |
493 | babel-polyfill@^6.26.0:
494 | version "6.26.0"
495 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153"
496 | dependencies:
497 | babel-runtime "^6.26.0"
498 | core-js "^2.5.0"
499 | regenerator-runtime "^0.10.5"
500 |
501 | babel-preset-es2015@^6.24.1:
502 | version "6.24.1"
503 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939"
504 | dependencies:
505 | babel-plugin-check-es2015-constants "^6.22.0"
506 | babel-plugin-transform-es2015-arrow-functions "^6.22.0"
507 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
508 | babel-plugin-transform-es2015-block-scoping "^6.24.1"
509 | babel-plugin-transform-es2015-classes "^6.24.1"
510 | babel-plugin-transform-es2015-computed-properties "^6.24.1"
511 | babel-plugin-transform-es2015-destructuring "^6.22.0"
512 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1"
513 | babel-plugin-transform-es2015-for-of "^6.22.0"
514 | babel-plugin-transform-es2015-function-name "^6.24.1"
515 | babel-plugin-transform-es2015-literals "^6.22.0"
516 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
517 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
518 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1"
519 | babel-plugin-transform-es2015-modules-umd "^6.24.1"
520 | babel-plugin-transform-es2015-object-super "^6.24.1"
521 | babel-plugin-transform-es2015-parameters "^6.24.1"
522 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1"
523 | babel-plugin-transform-es2015-spread "^6.22.0"
524 | babel-plugin-transform-es2015-sticky-regex "^6.24.1"
525 | babel-plugin-transform-es2015-template-literals "^6.22.0"
526 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0"
527 | babel-plugin-transform-es2015-unicode-regex "^6.24.1"
528 | babel-plugin-transform-regenerator "^6.24.1"
529 |
530 | babel-preset-flow@^6.23.0:
531 | version "6.23.0"
532 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d"
533 | dependencies:
534 | babel-plugin-transform-flow-strip-types "^6.22.0"
535 |
536 | babel-preset-react@^6.24.1:
537 | version "6.24.1"
538 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380"
539 | dependencies:
540 | babel-plugin-syntax-jsx "^6.3.13"
541 | babel-plugin-transform-react-display-name "^6.23.0"
542 | babel-plugin-transform-react-jsx "^6.24.1"
543 | babel-plugin-transform-react-jsx-self "^6.22.0"
544 | babel-plugin-transform-react-jsx-source "^6.22.0"
545 | babel-preset-flow "^6.23.0"
546 |
547 | babel-register@^6.26.0:
548 | version "6.26.0"
549 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
550 | dependencies:
551 | babel-core "^6.26.0"
552 | babel-runtime "^6.26.0"
553 | core-js "^2.5.0"
554 | home-or-tmp "^2.0.0"
555 | lodash "^4.17.4"
556 | mkdirp "^0.5.1"
557 | source-map-support "^0.4.15"
558 |
559 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
560 | version "6.26.0"
561 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
562 | dependencies:
563 | core-js "^2.4.0"
564 | regenerator-runtime "^0.11.0"
565 |
566 | babel-template@^6.24.1, babel-template@^6.26.0:
567 | version "6.26.0"
568 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
569 | dependencies:
570 | babel-runtime "^6.26.0"
571 | babel-traverse "^6.26.0"
572 | babel-types "^6.26.0"
573 | babylon "^6.18.0"
574 | lodash "^4.17.4"
575 |
576 | babel-traverse@^6.24.1, babel-traverse@^6.26.0:
577 | version "6.26.0"
578 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
579 | dependencies:
580 | babel-code-frame "^6.26.0"
581 | babel-messages "^6.23.0"
582 | babel-runtime "^6.26.0"
583 | babel-types "^6.26.0"
584 | babylon "^6.18.0"
585 | debug "^2.6.8"
586 | globals "^9.18.0"
587 | invariant "^2.2.2"
588 | lodash "^4.17.4"
589 |
590 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0:
591 | version "6.26.0"
592 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
593 | dependencies:
594 | babel-runtime "^6.26.0"
595 | esutils "^2.0.2"
596 | lodash "^4.17.4"
597 | to-fast-properties "^1.0.3"
598 |
599 | babylon@^6.18.0:
600 | version "6.18.0"
601 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
602 |
603 | balanced-match@^1.0.0:
604 | version "1.0.0"
605 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
606 |
607 | bcrypt-pbkdf@^1.0.0:
608 | version "1.0.1"
609 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
610 | dependencies:
611 | tweetnacl "^0.14.3"
612 |
613 | binary-extensions@^1.0.0:
614 | version "1.11.0"
615 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205"
616 |
617 | block-stream@*:
618 | version "0.0.9"
619 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
620 | dependencies:
621 | inherits "~2.0.0"
622 |
623 | boom@2.x.x:
624 | version "2.10.1"
625 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
626 | dependencies:
627 | hoek "2.x.x"
628 |
629 | brace-expansion@^1.1.7:
630 | version "1.1.8"
631 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
632 | dependencies:
633 | balanced-match "^1.0.0"
634 | concat-map "0.0.1"
635 |
636 | braces@^1.8.2:
637 | version "1.8.5"
638 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
639 | dependencies:
640 | expand-range "^1.8.1"
641 | preserve "^0.2.0"
642 | repeat-element "^1.1.2"
643 |
644 | caseless@~0.12.0:
645 | version "0.12.0"
646 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
647 |
648 | chalk@^1.1.3:
649 | version "1.1.3"
650 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
651 | dependencies:
652 | ansi-styles "^2.2.1"
653 | escape-string-regexp "^1.0.2"
654 | has-ansi "^2.0.0"
655 | strip-ansi "^3.0.0"
656 | supports-color "^2.0.0"
657 |
658 | chokidar@^1.6.1:
659 | version "1.7.0"
660 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
661 | dependencies:
662 | anymatch "^1.3.0"
663 | async-each "^1.0.0"
664 | glob-parent "^2.0.0"
665 | inherits "^2.0.1"
666 | is-binary-path "^1.0.0"
667 | is-glob "^2.0.0"
668 | path-is-absolute "^1.0.0"
669 | readdirp "^2.0.0"
670 | optionalDependencies:
671 | fsevents "^1.0.0"
672 |
673 | co@^4.6.0:
674 | version "4.6.0"
675 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
676 |
677 | code-point-at@^1.0.0:
678 | version "1.1.0"
679 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
680 |
681 | combined-stream@^1.0.5, combined-stream@~1.0.5:
682 | version "1.0.5"
683 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
684 | dependencies:
685 | delayed-stream "~1.0.0"
686 |
687 | commander@^2.11.0:
688 | version "2.13.0"
689 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c"
690 |
691 | concat-map@0.0.1:
692 | version "0.0.1"
693 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
694 |
695 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
696 | version "1.1.0"
697 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
698 |
699 | convert-source-map@^1.5.0:
700 | version "1.5.1"
701 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5"
702 |
703 | core-js@^2.4.0, core-js@^2.5.0:
704 | version "2.5.3"
705 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e"
706 |
707 | core-util-is@1.0.2, core-util-is@~1.0.0:
708 | version "1.0.2"
709 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
710 |
711 | cryptiles@2.x.x:
712 | version "2.0.5"
713 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
714 | dependencies:
715 | boom "2.x.x"
716 |
717 | dashdash@^1.12.0:
718 | version "1.14.1"
719 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
720 | dependencies:
721 | assert-plus "^1.0.0"
722 |
723 | debug@^2.2.0, debug@^2.6.8:
724 | version "2.6.9"
725 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
726 | dependencies:
727 | ms "2.0.0"
728 |
729 | deep-extend@~0.4.0:
730 | version "0.4.2"
731 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
732 |
733 | delayed-stream@~1.0.0:
734 | version "1.0.0"
735 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
736 |
737 | delegates@^1.0.0:
738 | version "1.0.0"
739 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
740 |
741 | detect-indent@^4.0.0:
742 | version "4.0.0"
743 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
744 | dependencies:
745 | repeating "^2.0.0"
746 |
747 | detect-libc@^1.0.2:
748 | version "1.0.3"
749 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
750 |
751 | ecc-jsbn@~0.1.1:
752 | version "0.1.1"
753 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
754 | dependencies:
755 | jsbn "~0.1.0"
756 |
757 | escape-string-regexp@^1.0.2:
758 | version "1.0.5"
759 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
760 |
761 | esutils@^2.0.2:
762 | version "2.0.2"
763 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
764 |
765 | expand-brackets@^0.1.4:
766 | version "0.1.5"
767 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
768 | dependencies:
769 | is-posix-bracket "^0.1.0"
770 |
771 | expand-range@^1.8.1:
772 | version "1.8.2"
773 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
774 | dependencies:
775 | fill-range "^2.1.0"
776 |
777 | extend@~3.0.0:
778 | version "3.0.1"
779 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
780 |
781 | extglob@^0.3.1:
782 | version "0.3.2"
783 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
784 | dependencies:
785 | is-extglob "^1.0.0"
786 |
787 | extsprintf@1.3.0:
788 | version "1.3.0"
789 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
790 |
791 | extsprintf@^1.2.0:
792 | version "1.4.0"
793 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
794 |
795 | filename-regex@^2.0.0:
796 | version "2.0.1"
797 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
798 |
799 | fill-range@^2.1.0:
800 | version "2.2.3"
801 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
802 | dependencies:
803 | is-number "^2.1.0"
804 | isobject "^2.0.0"
805 | randomatic "^1.1.3"
806 | repeat-element "^1.1.2"
807 | repeat-string "^1.5.2"
808 |
809 | for-in@^1.0.1:
810 | version "1.0.2"
811 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
812 |
813 | for-own@^0.1.4:
814 | version "0.1.5"
815 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
816 | dependencies:
817 | for-in "^1.0.1"
818 |
819 | forever-agent@~0.6.1:
820 | version "0.6.1"
821 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
822 |
823 | form-data@~2.1.1:
824 | version "2.1.4"
825 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
826 | dependencies:
827 | asynckit "^0.4.0"
828 | combined-stream "^1.0.5"
829 | mime-types "^2.1.12"
830 |
831 | fs-readdir-recursive@^1.0.0:
832 | version "1.1.0"
833 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27"
834 |
835 | fs.realpath@^1.0.0:
836 | version "1.0.0"
837 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
838 |
839 | fsevents@^1.0.0:
840 | version "1.1.3"
841 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8"
842 | dependencies:
843 | nan "^2.3.0"
844 | node-pre-gyp "^0.6.39"
845 |
846 | fstream-ignore@^1.0.5:
847 | version "1.0.5"
848 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
849 | dependencies:
850 | fstream "^1.0.0"
851 | inherits "2"
852 | minimatch "^3.0.0"
853 |
854 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
855 | version "1.0.11"
856 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
857 | dependencies:
858 | graceful-fs "^4.1.2"
859 | inherits "~2.0.0"
860 | mkdirp ">=0.5 0"
861 | rimraf "2"
862 |
863 | gauge@~2.7.3:
864 | version "2.7.4"
865 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
866 | dependencies:
867 | aproba "^1.0.3"
868 | console-control-strings "^1.0.0"
869 | has-unicode "^2.0.0"
870 | object-assign "^4.1.0"
871 | signal-exit "^3.0.0"
872 | string-width "^1.0.1"
873 | strip-ansi "^3.0.1"
874 | wide-align "^1.1.0"
875 |
876 | getpass@^0.1.1:
877 | version "0.1.7"
878 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
879 | dependencies:
880 | assert-plus "^1.0.0"
881 |
882 | glob-base@^0.3.0:
883 | version "0.3.0"
884 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
885 | dependencies:
886 | glob-parent "^2.0.0"
887 | is-glob "^2.0.0"
888 |
889 | glob-parent@^2.0.0:
890 | version "2.0.0"
891 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
892 | dependencies:
893 | is-glob "^2.0.0"
894 |
895 | glob@^7.0.5, glob@^7.1.2:
896 | version "7.1.2"
897 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
898 | dependencies:
899 | fs.realpath "^1.0.0"
900 | inflight "^1.0.4"
901 | inherits "2"
902 | minimatch "^3.0.4"
903 | once "^1.3.0"
904 | path-is-absolute "^1.0.0"
905 |
906 | globals@^9.18.0:
907 | version "9.18.0"
908 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
909 |
910 | graceful-fs@^4.1.2, graceful-fs@^4.1.4:
911 | version "4.1.11"
912 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
913 |
914 | har-schema@^1.0.5:
915 | version "1.0.5"
916 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
917 |
918 | har-validator@~4.2.1:
919 | version "4.2.1"
920 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
921 | dependencies:
922 | ajv "^4.9.1"
923 | har-schema "^1.0.5"
924 |
925 | has-ansi@^2.0.0:
926 | version "2.0.0"
927 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
928 | dependencies:
929 | ansi-regex "^2.0.0"
930 |
931 | has-unicode@^2.0.0:
932 | version "2.0.1"
933 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
934 |
935 | hawk@3.1.3, hawk@~3.1.3:
936 | version "3.1.3"
937 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
938 | dependencies:
939 | boom "2.x.x"
940 | cryptiles "2.x.x"
941 | hoek "2.x.x"
942 | sntp "1.x.x"
943 |
944 | hoek@2.x.x:
945 | version "2.16.3"
946 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
947 |
948 | home-or-tmp@^2.0.0:
949 | version "2.0.0"
950 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
951 | dependencies:
952 | os-homedir "^1.0.0"
953 | os-tmpdir "^1.0.1"
954 |
955 | http-signature@~1.1.0:
956 | version "1.1.1"
957 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
958 | dependencies:
959 | assert-plus "^0.2.0"
960 | jsprim "^1.2.2"
961 | sshpk "^1.7.0"
962 |
963 | inflight@^1.0.4:
964 | version "1.0.6"
965 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
966 | dependencies:
967 | once "^1.3.0"
968 | wrappy "1"
969 |
970 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3:
971 | version "2.0.3"
972 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
973 |
974 | ini@~1.3.0:
975 | version "1.3.5"
976 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
977 |
978 | invariant@^2.2.2:
979 | version "2.2.2"
980 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
981 | dependencies:
982 | loose-envify "^1.0.0"
983 |
984 | is-binary-path@^1.0.0:
985 | version "1.0.1"
986 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
987 | dependencies:
988 | binary-extensions "^1.0.0"
989 |
990 | is-buffer@^1.1.5:
991 | version "1.1.6"
992 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
993 |
994 | is-dotfile@^1.0.0:
995 | version "1.0.3"
996 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
997 |
998 | is-equal-shallow@^0.1.3:
999 | version "0.1.3"
1000 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1001 | dependencies:
1002 | is-primitive "^2.0.0"
1003 |
1004 | is-extendable@^0.1.1:
1005 | version "0.1.1"
1006 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1007 |
1008 | is-extglob@^1.0.0:
1009 | version "1.0.0"
1010 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1011 |
1012 | is-finite@^1.0.0:
1013 | version "1.0.2"
1014 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1015 | dependencies:
1016 | number-is-nan "^1.0.0"
1017 |
1018 | is-fullwidth-code-point@^1.0.0:
1019 | version "1.0.0"
1020 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1021 | dependencies:
1022 | number-is-nan "^1.0.0"
1023 |
1024 | is-glob@^2.0.0, is-glob@^2.0.1:
1025 | version "2.0.1"
1026 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1027 | dependencies:
1028 | is-extglob "^1.0.0"
1029 |
1030 | is-number@^2.1.0:
1031 | version "2.1.0"
1032 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1033 | dependencies:
1034 | kind-of "^3.0.2"
1035 |
1036 | is-number@^3.0.0:
1037 | version "3.0.0"
1038 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1039 | dependencies:
1040 | kind-of "^3.0.2"
1041 |
1042 | is-posix-bracket@^0.1.0:
1043 | version "0.1.1"
1044 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1045 |
1046 | is-primitive@^2.0.0:
1047 | version "2.0.0"
1048 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1049 |
1050 | is-typedarray@~1.0.0:
1051 | version "1.0.0"
1052 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1053 |
1054 | isarray@1.0.0, isarray@~1.0.0:
1055 | version "1.0.0"
1056 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1057 |
1058 | isobject@^2.0.0:
1059 | version "2.1.0"
1060 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1061 | dependencies:
1062 | isarray "1.0.0"
1063 |
1064 | isstream@~0.1.2:
1065 | version "0.1.2"
1066 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1067 |
1068 | js-tokens@^3.0.0, js-tokens@^3.0.2:
1069 | version "3.0.2"
1070 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
1071 |
1072 | jsbn@~0.1.0:
1073 | version "0.1.1"
1074 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
1075 |
1076 | jsesc@^1.3.0:
1077 | version "1.3.0"
1078 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
1079 |
1080 | jsesc@~0.5.0:
1081 | version "0.5.0"
1082 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
1083 |
1084 | json-schema@0.2.3:
1085 | version "0.2.3"
1086 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1087 |
1088 | json-stable-stringify@^1.0.1:
1089 | version "1.0.1"
1090 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1091 | dependencies:
1092 | jsonify "~0.0.0"
1093 |
1094 | json-stringify-safe@~5.0.1:
1095 | version "5.0.1"
1096 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1097 |
1098 | json5@^0.5.1:
1099 | version "0.5.1"
1100 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
1101 |
1102 | jsonify@~0.0.0:
1103 | version "0.0.0"
1104 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1105 |
1106 | jsprim@^1.2.2:
1107 | version "1.4.1"
1108 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
1109 | dependencies:
1110 | assert-plus "1.0.0"
1111 | extsprintf "1.3.0"
1112 | json-schema "0.2.3"
1113 | verror "1.10.0"
1114 |
1115 | kind-of@^3.0.2:
1116 | version "3.2.2"
1117 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1118 | dependencies:
1119 | is-buffer "^1.1.5"
1120 |
1121 | kind-of@^4.0.0:
1122 | version "4.0.0"
1123 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
1124 | dependencies:
1125 | is-buffer "^1.1.5"
1126 |
1127 | lodash@^4.17.4:
1128 | version "4.17.4"
1129 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
1130 |
1131 | loose-envify@^1.0.0:
1132 | version "1.3.1"
1133 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
1134 | dependencies:
1135 | js-tokens "^3.0.0"
1136 |
1137 | micromatch@^2.1.5:
1138 | version "2.3.11"
1139 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
1140 | dependencies:
1141 | arr-diff "^2.0.0"
1142 | array-unique "^0.2.1"
1143 | braces "^1.8.2"
1144 | expand-brackets "^0.1.4"
1145 | extglob "^0.3.1"
1146 | filename-regex "^2.0.0"
1147 | is-extglob "^1.0.0"
1148 | is-glob "^2.0.1"
1149 | kind-of "^3.0.2"
1150 | normalize-path "^2.0.1"
1151 | object.omit "^2.0.0"
1152 | parse-glob "^3.0.4"
1153 | regex-cache "^0.4.2"
1154 |
1155 | mime-db@~1.30.0:
1156 | version "1.30.0"
1157 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01"
1158 |
1159 | mime-types@^2.1.12, mime-types@~2.1.7:
1160 | version "2.1.17"
1161 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a"
1162 | dependencies:
1163 | mime-db "~1.30.0"
1164 |
1165 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4:
1166 | version "3.0.4"
1167 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1168 | dependencies:
1169 | brace-expansion "^1.1.7"
1170 |
1171 | minimist@0.0.8:
1172 | version "0.0.8"
1173 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1174 |
1175 | minimist@^1.2.0:
1176 | version "1.2.0"
1177 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1178 |
1179 | "mkdirp@>=0.5 0", mkdirp@^0.5.1:
1180 | version "0.5.1"
1181 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1182 | dependencies:
1183 | minimist "0.0.8"
1184 |
1185 | ms@2.0.0:
1186 | version "2.0.0"
1187 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1188 |
1189 | nan@^2.3.0:
1190 | version "2.8.0"
1191 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a"
1192 |
1193 | node-pre-gyp@^0.6.39:
1194 | version "0.6.39"
1195 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649"
1196 | dependencies:
1197 | detect-libc "^1.0.2"
1198 | hawk "3.1.3"
1199 | mkdirp "^0.5.1"
1200 | nopt "^4.0.1"
1201 | npmlog "^4.0.2"
1202 | rc "^1.1.7"
1203 | request "2.81.0"
1204 | rimraf "^2.6.1"
1205 | semver "^5.3.0"
1206 | tar "^2.2.1"
1207 | tar-pack "^3.4.0"
1208 |
1209 | nopt@^4.0.1:
1210 | version "4.0.1"
1211 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
1212 | dependencies:
1213 | abbrev "1"
1214 | osenv "^0.1.4"
1215 |
1216 | normalize-path@^2.0.0, normalize-path@^2.0.1:
1217 | version "2.1.1"
1218 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
1219 | dependencies:
1220 | remove-trailing-separator "^1.0.1"
1221 |
1222 | npmlog@^4.0.2:
1223 | version "4.1.2"
1224 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
1225 | dependencies:
1226 | are-we-there-yet "~1.1.2"
1227 | console-control-strings "~1.1.0"
1228 | gauge "~2.7.3"
1229 | set-blocking "~2.0.0"
1230 |
1231 | number-is-nan@^1.0.0:
1232 | version "1.0.1"
1233 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
1234 |
1235 | oauth-sign@~0.8.1:
1236 | version "0.8.2"
1237 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
1238 |
1239 | object-assign@^4.1.0:
1240 | version "4.1.1"
1241 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1242 |
1243 | object.omit@^2.0.0:
1244 | version "2.0.1"
1245 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
1246 | dependencies:
1247 | for-own "^0.1.4"
1248 | is-extendable "^0.1.1"
1249 |
1250 | once@^1.3.0, once@^1.3.3:
1251 | version "1.4.0"
1252 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1253 | dependencies:
1254 | wrappy "1"
1255 |
1256 | os-homedir@^1.0.0:
1257 | version "1.0.2"
1258 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
1259 |
1260 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1:
1261 | version "1.0.2"
1262 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
1263 |
1264 | osenv@^0.1.4:
1265 | version "0.1.4"
1266 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
1267 | dependencies:
1268 | os-homedir "^1.0.0"
1269 | os-tmpdir "^1.0.0"
1270 |
1271 | output-file-sync@^1.1.2:
1272 | version "1.1.2"
1273 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76"
1274 | dependencies:
1275 | graceful-fs "^4.1.4"
1276 | mkdirp "^0.5.1"
1277 | object-assign "^4.1.0"
1278 |
1279 | parse-glob@^3.0.4:
1280 | version "3.0.4"
1281 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
1282 | dependencies:
1283 | glob-base "^0.3.0"
1284 | is-dotfile "^1.0.0"
1285 | is-extglob "^1.0.0"
1286 | is-glob "^2.0.0"
1287 |
1288 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
1289 | version "1.0.1"
1290 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1291 |
1292 | performance-now@^0.2.0:
1293 | version "0.2.0"
1294 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
1295 |
1296 | preserve@^0.2.0:
1297 | version "0.2.0"
1298 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
1299 |
1300 | private@^0.1.6, private@^0.1.7:
1301 | version "0.1.8"
1302 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
1303 |
1304 | process-nextick-args@~1.0.6:
1305 | version "1.0.7"
1306 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
1307 |
1308 | punycode@^1.4.1:
1309 | version "1.4.1"
1310 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
1311 |
1312 | qs@~6.4.0:
1313 | version "6.4.0"
1314 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
1315 |
1316 | randomatic@^1.1.3:
1317 | version "1.1.7"
1318 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
1319 | dependencies:
1320 | is-number "^3.0.0"
1321 | kind-of "^4.0.0"
1322 |
1323 | rc@^1.1.7:
1324 | version "1.2.4"
1325 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.4.tgz#a0f606caae2a3b862bbd0ef85482c0125b315fa3"
1326 | dependencies:
1327 | deep-extend "~0.4.0"
1328 | ini "~1.3.0"
1329 | minimist "^1.2.0"
1330 | strip-json-comments "~2.0.1"
1331 |
1332 | react-is@^16.4.2:
1333 | version "16.4.2"
1334 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.4.2.tgz#84891b56c2b6d9efdee577cc83501dfc5ecead88"
1335 |
1336 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4:
1337 | version "2.3.3"
1338 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
1339 | dependencies:
1340 | core-util-is "~1.0.0"
1341 | inherits "~2.0.3"
1342 | isarray "~1.0.0"
1343 | process-nextick-args "~1.0.6"
1344 | safe-buffer "~5.1.1"
1345 | string_decoder "~1.0.3"
1346 | util-deprecate "~1.0.1"
1347 |
1348 | readdirp@^2.0.0:
1349 | version "2.1.0"
1350 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
1351 | dependencies:
1352 | graceful-fs "^4.1.2"
1353 | minimatch "^3.0.2"
1354 | readable-stream "^2.0.2"
1355 | set-immediate-shim "^1.0.1"
1356 |
1357 | regenerate@^1.2.1:
1358 | version "1.3.3"
1359 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f"
1360 |
1361 | regenerator-runtime@^0.10.5:
1362 | version "0.10.5"
1363 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
1364 |
1365 | regenerator-runtime@^0.11.0:
1366 | version "0.11.1"
1367 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
1368 |
1369 | regenerator-transform@^0.10.0:
1370 | version "0.10.1"
1371 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
1372 | dependencies:
1373 | babel-runtime "^6.18.0"
1374 | babel-types "^6.19.0"
1375 | private "^0.1.6"
1376 |
1377 | regex-cache@^0.4.2:
1378 | version "0.4.4"
1379 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
1380 | dependencies:
1381 | is-equal-shallow "^0.1.3"
1382 |
1383 | regexpu-core@^2.0.0:
1384 | version "2.0.0"
1385 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
1386 | dependencies:
1387 | regenerate "^1.2.1"
1388 | regjsgen "^0.2.0"
1389 | regjsparser "^0.1.4"
1390 |
1391 | regjsgen@^0.2.0:
1392 | version "0.2.0"
1393 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
1394 |
1395 | regjsparser@^0.1.4:
1396 | version "0.1.5"
1397 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
1398 | dependencies:
1399 | jsesc "~0.5.0"
1400 |
1401 | remove-trailing-separator@^1.0.1:
1402 | version "1.1.0"
1403 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
1404 |
1405 | repeat-element@^1.1.2:
1406 | version "1.1.2"
1407 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
1408 |
1409 | repeat-string@^1.5.2:
1410 | version "1.6.1"
1411 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
1412 |
1413 | repeating@^2.0.0:
1414 | version "2.0.1"
1415 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
1416 | dependencies:
1417 | is-finite "^1.0.0"
1418 |
1419 | request@2.81.0:
1420 | version "2.81.0"
1421 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
1422 | dependencies:
1423 | aws-sign2 "~0.6.0"
1424 | aws4 "^1.2.1"
1425 | caseless "~0.12.0"
1426 | combined-stream "~1.0.5"
1427 | extend "~3.0.0"
1428 | forever-agent "~0.6.1"
1429 | form-data "~2.1.1"
1430 | har-validator "~4.2.1"
1431 | hawk "~3.1.3"
1432 | http-signature "~1.1.0"
1433 | is-typedarray "~1.0.0"
1434 | isstream "~0.1.2"
1435 | json-stringify-safe "~5.0.1"
1436 | mime-types "~2.1.7"
1437 | oauth-sign "~0.8.1"
1438 | performance-now "^0.2.0"
1439 | qs "~6.4.0"
1440 | safe-buffer "^5.0.1"
1441 | stringstream "~0.0.4"
1442 | tough-cookie "~2.3.0"
1443 | tunnel-agent "^0.6.0"
1444 | uuid "^3.0.0"
1445 |
1446 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1:
1447 | version "2.6.2"
1448 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
1449 | dependencies:
1450 | glob "^7.0.5"
1451 |
1452 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
1453 | version "5.1.1"
1454 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
1455 |
1456 | semver@^5.3.0:
1457 | version "5.5.0"
1458 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
1459 |
1460 | set-blocking@~2.0.0:
1461 | version "2.0.0"
1462 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
1463 |
1464 | set-immediate-shim@^1.0.1:
1465 | version "1.0.1"
1466 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
1467 |
1468 | signal-exit@^3.0.0:
1469 | version "3.0.2"
1470 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
1471 |
1472 | slash@^1.0.0:
1473 | version "1.0.0"
1474 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
1475 |
1476 | sntp@1.x.x:
1477 | version "1.0.9"
1478 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
1479 | dependencies:
1480 | hoek "2.x.x"
1481 |
1482 | source-map-support@^0.4.15:
1483 | version "0.4.18"
1484 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
1485 | dependencies:
1486 | source-map "^0.5.6"
1487 |
1488 | source-map@^0.5.6:
1489 | version "0.5.7"
1490 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
1491 |
1492 | sshpk@^1.7.0:
1493 | version "1.13.1"
1494 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
1495 | dependencies:
1496 | asn1 "~0.2.3"
1497 | assert-plus "^1.0.0"
1498 | dashdash "^1.12.0"
1499 | getpass "^0.1.1"
1500 | optionalDependencies:
1501 | bcrypt-pbkdf "^1.0.0"
1502 | ecc-jsbn "~0.1.1"
1503 | jsbn "~0.1.0"
1504 | tweetnacl "~0.14.0"
1505 |
1506 | string-width@^1.0.1, string-width@^1.0.2:
1507 | version "1.0.2"
1508 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
1509 | dependencies:
1510 | code-point-at "^1.0.0"
1511 | is-fullwidth-code-point "^1.0.0"
1512 | strip-ansi "^3.0.0"
1513 |
1514 | string_decoder@~1.0.3:
1515 | version "1.0.3"
1516 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
1517 | dependencies:
1518 | safe-buffer "~5.1.0"
1519 |
1520 | stringstream@~0.0.4:
1521 | version "0.0.5"
1522 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
1523 |
1524 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
1525 | version "3.0.1"
1526 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
1527 | dependencies:
1528 | ansi-regex "^2.0.0"
1529 |
1530 | strip-json-comments@~2.0.1:
1531 | version "2.0.1"
1532 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
1533 |
1534 | supports-color@^2.0.0:
1535 | version "2.0.0"
1536 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
1537 |
1538 | tar-pack@^3.4.0:
1539 | version "3.4.1"
1540 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f"
1541 | dependencies:
1542 | debug "^2.2.0"
1543 | fstream "^1.0.10"
1544 | fstream-ignore "^1.0.5"
1545 | once "^1.3.3"
1546 | readable-stream "^2.1.4"
1547 | rimraf "^2.5.1"
1548 | tar "^2.2.1"
1549 | uid-number "^0.0.6"
1550 |
1551 | tar@^2.2.1:
1552 | version "2.2.1"
1553 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
1554 | dependencies:
1555 | block-stream "*"
1556 | fstream "^1.0.2"
1557 | inherits "2"
1558 |
1559 | to-fast-properties@^1.0.3:
1560 | version "1.0.3"
1561 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
1562 |
1563 | tough-cookie@~2.3.0:
1564 | version "2.3.3"
1565 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561"
1566 | dependencies:
1567 | punycode "^1.4.1"
1568 |
1569 | trim-right@^1.0.1:
1570 | version "1.0.1"
1571 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
1572 |
1573 | tunnel-agent@^0.6.0:
1574 | version "0.6.0"
1575 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
1576 | dependencies:
1577 | safe-buffer "^5.0.1"
1578 |
1579 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
1580 | version "0.14.5"
1581 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
1582 |
1583 | uid-number@^0.0.6:
1584 | version "0.0.6"
1585 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
1586 |
1587 | user-home@^1.1.1:
1588 | version "1.1.1"
1589 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190"
1590 |
1591 | util-deprecate@~1.0.1:
1592 | version "1.0.2"
1593 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
1594 |
1595 | uuid@^3.0.0:
1596 | version "3.2.1"
1597 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14"
1598 |
1599 | v8flags@^2.1.1:
1600 | version "2.1.1"
1601 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4"
1602 | dependencies:
1603 | user-home "^1.1.1"
1604 |
1605 | verror@1.10.0:
1606 | version "1.10.0"
1607 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
1608 | dependencies:
1609 | assert-plus "^1.0.0"
1610 | core-util-is "1.0.2"
1611 | extsprintf "^1.2.0"
1612 |
1613 | wide-align@^1.1.0:
1614 | version "1.1.2"
1615 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
1616 | dependencies:
1617 | string-width "^1.0.2"
1618 |
1619 | wrappy@1:
1620 | version "1.0.2"
1621 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1622 |
--------------------------------------------------------------------------------