├── .babelrc
├── .eslintrc
├── .gitignore
├── README.md
├── docs
└── demo.gif
├── package.json
├── src
├── Transition.js
├── index.js
├── transitionStylePropType.js
└── transitions
│ ├── Fade.js
│ ├── FlipX.js
│ ├── FlipY.js
│ ├── SlideDown.js
│ ├── SlideLeft.js
│ ├── SlideRight.js
│ └── SlideUp.js
└── yarn.lock
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["react-native"]
3 | }
--------------------------------------------------------------------------------
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "airbnb",
3 | "parser": "babel-eslint",
4 | "rules": {
5 | "react/jsx-filename-extension": ["error", { "extensions": ["js", "jsx"] }],
6 | "no-underscore-dangle": ["error", { "allowAfterThis": true }]
7 | }
8 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 |
3 | # Don't include generated files
4 | /lib
5 |
6 | # Ignore debug files
7 | npm-debug.log
8 |
9 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # react-native-transition
2 | A fully customizable view transition library for react-native. The library
3 | could be used to transition entire screens or small parts within a View.
4 |
5 | The library has been designed to use customizable transition styles, that
6 | could be easily created and plugged into the application. Checkout the
7 | [Custom Transitions](#custom-transitions) section to learn more about creating
8 | transitions.
9 |
10 | Check out a demo application available at
11 | [Transition Demo](https://github.com/sharingapples/react-native-transition-demo).
12 | 
13 |
14 | ### Caution
15 | The react-native library below 0.43 throws `onLayout` event on Android for every change
16 | in the child UI elements (even when changes are made through setNativeProps) even
17 | when the parent's layout is unaffected. This problem is specially observable while using
18 | drag & drop libraries, wherein this even is called a lot, affecting the performance. So
19 | use caution while using this library on React Native versions below 0.43.
20 |
21 | ### Installation
22 | ` $ npm install --save react-native-transition`
23 |
24 | ### Usage
25 |
26 | 1. Import `createTransition` and transition styles from the library
27 | import { createTransition, FlipX } from 'react-native-transition';
28 |
29 | 2. Create a transition component with optional styles
30 | const Transition = createTransition(FlipX);
31 |
32 | 3. Render the initial view within the `Transition` component
33 |
34 | <Transition>
35 | <View>...<View>
36 | </Transition>
37 |
38 |
39 | 4. Use the show method from component to perform transition
40 |
41 | onPress = (e) => { Transition.show(<View> ... </View>); }
42 |
43 |
44 | #### Example
45 | ```javascript
46 | import React, { Component } from 'react';
47 | import { View, Text } from 'react-native';
48 |
49 | import { createTransition, FlipX } from 'react-native-transition';
50 |
51 | const Transition = createTransition(FlipX);
52 |
53 | class YourView extends Component {
54 | this.switch = () => {
55 | Transition.show(
56 |
57 | This is another view
58 |
59 | );
60 | }
61 |
62 | render() {
63 | return (
64 |
65 |
66 | This the initial View
67 |
68 |
69 |
70 | );
71 | }
72 | }
73 | ```
74 |
75 | For a more complete example, checkout [Demo.js](https://github.com/sharingapples/react-native-transition-demo/tree/master/src/Demo.js)
76 | and [Window.js](https://github.com/sharingapples/react-native-transition-demo/tree/master/src/Window.js) from
77 | [react-native-transition-demo](https://github.com/sharingapples/react-native-transition-demo).
78 |
79 | ### createTransition([style], [animation])
80 | Creates a Transition component used for providing transitionable view.
81 |
82 | #### Arguments
83 | 1. `style` (object): A transition style definition object. Stock transition styles - `Fade`,
84 | `FlipX`, `FlipY`, `SlideLeft`, `SlideRight`, `SlideUp`, `SlideDown` are available
85 | with the libraries. By default `Fade` transition is used.
86 |
87 | 2. `animation` (function): Animation used for performing the transition. It could
88 | be one of the `Animated.timing`, `Animated.spring` or `Animated.decay` provided
89 | by react-native animation library.
90 |
91 | ### Transition component
92 | The `Transition` component should have **one and only one element** as a child.
93 | This child element is rendered before any transition takes place. Once the
94 | transition has occured, this initial child would not be mounted.
95 |
96 | #### Methods
97 | **show(element, [style], [animation])**
98 | The `show` method triggers the transition with the provided element appearing
99 | through transition.
100 |
101 | This method is available both as static as well as instance method of the
102 | component. In most of the cases, the static method could be used, while for
103 | some advanced use cases where the Transition component is placed on inner
104 | views and are being transitioned on automatic intervals, instance method
105 | could be used for a much individual instance access through `refs`.
106 |
107 | **getBounds()**
108 | Retreive the bounding size of the Transition componet. It returns an object
109 | with { width, height }. The bounding size is not available until the component
110 | has been attached.
111 |
112 | **Arguments**
113 | > **element** *(Element)*: The element that needs to be rendered via transition.
114 | > **style** *(object)*: Override the transition style for this specific transition.
115 | > **animation** *(function)*: Override the transition animation for this specific transition.
116 |
117 | **Returns** A unique id that represents the transition of this particular element which
118 | could be used to track the completion of the transition.
119 |
120 | > *Note: In case an element is added faster than being transitioned in. The visual
121 | transition will be skipped for the intermediate elements. The `onTransitioned` callback
122 | however will be called for all the elements even those skipped in the order that
123 | they were supposed to be shown*
124 |
125 | #### Props
126 | **onTransitioned**: A function which is called for every item that has been shown
127 | with the transition. The function is called with the **uniqueId** returned by `show`
128 | method.
129 |
130 | **onLayout**: A function which is called when the transition layout is
131 | available with the bounds. Every time the layout changes, this method is invoked.
132 |
133 | Any other props passed to the `Transition` component is passed as `config` parameter
134 | to the `animation` function. If you are using a `Animated.timing` animation, you
135 | could pass `duration` or `easing` props and so on.
136 |
137 | ### Custom Transitions
138 | The transition library comes with stock transitions which are limited, but
139 | can be easily extended by creating your own custom transitions. However, you must
140 | have knowledge of how animation works in react-native.
141 |
142 | A transition object should have two properties - `out` and `in`. The `out`
143 | property creates the style required for the view that is transitioning out
144 | and the `in` property creates the same for the incoming view. Both the `in`
145 | and `out` properties should be function call that returns a new style object
146 | for the respective container view. The function has following parameters:
147 | > **value** (`Animated.Value`)
148 | > An animated value that runs from `0` to `1` during the transition. The
149 | various style attributes take interpolated values from this value. Go
150 | through the react-native Animation docs for details on using interpolation.
151 | >
152 | > **bounds** ({ width, height })
153 | > Some animation styles need to know the size of the view being transitioned.
154 | >
155 | > **props**
156 | > The props that was passed to the `Transition` component.
157 |
158 | #### Supporting Native Transitions
159 | Since react native v0.40+, the native animation support has been provided.
160 | The transitions can now define, `useNativeDriver` property with boolean
161 | `true` to support native animation. Take caution, as all styles are not
162 | supported for native animation. Only `opacity`, `backgroundColor` and
163 | `transform` properties are supported for now. If the `useNativeDriver` is
164 | enabled on transition styles that changes any other properties, an
165 | exception would be thrown. `Fade`, `FlipX`, `FlipY` are the stock styles
166 | that now support native animations.
167 |
168 | #### Example transition - Slide
169 | ```javascript
170 | const Slide = {
171 | out: (value, bounds) => ({
172 | left: value.interpolate({
173 | inputValue: [0, 1],
174 | outputValue: [0, -bounds.width],
175 | }),
176 | width: bounds.width,
177 | }),
178 | in: (value, bounds) => ({
179 | left: value.interpolate({
180 | inputValue: [0, 1],
181 | outputValue: [bounds.width, 0],
182 | }),
183 | width: bounds.width,
184 | }),
185 | };
186 | ```
187 |
188 | #### Example transition - Brooom
189 | ```javascript
190 | const Brooom = {
191 | out: (value, bounds) => ({
192 | left: value.interpolate({
193 | inputRange: [0, 1],
194 | outputRange: [0, -bounds.width],
195 | }),
196 | width: bounds.width,
197 | transform: [{
198 | skewX: value.interpolate({
199 | inputRange: [0, 0.1, 0.9, 1],
200 | outputRange: ["0deg", "-20deg", "-20deg", "0deg"],
201 | }),
202 | }],
203 | }),
204 | in: (value, bounds) => ({
205 | left: value.interpolate({
206 | inputRange: [0, 1],
207 | outputRange: [bounds.width, 0],
208 | }),
209 | width: bounds.width,
210 | transform: [{
211 | skewX: value.interpolate({
212 | inputRange: [0, 0.1, 0.9, 1],
213 | outputRange: ["0deg", "-20deg", "-20deg", "0deg"],
214 | }),
215 | }],
216 | }),
217 | };
218 | ```
219 |
220 |
--------------------------------------------------------------------------------
/docs/demo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sharingapples/react-native-transition/5b91848be1c6e2dede6eba459777e0aa4731f949/docs/demo.gif
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-native-transition",
3 | "version": "1.1.8",
4 | "description": "A view transition library for react-native",
5 | "main": "lib/index.js",
6 | "repository": "sharingapples/react-native-transition",
7 | "author": "Ranjan Shrestha",
8 | "license": "MIT",
9 | "scripts": {
10 | "build": "babel --out-dir lib --ignore __tests__ src --source-maps",
11 | "clean": "rimraf lib && mkdir lib",
12 | "prepublish": "rimraf lib && babel --out-dir lib --ignore __tests__ src"
13 | },
14 | "files": [
15 | "lib",
16 | "doc"
17 | ],
18 | "dependencies": {
19 | "prop-types": "^15.5.10"
20 | },
21 | "devDependencies": {
22 | "babel-cli": "^6.24.0",
23 | "babel-eslint": "^7.1.1",
24 | "babel-preset-react-native": "^1.9.1",
25 | "eslint": "^3.15.0",
26 | "eslint-config-airbnb": "^14.1.0",
27 | "eslint-plugin-import": "^2.2.0",
28 | "eslint-plugin-jsx-a11y": "^4.0.0",
29 | "eslint-plugin-react": "^6.9.0",
30 | "rimraf": "^2.6.1"
31 | },
32 | "peerDependencies": {
33 | "react": ">=15.0.0",
34 | "react-native": ">=0.40.0"
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/src/Transition.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import PropTypes from 'prop-types';
3 | import { View, Animated, StyleSheet } from 'react-native';
4 |
5 | // The default transition style
6 | import Fade from './transitions/Fade';
7 |
8 | const styles = StyleSheet.create({
9 | container: {
10 | flex: 1,
11 | overflow: 'hidden',
12 | },
13 | animatedContainer: {
14 | position: 'absolute',
15 | left: 0,
16 | top: 0,
17 | right: 0,
18 | bottom: 0,
19 | },
20 | });
21 |
22 | let uniqueId = 0;
23 |
24 | const createUniqueId = () => {
25 | uniqueId += 1;
26 | return uniqueId;
27 | };
28 |
29 | const createTransition = (style = Fade, animation = Animated.timing) => {
30 | let instance = null;
31 |
32 | return class Transition extends Component {
33 | static propTypes = {
34 | /* A transition element requires a single Component element within it */
35 | children: PropTypes.element.isRequired,
36 |
37 | /* An optional function that is called, once the transition is completed */
38 | onTransitioned: PropTypes.func,
39 |
40 | /* An optional callback invoked when the transition has been configured */
41 | onLayout: PropTypes.func,
42 | };
43 |
44 | static defaultProps = {
45 | onTransitioned: undefined,
46 | onLayout: undefined,
47 | }
48 |
49 | /**
50 | * A helper method to run the transition to avoid using "ref" in
51 | * most of the use cases. There is normally only one Transition component
52 | * used most of the time. In such case, this method could be used to
53 | * directly perform the transition on the last created Transition element.
54 | * For advanced and instance specific use case, use the instance method
55 | * instead.
56 | *
57 | * You can also provide a customStyle and customAnimation that will override
58 | * the default values that were provided during createTransition for this
59 | * one transition.
60 | */
61 | static show(element, customStyle = null, customAnimation = null) {
62 | if (instance === null) {
63 | throw new Error('No transition component rendered to show a transition');
64 | }
65 |
66 | // Start the transition
67 | return instance.show(element, customStyle, customAnimation);
68 | }
69 |
70 | constructor(props) {
71 | super(props);
72 |
73 | // Store the instance on the scoped variable
74 | instance = this;
75 |
76 | /**
77 | * The items that need to be transitioned to care included in the
78 | * children state. A transition takes place to reduce the number
79 | * of elements on the array to one.
80 | */
81 | this.state = {
82 | bounds: null,
83 | children: [{
84 | id: createUniqueId(),
85 | element: React.Children.only(props.children),
86 | style,
87 | animation,
88 | }],
89 | value: new Animated.Value(0),
90 | animStyle: null,
91 | };
92 |
93 | this.__animation = null;
94 | }
95 |
96 | componentWillUnmount() {
97 | // Stop any running animation, we don't want setState to be called
98 | // on a unmounted component
99 | if (this.__animation) {
100 | this.__animation.stop();
101 | this.__animation = null;
102 | }
103 | }
104 |
105 | /**
106 | * Instance method to run the transition. Use this method instead of
107 | * the static helper method, if more than one Transition instance is
108 | * expected to be created. Specially when Transition is included within
109 | * inner views, that might be recreated with every render. Even in
110 | * such cases, the static helper method could be used, if the method
111 | * is not being invoked on a regular interval like via timers.
112 | */
113 | show(element, customStyle = null, customAnimation = null) {
114 | const { children } = this.state;
115 |
116 | // Add the newly added elements to the state. The render method
117 | // has been designed to render at most 2 elements only.
118 | const id = createUniqueId();
119 | this.setState({
120 | children: children.concat({
121 | id,
122 | element,
123 | style: customStyle || style,
124 | animation: customAnimation || animation,
125 | }),
126 | }, this.__animate);
127 |
128 | // Update the childrens with the newly added item
129 | return id;
130 | }
131 |
132 | /**
133 | * Retrieve the bounds of the transition layer.
134 | * @returns Object with { width, height }. Caution, the bounds are
135 | * available only after the component has been attached.
136 | */
137 | getBounds() {
138 | return this.state.bounds;
139 | }
140 |
141 | __animate = () => {
142 | const { children, value } = this.state;
143 | // eslint-disable-next-line no-unused-vars
144 | const { onTransitioned, onLayout, ...other } = this.props;
145 |
146 | // Run the animation only when there are two children not less not more
147 | // less means, the transition is in stable state, more means new items
148 | // have been queued, and need to run animation only after the running
149 | // animation completes
150 | if (children.length !== 2) {
151 | return;
152 | }
153 |
154 | // The animation is defined by the incoming element
155 | const item = children[1];
156 |
157 | const config = Object.assign({}, other, {
158 | toValue: 1,
159 | useNativeDriver: item.style.useNativeDriver,
160 | });
161 |
162 | this.__animation = item.animation(value, config);
163 | this.__animation.start((complete) => {
164 | this.__animation = null;
165 |
166 | // Only if the animation completes, we move further, the animation
167 | // is incomplete only in case the component was unmounted
168 | if (complete) {
169 | const newChildren = this.state.children.slice();
170 |
171 | // Remove the outgoing element
172 | newChildren.shift();
173 |
174 | // If any additional item has been added, transition them out
175 | // as well, leaving out the last item
176 | const skipped = newChildren.splice(1, newChildren.length - 2);
177 |
178 | if (onTransitioned) {
179 | onTransitioned(newChildren[0].id);
180 |
181 | skipped.forEach(itm => onTransitioned(itm.id));
182 | }
183 |
184 | // Update the transition state, and try to run animation again
185 | // if anything has been queued
186 | this.setState({
187 | children: newChildren,
188 | value: new Animated.Value(0),
189 | }, this.__animate);
190 | }
191 | });
192 | }
193 |
194 | __onLayout = ({ nativeEvent }) => {
195 | this.setState({
196 | bounds: {
197 | width: nativeEvent.layout.width,
198 | height: nativeEvent.layout.height,
199 | },
200 | }, () => this.props.onLayout && this.props.onLayout(this.state.bounds));
201 | }
202 |
203 | __renderElement = (item, idx, allItems) => {
204 | // we get one null element, after the transition is completed
205 | if (!item) {
206 | return null;
207 | }
208 |
209 | // Also only render at most 2 items
210 | if (idx > 1) {
211 | return null;
212 | }
213 |
214 | const { bounds, value } = this.state;
215 | // bounds are needed by some of the transition styles, so don't
216 | // render as long as the onLayout has not been invoked
217 | if (!bounds) {
218 | return null;
219 | }
220 |
221 | // Get the transition style to be used, either provided during
222 | // the transtion call or the default provided during the creation.
223 | const userStyle = allItems.length > 1 ? allItems[1].style : item.style;
224 |
225 | // Decide weather the incoming or the outgoing style needs to be used
226 | // Both 'in' and 'out' styles are used for different items during the
227 | // transition, whereas only 'out' style is used in stable state. This
228 | // seems a bit confusing for the stable state item - but consider this
229 | // that the stable state is the beginning of the outgoing state.
230 | const styler = idx === 0 ? userStyle.out : userStyle.in;
231 |
232 | const animatedStyle = styler(value, bounds, this.props);
233 | return (
234 |
235 | {item.element}
236 |
237 | );
238 | }
239 |
240 | render() {
241 | const { children } = this.state;
242 | return (
243 |
244 | {children.map(this.__renderElement)}
245 |
246 | );
247 | }
248 | };
249 | };
250 |
251 | export default createTransition;
252 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import createTransition from './Transition';
2 | import Fade from './transitions/Fade';
3 | import FlipX from './transitions/FlipX';
4 | import FlipY from './transitions/FlipY';
5 | import SlideLeft from './transitions/SlideLeft';
6 | import SlideRight from './transitions/SlideRight';
7 | import SlideUp from './transitions/SlideUp';
8 | import SlideDown from './transitions/SlideDown';
9 | import transitionStylePropType from './transitionStylePropType';
10 |
11 | export {
12 | createTransition,
13 | transitionStylePropType,
14 |
15 | Fade,
16 | FlipX,
17 | FlipY,
18 | SlideLeft,
19 | SlideRight,
20 | SlideUp,
21 | SlideDown,
22 | };
23 |
--------------------------------------------------------------------------------
/src/transitionStylePropType.js:
--------------------------------------------------------------------------------
1 | import PropTypes from 'prop-types';
2 |
3 | export default PropTypes.shape({
4 | in: PropTypes.func.isRequired,
5 | out: PropTypes.func.isRequired,
6 | });
7 |
--------------------------------------------------------------------------------
/src/transitions/Fade.js:
--------------------------------------------------------------------------------
1 |
2 | export default {
3 | out: value => ({
4 | opacity: value.interpolate({
5 | inputRange: [0, 1],
6 | outputRange: [1, 0],
7 | }),
8 | }),
9 | in: value => ({ opacity: value }),
10 | useNativeDriver: true,
11 | };
12 |
--------------------------------------------------------------------------------
/src/transitions/FlipX.js:
--------------------------------------------------------------------------------
1 |
2 | export default {
3 | out: value => ({
4 | opacity: value.interpolate({
5 | inputRange: [0, 0.5, 0.5, 1],
6 | outputRange: [1, 1, 0, 0],
7 | }),
8 | backfaceVisibility: 'hidden',
9 | transform: [{
10 | perspective: 1000,
11 | }, {
12 | rotateY: value.interpolate({
13 | inputRange: [0, 1],
14 | outputRange: ['0deg', '180deg'],
15 | }),
16 | }],
17 | }),
18 |
19 | in: value => ({
20 | opacity: value.interpolate({
21 | inputRange: [0, 0.5, 0.5, 1],
22 | outputRange: [0, 0, 1, 1],
23 | }),
24 | backfaceVisibility: 'hidden',
25 | transform: [{
26 | perspective: 1000,
27 | }, {
28 | rotateY: value.interpolate({
29 | inputRange: [0, 1],
30 | outputRange: ['180deg', '360deg'],
31 | }),
32 | }],
33 | }),
34 |
35 | useNativeDriver: true,
36 | };
37 |
--------------------------------------------------------------------------------
/src/transitions/FlipY.js:
--------------------------------------------------------------------------------
1 |
2 | export default {
3 | out: value => ({
4 | opacity: value.interpolate({
5 | inputRange: [0, 0.5, 0.5, 1],
6 | outputRange: [1, 1, 0, 0],
7 | }),
8 | backfaceVisibility: 'hidden',
9 | transform: [{
10 | perspective: 1000,
11 | }, {
12 | rotateX: value.interpolate({
13 | inputRange: [0, 1],
14 | outputRange: ['0deg', '180deg'],
15 | }),
16 | }],
17 | }),
18 |
19 | in: value => ({
20 | opacity: value.interpolate({
21 | inputRange: [0, 0.5, 0.5, 1],
22 | outputRange: [0, 0, 1, 1],
23 | }),
24 | backfaceVisibility: 'hidden',
25 | transform: [{
26 | perspective: 1000,
27 | }, {
28 | rotateX: value.interpolate({
29 | inputRange: [0, 1],
30 | outputRange: ['180deg', '360deg'],
31 | }),
32 | }],
33 | }),
34 |
35 | useNativeDriver: true,
36 | };
37 |
--------------------------------------------------------------------------------
/src/transitions/SlideDown.js:
--------------------------------------------------------------------------------
1 | export default {
2 | out: (value, bounds) => ({
3 | top: value.interpolate({
4 | inputRange: [0, 1],
5 | outputRange: [0, bounds.height],
6 | }),
7 | height: bounds.height,
8 | }),
9 | in: (value, bounds) => ({
10 | top: value.interpolate({
11 | inputRange: [0, 1],
12 | outputRange: [-bounds.height, 0],
13 | }),
14 | height: bounds.height,
15 | }),
16 | };
17 |
--------------------------------------------------------------------------------
/src/transitions/SlideLeft.js:
--------------------------------------------------------------------------------
1 | export default {
2 | out: (value, bounds) => ({
3 | left: value.interpolate({
4 | inputRange: [0, 1],
5 | outputRange: [0, -bounds.width],
6 | }),
7 | width: bounds.width,
8 | }),
9 | in: (value, bounds) => ({
10 | left: value.interpolate({
11 | inputRange: [0, 1],
12 | outputRange: [bounds.width, 0],
13 | }),
14 | width: bounds.width,
15 | }),
16 | };
17 |
--------------------------------------------------------------------------------
/src/transitions/SlideRight.js:
--------------------------------------------------------------------------------
1 | export default {
2 | out: (value, bounds) => ({
3 | left: value.interpolate({
4 | inputRange: [0, 1],
5 | outputRange: [0, bounds.width],
6 | }),
7 | width: bounds.width,
8 | }),
9 | in: (value, bounds) => ({
10 | left: value.interpolate({
11 | inputRange: [0, 1],
12 | outputRange: [-bounds.width, 0],
13 | }),
14 | width: bounds.width,
15 | }),
16 | };
17 |
--------------------------------------------------------------------------------
/src/transitions/SlideUp.js:
--------------------------------------------------------------------------------
1 | export default {
2 | out: (value, bounds) => ({
3 | top: value.interpolate({
4 | inputRange: [0, 1],
5 | outputRange: [0, -bounds.height],
6 | }),
7 | height: bounds.height,
8 | }),
9 | in: (value, bounds) => ({
10 | top: value.interpolate({
11 | inputRange: [0, 1],
12 | outputRange: [bounds.height, 0],
13 | }),
14 | height: bounds.height,
15 | }),
16 | };
17 |
--------------------------------------------------------------------------------
/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.0"
7 | resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f"
8 |
9 | acorn-jsx@^3.0.0:
10 | version "3.0.1"
11 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
12 | dependencies:
13 | acorn "^3.0.4"
14 |
15 | acorn@4.0.4:
16 | version "4.0.4"
17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a"
18 |
19 | acorn@^3.0.4:
20 | version "3.3.0"
21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
22 |
23 | ajv-keywords@^1.0.0:
24 | version "1.5.1"
25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c"
26 |
27 | ajv@^4.7.0, ajv@^4.9.1:
28 | version "4.11.2"
29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.2.tgz#f166c3c11cbc6cb9dcc102a5bcfe5b72c95287e6"
30 | dependencies:
31 | co "^4.6.0"
32 | json-stable-stringify "^1.0.1"
33 |
34 | ansi-escapes@^1.1.0:
35 | version "1.4.0"
36 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
37 |
38 | ansi-regex@^2.0.0:
39 | version "2.1.1"
40 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
41 |
42 | ansi-styles@^2.2.1:
43 | version "2.2.1"
44 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
45 |
46 | anymatch@^1.3.0:
47 | version "1.3.0"
48 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507"
49 | dependencies:
50 | arrify "^1.0.0"
51 | micromatch "^2.1.5"
52 |
53 | aproba@^1.0.3:
54 | version "1.1.1"
55 | resolved "https://registry.npmjs.org/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab"
56 |
57 | are-we-there-yet@~1.1.2:
58 | version "1.1.2"
59 | resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3"
60 | dependencies:
61 | delegates "^1.0.0"
62 | readable-stream "^2.0.0 || ^1.1.13"
63 |
64 | argparse@^1.0.7:
65 | version "1.0.9"
66 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
67 | dependencies:
68 | sprintf-js "~1.0.2"
69 |
70 | aria-query@^0.3.0:
71 | version "0.3.0"
72 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.3.0.tgz#cb8a9984e2862711c83c80ade5b8f5ca0de2b467"
73 | dependencies:
74 | ast-types-flow "0.0.7"
75 |
76 | arr-diff@^2.0.0:
77 | version "2.0.0"
78 | resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
79 | dependencies:
80 | arr-flatten "^1.0.1"
81 |
82 | arr-flatten@^1.0.1:
83 | version "1.0.1"
84 | resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b"
85 |
86 | array-union@^1.0.1:
87 | version "1.0.2"
88 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
89 | dependencies:
90 | array-uniq "^1.0.1"
91 |
92 | array-uniq@^1.0.1:
93 | version "1.0.3"
94 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
95 |
96 | array-unique@^0.2.1:
97 | version "0.2.1"
98 | resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
99 |
100 | array.prototype.find@^2.0.1:
101 | version "2.0.3"
102 | resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.3.tgz#08c3ec33e32ec4bab362a2958e686ae92f59271d"
103 | dependencies:
104 | define-properties "^1.1.2"
105 | es-abstract "^1.7.0"
106 |
107 | arrify@^1.0.0:
108 | version "1.0.1"
109 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
110 |
111 | asn1@~0.2.3:
112 | version "0.2.3"
113 | resolved "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
114 |
115 | assert-plus@1.0.0, assert-plus@^1.0.0:
116 | version "1.0.0"
117 | resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
118 |
119 | assert-plus@^0.2.0:
120 | version "0.2.0"
121 | resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
122 |
123 | ast-types-flow@0.0.7:
124 | version "0.0.7"
125 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
126 |
127 | async-each@^1.0.0:
128 | version "1.0.1"
129 | resolved "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
130 |
131 | asynckit@^0.4.0:
132 | version "0.4.0"
133 | resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
134 |
135 | aws-sign2@~0.6.0:
136 | version "0.6.0"
137 | resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
138 |
139 | aws4@^1.2.1:
140 | version "1.6.0"
141 | resolved "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
142 |
143 | babel-cli@^6.24.0:
144 | version "6.24.0"
145 | resolved "https://registry.npmjs.org/babel-cli/-/babel-cli-6.24.0.tgz#a05ffd210dca0c288a26d5319c5ac8669a265ad0"
146 | dependencies:
147 | babel-core "^6.24.0"
148 | babel-polyfill "^6.23.0"
149 | babel-register "^6.24.0"
150 | babel-runtime "^6.22.0"
151 | commander "^2.8.1"
152 | convert-source-map "^1.1.0"
153 | fs-readdir-recursive "^1.0.0"
154 | glob "^7.0.0"
155 | lodash "^4.2.0"
156 | output-file-sync "^1.1.0"
157 | path-is-absolute "^1.0.0"
158 | slash "^1.0.0"
159 | source-map "^0.5.0"
160 | v8flags "^2.0.10"
161 | optionalDependencies:
162 | chokidar "^1.6.1"
163 |
164 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0:
165 | version "6.22.0"
166 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4"
167 | dependencies:
168 | chalk "^1.1.0"
169 | esutils "^2.0.2"
170 | js-tokens "^3.0.0"
171 |
172 | babel-core@^6.24.0:
173 | version "6.24.0"
174 | resolved "https://registry.npmjs.org/babel-core/-/babel-core-6.24.0.tgz#8f36a0a77f5c155aed6f920b844d23ba56742a02"
175 | dependencies:
176 | babel-code-frame "^6.22.0"
177 | babel-generator "^6.24.0"
178 | babel-helpers "^6.23.0"
179 | babel-messages "^6.23.0"
180 | babel-register "^6.24.0"
181 | babel-runtime "^6.22.0"
182 | babel-template "^6.23.0"
183 | babel-traverse "^6.23.1"
184 | babel-types "^6.23.0"
185 | babylon "^6.11.0"
186 | convert-source-map "^1.1.0"
187 | debug "^2.1.1"
188 | json5 "^0.5.0"
189 | lodash "^4.2.0"
190 | minimatch "^3.0.2"
191 | path-is-absolute "^1.0.0"
192 | private "^0.1.6"
193 | slash "^1.0.0"
194 | source-map "^0.5.0"
195 |
196 | babel-eslint@^7.1.1:
197 | version "7.1.1"
198 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.1.1.tgz#8a6a884f085aa7060af69cfc77341c2f99370fb2"
199 | dependencies:
200 | babel-code-frame "^6.16.0"
201 | babel-traverse "^6.15.0"
202 | babel-types "^6.15.0"
203 | babylon "^6.13.0"
204 | lodash.pickby "^4.6.0"
205 |
206 | babel-generator@^6.24.0:
207 | version "6.24.0"
208 | resolved "https://registry.npmjs.org/babel-generator/-/babel-generator-6.24.0.tgz#eba270a8cc4ce6e09a61be43465d7c62c1f87c56"
209 | dependencies:
210 | babel-messages "^6.23.0"
211 | babel-runtime "^6.22.0"
212 | babel-types "^6.23.0"
213 | detect-indent "^4.0.0"
214 | jsesc "^1.3.0"
215 | lodash "^4.2.0"
216 | source-map "^0.5.0"
217 | trim-right "^1.0.1"
218 |
219 | babel-helper-builder-react-jsx@^6.23.0:
220 | version "6.23.0"
221 | resolved "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.23.0.tgz#d53fc8c996e0bc56d0de0fc4cc55a7138395ea4b"
222 | dependencies:
223 | babel-runtime "^6.22.0"
224 | babel-types "^6.23.0"
225 | esutils "^2.0.0"
226 | lodash "^4.2.0"
227 |
228 | babel-helper-call-delegate@^6.22.0:
229 | version "6.22.0"
230 | resolved "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef"
231 | dependencies:
232 | babel-helper-hoist-variables "^6.22.0"
233 | babel-runtime "^6.22.0"
234 | babel-traverse "^6.22.0"
235 | babel-types "^6.22.0"
236 |
237 | babel-helper-define-map@^6.23.0:
238 | version "6.23.0"
239 | resolved "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz#1444f960c9691d69a2ced6a205315f8fd00804e7"
240 | dependencies:
241 | babel-helper-function-name "^6.23.0"
242 | babel-runtime "^6.22.0"
243 | babel-types "^6.23.0"
244 | lodash "^4.2.0"
245 |
246 | babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.23.0:
247 | version "6.23.0"
248 | resolved "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6"
249 | dependencies:
250 | babel-helper-get-function-arity "^6.22.0"
251 | babel-runtime "^6.22.0"
252 | babel-template "^6.23.0"
253 | babel-traverse "^6.23.0"
254 | babel-types "^6.23.0"
255 |
256 | babel-helper-get-function-arity@^6.22.0:
257 | version "6.22.0"
258 | resolved "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce"
259 | dependencies:
260 | babel-runtime "^6.22.0"
261 | babel-types "^6.22.0"
262 |
263 | babel-helper-hoist-variables@^6.22.0:
264 | version "6.22.0"
265 | resolved "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72"
266 | dependencies:
267 | babel-runtime "^6.22.0"
268 | babel-types "^6.22.0"
269 |
270 | babel-helper-optimise-call-expression@^6.23.0:
271 | version "6.23.0"
272 | resolved "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz#f3ee7eed355b4282138b33d02b78369e470622f5"
273 | dependencies:
274 | babel-runtime "^6.22.0"
275 | babel-types "^6.23.0"
276 |
277 | babel-helper-replace-supers@^6.23.0:
278 | version "6.23.0"
279 | resolved "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz#eeaf8ad9b58ec4337ca94223bacdca1f8d9b4bfd"
280 | dependencies:
281 | babel-helper-optimise-call-expression "^6.23.0"
282 | babel-messages "^6.23.0"
283 | babel-runtime "^6.22.0"
284 | babel-template "^6.23.0"
285 | babel-traverse "^6.23.0"
286 | babel-types "^6.23.0"
287 |
288 | babel-helpers@^6.23.0:
289 | version "6.23.0"
290 | resolved "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992"
291 | dependencies:
292 | babel-runtime "^6.22.0"
293 | babel-template "^6.23.0"
294 |
295 | babel-messages@^6.22.0, babel-messages@^6.23.0:
296 | version "6.23.0"
297 | resolved "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
298 | dependencies:
299 | babel-runtime "^6.22.0"
300 |
301 | babel-plugin-check-es2015-constants@^6.5.0:
302 | version "6.22.0"
303 | resolved "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
304 | dependencies:
305 | babel-runtime "^6.22.0"
306 |
307 | babel-plugin-react-transform@2.0.2:
308 | version "2.0.2"
309 | resolved "https://registry.npmjs.org/babel-plugin-react-transform/-/babel-plugin-react-transform-2.0.2.tgz#515bbfa996893981142d90b1f9b1635de2995109"
310 | dependencies:
311 | lodash "^4.6.1"
312 |
313 | babel-plugin-syntax-async-functions@^6.5.0:
314 | version "6.13.0"
315 | resolved "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
316 |
317 | babel-plugin-syntax-class-properties@^6.5.0, babel-plugin-syntax-class-properties@^6.8.0:
318 | version "6.13.0"
319 | resolved "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
320 |
321 | babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.5.0:
322 | version "6.18.0"
323 | resolved "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
324 |
325 | babel-plugin-syntax-jsx@^6.5.0, babel-plugin-syntax-jsx@^6.8.0:
326 | version "6.18.0"
327 | resolved "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
328 |
329 | babel-plugin-syntax-object-rest-spread@^6.8.0:
330 | version "6.13.0"
331 | resolved "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
332 |
333 | babel-plugin-syntax-trailing-function-commas@^6.5.0:
334 | version "6.22.0"
335 | resolved "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
336 |
337 | babel-plugin-transform-class-properties@^6.5.0:
338 | version "6.23.0"
339 | resolved "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.23.0.tgz#187b747ee404399013563c993db038f34754ac3b"
340 | dependencies:
341 | babel-helper-function-name "^6.23.0"
342 | babel-plugin-syntax-class-properties "^6.8.0"
343 | babel-runtime "^6.22.0"
344 | babel-template "^6.23.0"
345 |
346 | babel-plugin-transform-es2015-arrow-functions@^6.5.0:
347 | version "6.22.0"
348 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
349 | dependencies:
350 | babel-runtime "^6.22.0"
351 |
352 | babel-plugin-transform-es2015-block-scoping@^6.5.0:
353 | version "6.23.0"
354 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51"
355 | dependencies:
356 | babel-runtime "^6.22.0"
357 | babel-template "^6.23.0"
358 | babel-traverse "^6.23.0"
359 | babel-types "^6.23.0"
360 | lodash "^4.2.0"
361 |
362 | babel-plugin-transform-es2015-classes@^6.5.0:
363 | version "6.23.0"
364 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1"
365 | dependencies:
366 | babel-helper-define-map "^6.23.0"
367 | babel-helper-function-name "^6.23.0"
368 | babel-helper-optimise-call-expression "^6.23.0"
369 | babel-helper-replace-supers "^6.23.0"
370 | babel-messages "^6.23.0"
371 | babel-runtime "^6.22.0"
372 | babel-template "^6.23.0"
373 | babel-traverse "^6.23.0"
374 | babel-types "^6.23.0"
375 |
376 | babel-plugin-transform-es2015-computed-properties@^6.5.0:
377 | version "6.22.0"
378 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7"
379 | dependencies:
380 | babel-runtime "^6.22.0"
381 | babel-template "^6.22.0"
382 |
383 | babel-plugin-transform-es2015-destructuring@^6.5.0:
384 | version "6.23.0"
385 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
386 | dependencies:
387 | babel-runtime "^6.22.0"
388 |
389 | babel-plugin-transform-es2015-for-of@^6.5.0:
390 | version "6.23.0"
391 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
392 | dependencies:
393 | babel-runtime "^6.22.0"
394 |
395 | babel-plugin-transform-es2015-function-name@^6.5.0:
396 | version "6.22.0"
397 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104"
398 | dependencies:
399 | babel-helper-function-name "^6.22.0"
400 | babel-runtime "^6.22.0"
401 | babel-types "^6.22.0"
402 |
403 | babel-plugin-transform-es2015-literals@^6.5.0:
404 | version "6.22.0"
405 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
406 | dependencies:
407 | babel-runtime "^6.22.0"
408 |
409 | babel-plugin-transform-es2015-modules-commonjs@^6.5.0:
410 | version "6.24.0"
411 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.0.tgz#e921aefb72c2cc26cb03d107626156413222134f"
412 | dependencies:
413 | babel-plugin-transform-strict-mode "^6.22.0"
414 | babel-runtime "^6.22.0"
415 | babel-template "^6.23.0"
416 | babel-types "^6.23.0"
417 |
418 | babel-plugin-transform-es2015-parameters@^6.5.0:
419 | version "6.23.0"
420 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b"
421 | dependencies:
422 | babel-helper-call-delegate "^6.22.0"
423 | babel-helper-get-function-arity "^6.22.0"
424 | babel-runtime "^6.22.0"
425 | babel-template "^6.23.0"
426 | babel-traverse "^6.23.0"
427 | babel-types "^6.23.0"
428 |
429 | babel-plugin-transform-es2015-shorthand-properties@^6.5.0:
430 | version "6.22.0"
431 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723"
432 | dependencies:
433 | babel-runtime "^6.22.0"
434 | babel-types "^6.22.0"
435 |
436 | babel-plugin-transform-es2015-spread@^6.5.0:
437 | version "6.22.0"
438 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
439 | dependencies:
440 | babel-runtime "^6.22.0"
441 |
442 | babel-plugin-transform-es2015-template-literals@^6.5.0:
443 | version "6.22.0"
444 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
445 | dependencies:
446 | babel-runtime "^6.22.0"
447 |
448 | babel-plugin-transform-flow-strip-types@^6.5.0:
449 | version "6.22.0"
450 | resolved "https://registry.npmjs.org/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
451 | dependencies:
452 | babel-plugin-syntax-flow "^6.18.0"
453 | babel-runtime "^6.22.0"
454 |
455 | babel-plugin-transform-object-assign@^6.5.0:
456 | version "6.22.0"
457 | resolved "https://registry.npmjs.org/babel-plugin-transform-object-assign/-/babel-plugin-transform-object-assign-6.22.0.tgz#f99d2f66f1a0b0d498e346c5359684740caa20ba"
458 | dependencies:
459 | babel-runtime "^6.22.0"
460 |
461 | babel-plugin-transform-object-rest-spread@^6.5.0:
462 | version "6.23.0"
463 | resolved "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921"
464 | dependencies:
465 | babel-plugin-syntax-object-rest-spread "^6.8.0"
466 | babel-runtime "^6.22.0"
467 |
468 | babel-plugin-transform-react-display-name@^6.5.0:
469 | version "6.23.0"
470 | resolved "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37"
471 | dependencies:
472 | babel-runtime "^6.22.0"
473 |
474 | babel-plugin-transform-react-jsx-source@^6.5.0:
475 | version "6.22.0"
476 | resolved "https://registry.npmjs.org/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6"
477 | dependencies:
478 | babel-plugin-syntax-jsx "^6.8.0"
479 | babel-runtime "^6.22.0"
480 |
481 | babel-plugin-transform-react-jsx@^6.5.0:
482 | version "6.23.0"
483 | resolved "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.23.0.tgz#23e892f7f2e759678eb5e4446a8f8e94e81b3470"
484 | dependencies:
485 | babel-helper-builder-react-jsx "^6.23.0"
486 | babel-plugin-syntax-jsx "^6.8.0"
487 | babel-runtime "^6.22.0"
488 |
489 | babel-plugin-transform-regenerator@^6.5.0:
490 | version "6.22.0"
491 | resolved "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6"
492 | dependencies:
493 | regenerator-transform "0.9.8"
494 |
495 | babel-plugin-transform-strict-mode@^6.22.0:
496 | version "6.22.0"
497 | resolved "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c"
498 | dependencies:
499 | babel-runtime "^6.22.0"
500 | babel-types "^6.22.0"
501 |
502 | babel-polyfill@^6.23.0:
503 | version "6.23.0"
504 | resolved "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d"
505 | dependencies:
506 | babel-runtime "^6.22.0"
507 | core-js "^2.4.0"
508 | regenerator-runtime "^0.10.0"
509 |
510 | babel-preset-react-native@^1.9.1:
511 | version "1.9.1"
512 | resolved "https://registry.npmjs.org/babel-preset-react-native/-/babel-preset-react-native-1.9.1.tgz#ec8e378274410d78f550fa9f8edd70353f3bb2fe"
513 | dependencies:
514 | babel-plugin-check-es2015-constants "^6.5.0"
515 | babel-plugin-react-transform "2.0.2"
516 | babel-plugin-syntax-async-functions "^6.5.0"
517 | babel-plugin-syntax-class-properties "^6.5.0"
518 | babel-plugin-syntax-flow "^6.5.0"
519 | babel-plugin-syntax-jsx "^6.5.0"
520 | babel-plugin-syntax-trailing-function-commas "^6.5.0"
521 | babel-plugin-transform-class-properties "^6.5.0"
522 | babel-plugin-transform-es2015-arrow-functions "^6.5.0"
523 | babel-plugin-transform-es2015-block-scoping "^6.5.0"
524 | babel-plugin-transform-es2015-classes "^6.5.0"
525 | babel-plugin-transform-es2015-computed-properties "^6.5.0"
526 | babel-plugin-transform-es2015-destructuring "^6.5.0"
527 | babel-plugin-transform-es2015-for-of "^6.5.0"
528 | babel-plugin-transform-es2015-function-name "^6.5.0"
529 | babel-plugin-transform-es2015-literals "^6.5.0"
530 | babel-plugin-transform-es2015-modules-commonjs "^6.5.0"
531 | babel-plugin-transform-es2015-parameters "^6.5.0"
532 | babel-plugin-transform-es2015-shorthand-properties "^6.5.0"
533 | babel-plugin-transform-es2015-spread "^6.5.0"
534 | babel-plugin-transform-es2015-template-literals "^6.5.0"
535 | babel-plugin-transform-flow-strip-types "^6.5.0"
536 | babel-plugin-transform-object-assign "^6.5.0"
537 | babel-plugin-transform-object-rest-spread "^6.5.0"
538 | babel-plugin-transform-react-display-name "^6.5.0"
539 | babel-plugin-transform-react-jsx "^6.5.0"
540 | babel-plugin-transform-react-jsx-source "^6.5.0"
541 | babel-plugin-transform-regenerator "^6.5.0"
542 | react-transform-hmr "^1.0.4"
543 |
544 | babel-register@^6.24.0:
545 | version "6.24.0"
546 | resolved "https://registry.npmjs.org/babel-register/-/babel-register-6.24.0.tgz#5e89f8463ba9970356d02eb07dabe3308b080cfd"
547 | dependencies:
548 | babel-core "^6.24.0"
549 | babel-runtime "^6.22.0"
550 | core-js "^2.4.0"
551 | home-or-tmp "^2.0.0"
552 | lodash "^4.2.0"
553 | mkdirp "^0.5.1"
554 | source-map-support "^0.4.2"
555 |
556 | babel-runtime@^6.18.0, babel-runtime@^6.22.0:
557 | version "6.22.0"
558 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.22.0.tgz#1cf8b4ac67c77a4ddb0db2ae1f74de52ac4ca611"
559 | dependencies:
560 | core-js "^2.4.0"
561 | regenerator-runtime "^0.10.0"
562 |
563 | babel-template@^6.22.0, babel-template@^6.23.0:
564 | version "6.23.0"
565 | resolved "https://registry.npmjs.org/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638"
566 | dependencies:
567 | babel-runtime "^6.22.0"
568 | babel-traverse "^6.23.0"
569 | babel-types "^6.23.0"
570 | babylon "^6.11.0"
571 | lodash "^4.2.0"
572 |
573 | babel-traverse@^6.15.0:
574 | version "6.22.1"
575 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.22.1.tgz#3b95cd6b7427d6f1f757704908f2fc9748a5f59f"
576 | dependencies:
577 | babel-code-frame "^6.22.0"
578 | babel-messages "^6.22.0"
579 | babel-runtime "^6.22.0"
580 | babel-types "^6.22.0"
581 | babylon "^6.15.0"
582 | debug "^2.2.0"
583 | globals "^9.0.0"
584 | invariant "^2.2.0"
585 | lodash "^4.2.0"
586 |
587 | babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1:
588 | version "6.23.1"
589 | resolved "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48"
590 | dependencies:
591 | babel-code-frame "^6.22.0"
592 | babel-messages "^6.23.0"
593 | babel-runtime "^6.22.0"
594 | babel-types "^6.23.0"
595 | babylon "^6.15.0"
596 | debug "^2.2.0"
597 | globals "^9.0.0"
598 | invariant "^2.2.0"
599 | lodash "^4.2.0"
600 |
601 | babel-types@^6.15.0:
602 | version "6.22.0"
603 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.22.0.tgz#2a447e8d0ea25d2512409e4175479fd78cc8b1db"
604 | dependencies:
605 | babel-runtime "^6.22.0"
606 | esutils "^2.0.2"
607 | lodash "^4.2.0"
608 | to-fast-properties "^1.0.1"
609 |
610 | babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0:
611 | version "6.23.0"
612 | resolved "https://registry.npmjs.org/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf"
613 | dependencies:
614 | babel-runtime "^6.22.0"
615 | esutils "^2.0.2"
616 | lodash "^4.2.0"
617 | to-fast-properties "^1.0.1"
618 |
619 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0:
620 | version "6.15.0"
621 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.15.0.tgz#ba65cfa1a80e1759b0e89fb562e27dccae70348e"
622 |
623 | balanced-match@^0.4.1:
624 | version "0.4.2"
625 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
626 |
627 | bcrypt-pbkdf@^1.0.0:
628 | version "1.0.1"
629 | resolved "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
630 | dependencies:
631 | tweetnacl "^0.14.3"
632 |
633 | binary-extensions@^1.0.0:
634 | version "1.8.0"
635 | resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774"
636 |
637 | block-stream@*:
638 | version "0.0.9"
639 | resolved "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
640 | dependencies:
641 | inherits "~2.0.0"
642 |
643 | boom@2.x.x:
644 | version "2.10.1"
645 | resolved "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
646 | dependencies:
647 | hoek "2.x.x"
648 |
649 | brace-expansion@^1.0.0:
650 | version "1.1.6"
651 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9"
652 | dependencies:
653 | balanced-match "^0.4.1"
654 | concat-map "0.0.1"
655 |
656 | braces@^1.8.2:
657 | version "1.8.5"
658 | resolved "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
659 | dependencies:
660 | expand-range "^1.8.1"
661 | preserve "^0.2.0"
662 | repeat-element "^1.1.2"
663 |
664 | buffer-shims@^1.0.0:
665 | version "1.0.0"
666 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
667 |
668 | builtin-modules@^1.1.1:
669 | version "1.1.1"
670 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
671 |
672 | caller-path@^0.1.0:
673 | version "0.1.0"
674 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
675 | dependencies:
676 | callsites "^0.2.0"
677 |
678 | callsites@^0.2.0:
679 | version "0.2.0"
680 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
681 |
682 | caseless@~0.12.0:
683 | version "0.12.0"
684 | resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
685 |
686 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
687 | version "1.1.3"
688 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
689 | dependencies:
690 | ansi-styles "^2.2.1"
691 | escape-string-regexp "^1.0.2"
692 | has-ansi "^2.0.0"
693 | strip-ansi "^3.0.0"
694 | supports-color "^2.0.0"
695 |
696 | chokidar@^1.6.1:
697 | version "1.6.1"
698 | resolved "https://registry.npmjs.org/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2"
699 | dependencies:
700 | anymatch "^1.3.0"
701 | async-each "^1.0.0"
702 | glob-parent "^2.0.0"
703 | inherits "^2.0.1"
704 | is-binary-path "^1.0.0"
705 | is-glob "^2.0.0"
706 | path-is-absolute "^1.0.0"
707 | readdirp "^2.0.0"
708 | optionalDependencies:
709 | fsevents "^1.0.0"
710 |
711 | circular-json@^0.3.1:
712 | version "0.3.1"
713 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d"
714 |
715 | cli-cursor@^1.0.1:
716 | version "1.0.2"
717 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
718 | dependencies:
719 | restore-cursor "^1.0.1"
720 |
721 | cli-width@^2.0.0:
722 | version "2.1.0"
723 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a"
724 |
725 | co@^4.6.0:
726 | version "4.6.0"
727 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
728 |
729 | code-point-at@^1.0.0:
730 | version "1.1.0"
731 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
732 |
733 | combined-stream@^1.0.5, combined-stream@~1.0.5:
734 | version "1.0.5"
735 | resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
736 | dependencies:
737 | delayed-stream "~1.0.0"
738 |
739 | commander@^2.8.1:
740 | version "2.9.0"
741 | resolved "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4"
742 | dependencies:
743 | graceful-readlink ">= 1.0.0"
744 |
745 | concat-map@0.0.1:
746 | version "0.0.1"
747 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
748 |
749 | concat-stream@^1.4.6:
750 | version "1.6.0"
751 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
752 | dependencies:
753 | inherits "^2.0.3"
754 | readable-stream "^2.2.2"
755 | typedarray "^0.0.6"
756 |
757 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
758 | version "1.1.0"
759 | resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
760 |
761 | contains-path@^0.1.0:
762 | version "0.1.0"
763 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
764 |
765 | convert-source-map@^1.1.0:
766 | version "1.5.0"
767 | resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
768 |
769 | core-js@^2.4.0:
770 | version "2.4.1"
771 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
772 |
773 | core-util-is@~1.0.0:
774 | version "1.0.2"
775 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
776 |
777 | cryptiles@2.x.x:
778 | version "2.0.5"
779 | resolved "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
780 | dependencies:
781 | boom "2.x.x"
782 |
783 | d@^0.1.1, d@~0.1.1:
784 | version "0.1.1"
785 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309"
786 | dependencies:
787 | es5-ext "~0.10.2"
788 |
789 | damerau-levenshtein@^1.0.0:
790 | version "1.0.3"
791 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.3.tgz#ae4f4ce0b62acae10ff63a01bb08f652f5213af2"
792 |
793 | dashdash@^1.12.0:
794 | version "1.14.1"
795 | resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
796 | dependencies:
797 | assert-plus "^1.0.0"
798 |
799 | debug@2.2.0:
800 | version "2.2.0"
801 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
802 | dependencies:
803 | ms "0.7.1"
804 |
805 | debug@^2.1.1, debug@^2.2.0:
806 | version "2.6.0"
807 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b"
808 | dependencies:
809 | ms "0.7.2"
810 |
811 | deep-extend@~0.4.0:
812 | version "0.4.1"
813 | resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253"
814 |
815 | deep-is@~0.1.3:
816 | version "0.1.3"
817 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
818 |
819 | define-properties@^1.1.2:
820 | version "1.1.2"
821 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
822 | dependencies:
823 | foreach "^2.0.5"
824 | object-keys "^1.0.8"
825 |
826 | del@^2.0.2:
827 | version "2.2.2"
828 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
829 | dependencies:
830 | globby "^5.0.0"
831 | is-path-cwd "^1.0.0"
832 | is-path-in-cwd "^1.0.0"
833 | object-assign "^4.0.1"
834 | pify "^2.0.0"
835 | pinkie-promise "^2.0.0"
836 | rimraf "^2.2.8"
837 |
838 | delayed-stream@~1.0.0:
839 | version "1.0.0"
840 | resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
841 |
842 | delegates@^1.0.0:
843 | version "1.0.0"
844 | resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
845 |
846 | detect-indent@^4.0.0:
847 | version "4.0.0"
848 | resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
849 | dependencies:
850 | repeating "^2.0.0"
851 |
852 | doctrine@1.5.0, doctrine@^1.2.2:
853 | version "1.5.0"
854 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
855 | dependencies:
856 | esutils "^2.0.2"
857 | isarray "^1.0.0"
858 |
859 | dom-walk@^0.1.0:
860 | version "0.1.1"
861 | resolved "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018"
862 |
863 | ecc-jsbn@~0.1.1:
864 | version "0.1.1"
865 | resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
866 | dependencies:
867 | jsbn "~0.1.0"
868 |
869 | emoji-regex@^6.1.0:
870 | version "6.1.0"
871 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.1.0.tgz#d14ef743a7dfa6eaf436882bd1920a4aed84dd94"
872 |
873 | es-abstract@^1.7.0:
874 | version "1.7.0"
875 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c"
876 | dependencies:
877 | es-to-primitive "^1.1.1"
878 | function-bind "^1.1.0"
879 | is-callable "^1.1.3"
880 | is-regex "^1.0.3"
881 |
882 | es-to-primitive@^1.1.1:
883 | version "1.1.1"
884 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d"
885 | dependencies:
886 | is-callable "^1.1.1"
887 | is-date-object "^1.0.1"
888 | is-symbol "^1.0.1"
889 |
890 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7:
891 | version "0.10.12"
892 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047"
893 | dependencies:
894 | es6-iterator "2"
895 | es6-symbol "~3.1"
896 |
897 | es6-iterator@2:
898 | version "2.0.0"
899 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac"
900 | dependencies:
901 | d "^0.1.1"
902 | es5-ext "^0.10.7"
903 | es6-symbol "3"
904 |
905 | es6-map@^0.1.3:
906 | version "0.1.4"
907 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897"
908 | dependencies:
909 | d "~0.1.1"
910 | es5-ext "~0.10.11"
911 | es6-iterator "2"
912 | es6-set "~0.1.3"
913 | es6-symbol "~3.1.0"
914 | event-emitter "~0.3.4"
915 |
916 | es6-set@~0.1.3:
917 | version "0.1.4"
918 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8"
919 | dependencies:
920 | d "~0.1.1"
921 | es5-ext "~0.10.11"
922 | es6-iterator "2"
923 | es6-symbol "3"
924 | event-emitter "~0.3.4"
925 |
926 | es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0:
927 | version "3.1.0"
928 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa"
929 | dependencies:
930 | d "~0.1.1"
931 | es5-ext "~0.10.11"
932 |
933 | es6-weak-map@^2.0.1:
934 | version "2.0.1"
935 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81"
936 | dependencies:
937 | d "^0.1.1"
938 | es5-ext "^0.10.8"
939 | es6-iterator "2"
940 | es6-symbol "3"
941 |
942 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
943 | version "1.0.5"
944 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
945 |
946 | escope@^3.6.0:
947 | version "3.6.0"
948 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
949 | dependencies:
950 | es6-map "^0.1.3"
951 | es6-weak-map "^2.0.1"
952 | esrecurse "^4.1.0"
953 | estraverse "^4.1.1"
954 |
955 | eslint-config-airbnb-base@^11.1.0:
956 | version "11.1.0"
957 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.1.0.tgz#dc9b3ec70b8c74dcbe6d6257c9da3992c39ca2ca"
958 |
959 | eslint-config-airbnb@^14.1.0:
960 | version "14.1.0"
961 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-14.1.0.tgz#355d290040bbf8e00bf8b4b19f4b70cbe7c2317f"
962 | dependencies:
963 | eslint-config-airbnb-base "^11.1.0"
964 |
965 | eslint-import-resolver-node@^0.2.0:
966 | version "0.2.3"
967 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c"
968 | dependencies:
969 | debug "^2.2.0"
970 | object-assign "^4.0.1"
971 | resolve "^1.1.6"
972 |
973 | eslint-module-utils@^2.0.0:
974 | version "2.0.0"
975 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce"
976 | dependencies:
977 | debug "2.2.0"
978 | pkg-dir "^1.0.0"
979 |
980 | eslint-plugin-import@^2.2.0:
981 | version "2.2.0"
982 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e"
983 | dependencies:
984 | builtin-modules "^1.1.1"
985 | contains-path "^0.1.0"
986 | debug "^2.2.0"
987 | doctrine "1.5.0"
988 | eslint-import-resolver-node "^0.2.0"
989 | eslint-module-utils "^2.0.0"
990 | has "^1.0.1"
991 | lodash.cond "^4.3.0"
992 | minimatch "^3.0.3"
993 | pkg-up "^1.0.0"
994 |
995 | eslint-plugin-jsx-a11y@^4.0.0:
996 | version "4.0.0"
997 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-4.0.0.tgz#779bb0fe7b08da564a422624911de10061e048ee"
998 | dependencies:
999 | aria-query "^0.3.0"
1000 | ast-types-flow "0.0.7"
1001 | damerau-levenshtein "^1.0.0"
1002 | emoji-regex "^6.1.0"
1003 | jsx-ast-utils "^1.0.0"
1004 | object-assign "^4.0.1"
1005 |
1006 | eslint-plugin-react@^6.9.0:
1007 | version "6.9.0"
1008 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.9.0.tgz#54c2e9906b76f9d10142030bdc34e9d6840a0bb2"
1009 | dependencies:
1010 | array.prototype.find "^2.0.1"
1011 | doctrine "^1.2.2"
1012 | jsx-ast-utils "^1.3.4"
1013 |
1014 | eslint@^3.15.0:
1015 | version "3.15.0"
1016 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.15.0.tgz#bdcc6a6c5ffe08160e7b93c066695362a91e30f2"
1017 | dependencies:
1018 | babel-code-frame "^6.16.0"
1019 | chalk "^1.1.3"
1020 | concat-stream "^1.4.6"
1021 | debug "^2.1.1"
1022 | doctrine "^1.2.2"
1023 | escope "^3.6.0"
1024 | espree "^3.4.0"
1025 | estraverse "^4.2.0"
1026 | esutils "^2.0.2"
1027 | file-entry-cache "^2.0.0"
1028 | glob "^7.0.3"
1029 | globals "^9.14.0"
1030 | ignore "^3.2.0"
1031 | imurmurhash "^0.1.4"
1032 | inquirer "^0.12.0"
1033 | is-my-json-valid "^2.10.0"
1034 | is-resolvable "^1.0.0"
1035 | js-yaml "^3.5.1"
1036 | json-stable-stringify "^1.0.0"
1037 | levn "^0.3.0"
1038 | lodash "^4.0.0"
1039 | mkdirp "^0.5.0"
1040 | natural-compare "^1.4.0"
1041 | optionator "^0.8.2"
1042 | path-is-inside "^1.0.1"
1043 | pluralize "^1.2.1"
1044 | progress "^1.1.8"
1045 | require-uncached "^1.0.2"
1046 | shelljs "^0.7.5"
1047 | strip-bom "^3.0.0"
1048 | strip-json-comments "~2.0.1"
1049 | table "^3.7.8"
1050 | text-table "~0.2.0"
1051 | user-home "^2.0.0"
1052 |
1053 | espree@^3.4.0:
1054 | version "3.4.0"
1055 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.0.tgz#41656fa5628e042878025ef467e78f125cb86e1d"
1056 | dependencies:
1057 | acorn "4.0.4"
1058 | acorn-jsx "^3.0.0"
1059 |
1060 | esprima@^3.1.1:
1061 | version "3.1.3"
1062 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
1063 |
1064 | esrecurse@^4.1.0:
1065 | version "4.1.0"
1066 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220"
1067 | dependencies:
1068 | estraverse "~4.1.0"
1069 | object-assign "^4.0.1"
1070 |
1071 | estraverse@^4.1.1, estraverse@^4.2.0:
1072 | version "4.2.0"
1073 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
1074 |
1075 | estraverse@~4.1.0:
1076 | version "4.1.1"
1077 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2"
1078 |
1079 | esutils@^2.0.0, esutils@^2.0.2:
1080 | version "2.0.2"
1081 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1082 |
1083 | event-emitter@~0.3.4:
1084 | version "0.3.4"
1085 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5"
1086 | dependencies:
1087 | d "~0.1.1"
1088 | es5-ext "~0.10.7"
1089 |
1090 | exit-hook@^1.0.0:
1091 | version "1.1.1"
1092 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
1093 |
1094 | expand-brackets@^0.1.4:
1095 | version "0.1.5"
1096 | resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1097 | dependencies:
1098 | is-posix-bracket "^0.1.0"
1099 |
1100 | expand-range@^1.8.1:
1101 | version "1.8.2"
1102 | resolved "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1103 | dependencies:
1104 | fill-range "^2.1.0"
1105 |
1106 | extend@~3.0.0:
1107 | version "3.0.0"
1108 | resolved "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4"
1109 |
1110 | extglob@^0.3.1:
1111 | version "0.3.2"
1112 | resolved "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1113 | dependencies:
1114 | is-extglob "^1.0.0"
1115 |
1116 | extsprintf@1.0.2:
1117 | version "1.0.2"
1118 | resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550"
1119 |
1120 | fast-levenshtein@~2.0.4:
1121 | version "2.0.6"
1122 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1123 |
1124 | figures@^1.3.5:
1125 | version "1.7.0"
1126 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
1127 | dependencies:
1128 | escape-string-regexp "^1.0.5"
1129 | object-assign "^4.1.0"
1130 |
1131 | file-entry-cache@^2.0.0:
1132 | version "2.0.0"
1133 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
1134 | dependencies:
1135 | flat-cache "^1.2.1"
1136 | object-assign "^4.0.1"
1137 |
1138 | filename-regex@^2.0.0:
1139 | version "2.0.0"
1140 | resolved "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775"
1141 |
1142 | fill-range@^2.1.0:
1143 | version "2.2.3"
1144 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1145 | dependencies:
1146 | is-number "^2.1.0"
1147 | isobject "^2.0.0"
1148 | randomatic "^1.1.3"
1149 | repeat-element "^1.1.2"
1150 | repeat-string "^1.5.2"
1151 |
1152 | find-up@^1.0.0:
1153 | version "1.1.2"
1154 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1155 | dependencies:
1156 | path-exists "^2.0.0"
1157 | pinkie-promise "^2.0.0"
1158 |
1159 | flat-cache@^1.2.1:
1160 | version "1.2.2"
1161 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96"
1162 | dependencies:
1163 | circular-json "^0.3.1"
1164 | del "^2.0.2"
1165 | graceful-fs "^4.1.2"
1166 | write "^0.2.1"
1167 |
1168 | for-in@^1.0.1:
1169 | version "1.0.2"
1170 | resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1171 |
1172 | for-own@^0.1.4:
1173 | version "0.1.5"
1174 | resolved "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1175 | dependencies:
1176 | for-in "^1.0.1"
1177 |
1178 | foreach@^2.0.5:
1179 | version "2.0.5"
1180 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
1181 |
1182 | forever-agent@~0.6.1:
1183 | version "0.6.1"
1184 | resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1185 |
1186 | form-data@~2.1.1:
1187 | version "2.1.2"
1188 | resolved "https://registry.npmjs.org/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4"
1189 | dependencies:
1190 | asynckit "^0.4.0"
1191 | combined-stream "^1.0.5"
1192 | mime-types "^2.1.12"
1193 |
1194 | fs-readdir-recursive@^1.0.0:
1195 | version "1.0.0"
1196 | resolved "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560"
1197 |
1198 | fs.realpath@^1.0.0:
1199 | version "1.0.0"
1200 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1201 |
1202 | fsevents@^1.0.0:
1203 | version "1.1.1"
1204 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff"
1205 | dependencies:
1206 | nan "^2.3.0"
1207 | node-pre-gyp "^0.6.29"
1208 |
1209 | fstream-ignore@^1.0.5:
1210 | version "1.0.5"
1211 | resolved "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1212 | dependencies:
1213 | fstream "^1.0.0"
1214 | inherits "2"
1215 | minimatch "^3.0.0"
1216 |
1217 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
1218 | version "1.0.11"
1219 | resolved "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
1220 | dependencies:
1221 | graceful-fs "^4.1.2"
1222 | inherits "~2.0.0"
1223 | mkdirp ">=0.5 0"
1224 | rimraf "2"
1225 |
1226 | function-bind@^1.0.2, function-bind@^1.1.0:
1227 | version "1.1.0"
1228 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771"
1229 |
1230 | gauge@~2.7.1:
1231 | version "2.7.3"
1232 | resolved "https://registry.npmjs.org/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09"
1233 | dependencies:
1234 | aproba "^1.0.3"
1235 | console-control-strings "^1.0.0"
1236 | has-unicode "^2.0.0"
1237 | object-assign "^4.1.0"
1238 | signal-exit "^3.0.0"
1239 | string-width "^1.0.1"
1240 | strip-ansi "^3.0.1"
1241 | wide-align "^1.1.0"
1242 |
1243 | generate-function@^2.0.0:
1244 | version "2.0.0"
1245 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74"
1246 |
1247 | generate-object-property@^1.1.0:
1248 | version "1.2.0"
1249 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0"
1250 | dependencies:
1251 | is-property "^1.0.0"
1252 |
1253 | getpass@^0.1.1:
1254 | version "0.1.6"
1255 | resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6"
1256 | dependencies:
1257 | assert-plus "^1.0.0"
1258 |
1259 | glob-base@^0.3.0:
1260 | version "0.3.0"
1261 | resolved "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1262 | dependencies:
1263 | glob-parent "^2.0.0"
1264 | is-glob "^2.0.0"
1265 |
1266 | glob-parent@^2.0.0:
1267 | version "2.0.0"
1268 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1269 | dependencies:
1270 | is-glob "^2.0.0"
1271 |
1272 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5:
1273 | version "7.1.1"
1274 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
1275 | dependencies:
1276 | fs.realpath "^1.0.0"
1277 | inflight "^1.0.4"
1278 | inherits "2"
1279 | minimatch "^3.0.2"
1280 | once "^1.3.0"
1281 | path-is-absolute "^1.0.0"
1282 |
1283 | global@^4.3.0:
1284 | version "4.3.1"
1285 | resolved "https://registry.npmjs.org/global/-/global-4.3.1.tgz#5f757908c7cbabce54f386ae440e11e26b7916df"
1286 | dependencies:
1287 | min-document "^2.19.0"
1288 | process "~0.5.1"
1289 |
1290 | globals@^9.0.0, globals@^9.14.0:
1291 | version "9.14.0"
1292 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034"
1293 |
1294 | globby@^5.0.0:
1295 | version "5.0.0"
1296 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
1297 | dependencies:
1298 | array-union "^1.0.1"
1299 | arrify "^1.0.0"
1300 | glob "^7.0.3"
1301 | object-assign "^4.0.1"
1302 | pify "^2.0.0"
1303 | pinkie-promise "^2.0.0"
1304 |
1305 | graceful-fs@^4.1.2, graceful-fs@^4.1.4:
1306 | version "4.1.11"
1307 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1308 |
1309 | "graceful-readlink@>= 1.0.0":
1310 | version "1.0.1"
1311 | resolved "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725"
1312 |
1313 | har-schema@^1.0.5:
1314 | version "1.0.5"
1315 | resolved "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
1316 |
1317 | har-validator@~4.2.1:
1318 | version "4.2.1"
1319 | resolved "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
1320 | dependencies:
1321 | ajv "^4.9.1"
1322 | har-schema "^1.0.5"
1323 |
1324 | has-ansi@^2.0.0:
1325 | version "2.0.0"
1326 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1327 | dependencies:
1328 | ansi-regex "^2.0.0"
1329 |
1330 | has-unicode@^2.0.0:
1331 | version "2.0.1"
1332 | resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1333 |
1334 | has@^1.0.1:
1335 | version "1.0.1"
1336 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
1337 | dependencies:
1338 | function-bind "^1.0.2"
1339 |
1340 | hawk@~3.1.3:
1341 | version "3.1.3"
1342 | resolved "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1343 | dependencies:
1344 | boom "2.x.x"
1345 | cryptiles "2.x.x"
1346 | hoek "2.x.x"
1347 | sntp "1.x.x"
1348 |
1349 | hoek@2.x.x:
1350 | version "2.16.3"
1351 | resolved "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1352 |
1353 | home-or-tmp@^2.0.0:
1354 | version "2.0.0"
1355 | resolved "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1356 | dependencies:
1357 | os-homedir "^1.0.0"
1358 | os-tmpdir "^1.0.1"
1359 |
1360 | http-signature@~1.1.0:
1361 | version "1.1.1"
1362 | resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1363 | dependencies:
1364 | assert-plus "^0.2.0"
1365 | jsprim "^1.2.2"
1366 | sshpk "^1.7.0"
1367 |
1368 | ignore@^3.2.0:
1369 | version "3.2.2"
1370 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.2.tgz#1c51e1ef53bab6ddc15db4d9ac4ec139eceb3410"
1371 |
1372 | imurmurhash@^0.1.4:
1373 | version "0.1.4"
1374 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1375 |
1376 | inflight@^1.0.4:
1377 | version "1.0.6"
1378 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1379 | dependencies:
1380 | once "^1.3.0"
1381 | wrappy "1"
1382 |
1383 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1:
1384 | version "2.0.3"
1385 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1386 |
1387 | ini@~1.3.0:
1388 | version "1.3.4"
1389 | resolved "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
1390 |
1391 | inquirer@^0.12.0:
1392 | version "0.12.0"
1393 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e"
1394 | dependencies:
1395 | ansi-escapes "^1.1.0"
1396 | ansi-regex "^2.0.0"
1397 | chalk "^1.0.0"
1398 | cli-cursor "^1.0.1"
1399 | cli-width "^2.0.0"
1400 | figures "^1.3.5"
1401 | lodash "^4.3.0"
1402 | readline2 "^1.0.1"
1403 | run-async "^0.1.0"
1404 | rx-lite "^3.1.2"
1405 | string-width "^1.0.1"
1406 | strip-ansi "^3.0.0"
1407 | through "^2.3.6"
1408 |
1409 | interpret@^1.0.0:
1410 | version "1.0.1"
1411 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c"
1412 |
1413 | invariant@^2.2.0:
1414 | version "2.2.2"
1415 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
1416 | dependencies:
1417 | loose-envify "^1.0.0"
1418 |
1419 | is-binary-path@^1.0.0:
1420 | version "1.0.1"
1421 | resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
1422 | dependencies:
1423 | binary-extensions "^1.0.0"
1424 |
1425 | is-buffer@^1.0.2:
1426 | version "1.1.5"
1427 | resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
1428 |
1429 | is-callable@^1.1.1, is-callable@^1.1.3:
1430 | version "1.1.3"
1431 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
1432 |
1433 | is-date-object@^1.0.1:
1434 | version "1.0.1"
1435 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
1436 |
1437 | is-dotfile@^1.0.0:
1438 | version "1.0.2"
1439 | resolved "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d"
1440 |
1441 | is-equal-shallow@^0.1.3:
1442 | version "0.1.3"
1443 | resolved "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1444 | dependencies:
1445 | is-primitive "^2.0.0"
1446 |
1447 | is-extendable@^0.1.1:
1448 | version "0.1.1"
1449 | resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1450 |
1451 | is-extglob@^1.0.0:
1452 | version "1.0.0"
1453 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1454 |
1455 | is-finite@^1.0.0:
1456 | version "1.0.2"
1457 | resolved "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1458 | dependencies:
1459 | number-is-nan "^1.0.0"
1460 |
1461 | is-fullwidth-code-point@^1.0.0:
1462 | version "1.0.0"
1463 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1464 | dependencies:
1465 | number-is-nan "^1.0.0"
1466 |
1467 | is-fullwidth-code-point@^2.0.0:
1468 | version "2.0.0"
1469 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1470 |
1471 | is-glob@^2.0.0, is-glob@^2.0.1:
1472 | version "2.0.1"
1473 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1474 | dependencies:
1475 | is-extglob "^1.0.0"
1476 |
1477 | is-my-json-valid@^2.10.0:
1478 | version "2.15.0"
1479 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b"
1480 | dependencies:
1481 | generate-function "^2.0.0"
1482 | generate-object-property "^1.1.0"
1483 | jsonpointer "^4.0.0"
1484 | xtend "^4.0.0"
1485 |
1486 | is-number@^2.0.2, is-number@^2.1.0:
1487 | version "2.1.0"
1488 | resolved "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1489 | dependencies:
1490 | kind-of "^3.0.2"
1491 |
1492 | is-path-cwd@^1.0.0:
1493 | version "1.0.0"
1494 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
1495 |
1496 | is-path-in-cwd@^1.0.0:
1497 | version "1.0.0"
1498 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
1499 | dependencies:
1500 | is-path-inside "^1.0.0"
1501 |
1502 | is-path-inside@^1.0.0:
1503 | version "1.0.0"
1504 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f"
1505 | dependencies:
1506 | path-is-inside "^1.0.1"
1507 |
1508 | is-posix-bracket@^0.1.0:
1509 | version "0.1.1"
1510 | resolved "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1511 |
1512 | is-primitive@^2.0.0:
1513 | version "2.0.0"
1514 | resolved "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1515 |
1516 | is-property@^1.0.0:
1517 | version "1.0.2"
1518 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
1519 |
1520 | is-regex@^1.0.3:
1521 | version "1.0.3"
1522 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.3.tgz#0d55182bddf9f2fde278220aec3a75642c908637"
1523 |
1524 | is-resolvable@^1.0.0:
1525 | version "1.0.0"
1526 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62"
1527 | dependencies:
1528 | tryit "^1.0.1"
1529 |
1530 | is-symbol@^1.0.1:
1531 | version "1.0.1"
1532 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
1533 |
1534 | is-typedarray@~1.0.0:
1535 | version "1.0.0"
1536 | resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1537 |
1538 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
1539 | version "1.0.0"
1540 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1541 |
1542 | isobject@^2.0.0:
1543 | version "2.1.0"
1544 | resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1545 | dependencies:
1546 | isarray "1.0.0"
1547 |
1548 | isstream@~0.1.2:
1549 | version "0.1.2"
1550 | resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1551 |
1552 | jodid25519@^1.0.0:
1553 | version "1.0.2"
1554 | resolved "https://registry.npmjs.org/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967"
1555 | dependencies:
1556 | jsbn "~0.1.0"
1557 |
1558 | js-tokens@^3.0.0:
1559 | version "3.0.1"
1560 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7"
1561 |
1562 | js-yaml@^3.5.1:
1563 | version "3.8.1"
1564 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.1.tgz#782ba50200be7b9e5a8537001b7804db3ad02628"
1565 | dependencies:
1566 | argparse "^1.0.7"
1567 | esprima "^3.1.1"
1568 |
1569 | jsbn@~0.1.0:
1570 | version "0.1.1"
1571 | resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
1572 |
1573 | jsesc@^1.3.0:
1574 | version "1.3.0"
1575 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
1576 |
1577 | json-schema@0.2.3:
1578 | version "0.2.3"
1579 | resolved "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1580 |
1581 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1:
1582 | version "1.0.1"
1583 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1584 | dependencies:
1585 | jsonify "~0.0.0"
1586 |
1587 | json-stringify-safe@~5.0.1:
1588 | version "5.0.1"
1589 | resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1590 |
1591 | json5@^0.5.0:
1592 | version "0.5.1"
1593 | resolved "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
1594 |
1595 | jsonify@~0.0.0:
1596 | version "0.0.0"
1597 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1598 |
1599 | jsonpointer@^4.0.0:
1600 | version "4.0.1"
1601 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"
1602 |
1603 | jsprim@^1.2.2:
1604 | version "1.4.0"
1605 | resolved "https://registry.npmjs.org/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918"
1606 | dependencies:
1607 | assert-plus "1.0.0"
1608 | extsprintf "1.0.2"
1609 | json-schema "0.2.3"
1610 | verror "1.3.6"
1611 |
1612 | jsx-ast-utils@^1.0.0, jsx-ast-utils@^1.3.4:
1613 | version "1.4.0"
1614 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.0.tgz#5afe38868f56bc8cc7aeaef0100ba8c75bd12591"
1615 | dependencies:
1616 | object-assign "^4.1.0"
1617 |
1618 | kind-of@^3.0.2:
1619 | version "3.1.0"
1620 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47"
1621 | dependencies:
1622 | is-buffer "^1.0.2"
1623 |
1624 | levn@^0.3.0, levn@~0.3.0:
1625 | version "0.3.0"
1626 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
1627 | dependencies:
1628 | prelude-ls "~1.1.2"
1629 | type-check "~0.3.2"
1630 |
1631 | lodash.cond@^4.3.0:
1632 | version "4.5.2"
1633 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5"
1634 |
1635 | lodash.pickby@^4.6.0:
1636 | version "4.6.0"
1637 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff"
1638 |
1639 | lodash@^4.0.0, lodash@^4.2.0, lodash@^4.3.0, lodash@^4.6.1:
1640 | version "4.17.4"
1641 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
1642 |
1643 | loose-envify@^1.0.0:
1644 | version "1.3.1"
1645 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
1646 | dependencies:
1647 | js-tokens "^3.0.0"
1648 |
1649 | micromatch@^2.1.5:
1650 | version "2.3.11"
1651 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
1652 | dependencies:
1653 | arr-diff "^2.0.0"
1654 | array-unique "^0.2.1"
1655 | braces "^1.8.2"
1656 | expand-brackets "^0.1.4"
1657 | extglob "^0.3.1"
1658 | filename-regex "^2.0.0"
1659 | is-extglob "^1.0.0"
1660 | is-glob "^2.0.1"
1661 | kind-of "^3.0.2"
1662 | normalize-path "^2.0.1"
1663 | object.omit "^2.0.0"
1664 | parse-glob "^3.0.4"
1665 | regex-cache "^0.4.2"
1666 |
1667 | mime-db@~1.27.0:
1668 | version "1.27.0"
1669 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1"
1670 |
1671 | mime-types@^2.1.12, mime-types@~2.1.7:
1672 | version "2.1.15"
1673 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed"
1674 | dependencies:
1675 | mime-db "~1.27.0"
1676 |
1677 | min-document@^2.19.0:
1678 | version "2.19.0"
1679 | resolved "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685"
1680 | dependencies:
1681 | dom-walk "^0.1.0"
1682 |
1683 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3:
1684 | version "3.0.3"
1685 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
1686 | dependencies:
1687 | brace-expansion "^1.0.0"
1688 |
1689 | minimist@0.0.8:
1690 | version "0.0.8"
1691 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1692 |
1693 | minimist@^1.2.0:
1694 | version "1.2.0"
1695 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1696 |
1697 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1:
1698 | version "0.5.1"
1699 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1700 | dependencies:
1701 | minimist "0.0.8"
1702 |
1703 | ms@0.7.1:
1704 | version "0.7.1"
1705 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098"
1706 |
1707 | ms@0.7.2:
1708 | version "0.7.2"
1709 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765"
1710 |
1711 | mute-stream@0.0.5:
1712 | version "0.0.5"
1713 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0"
1714 |
1715 | nan@^2.3.0:
1716 | version "2.5.1"
1717 | resolved "https://registry.npmjs.org/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2"
1718 |
1719 | natural-compare@^1.4.0:
1720 | version "1.4.0"
1721 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1722 |
1723 | node-pre-gyp@^0.6.29:
1724 | version "0.6.34"
1725 | resolved "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7"
1726 | dependencies:
1727 | mkdirp "^0.5.1"
1728 | nopt "^4.0.1"
1729 | npmlog "^4.0.2"
1730 | rc "^1.1.7"
1731 | request "^2.81.0"
1732 | rimraf "^2.6.1"
1733 | semver "^5.3.0"
1734 | tar "^2.2.1"
1735 | tar-pack "^3.4.0"
1736 |
1737 | nopt@^4.0.1:
1738 | version "4.0.1"
1739 | resolved "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
1740 | dependencies:
1741 | abbrev "1"
1742 | osenv "^0.1.4"
1743 |
1744 | normalize-path@^2.0.1:
1745 | version "2.1.1"
1746 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
1747 | dependencies:
1748 | remove-trailing-separator "^1.0.1"
1749 |
1750 | npmlog@^4.0.2:
1751 | version "4.0.2"
1752 | resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f"
1753 | dependencies:
1754 | are-we-there-yet "~1.1.2"
1755 | console-control-strings "~1.1.0"
1756 | gauge "~2.7.1"
1757 | set-blocking "~2.0.0"
1758 |
1759 | number-is-nan@^1.0.0:
1760 | version "1.0.1"
1761 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
1762 |
1763 | oauth-sign@~0.8.1:
1764 | version "0.8.2"
1765 | resolved "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
1766 |
1767 | object-assign@^4.0.1, object-assign@^4.1.0:
1768 | version "4.1.1"
1769 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1770 |
1771 | object-keys@^1.0.8:
1772 | version "1.0.11"
1773 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
1774 |
1775 | object.omit@^2.0.0:
1776 | version "2.0.1"
1777 | resolved "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
1778 | dependencies:
1779 | for-own "^0.1.4"
1780 | is-extendable "^0.1.1"
1781 |
1782 | once@^1.3.0, once@^1.3.3:
1783 | version "1.4.0"
1784 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1785 | dependencies:
1786 | wrappy "1"
1787 |
1788 | onetime@^1.0.0:
1789 | version "1.1.0"
1790 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
1791 |
1792 | optionator@^0.8.2:
1793 | version "0.8.2"
1794 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
1795 | dependencies:
1796 | deep-is "~0.1.3"
1797 | fast-levenshtein "~2.0.4"
1798 | levn "~0.3.0"
1799 | prelude-ls "~1.1.2"
1800 | type-check "~0.3.2"
1801 | wordwrap "~1.0.0"
1802 |
1803 | os-homedir@^1.0.0:
1804 | version "1.0.2"
1805 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
1806 |
1807 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1:
1808 | version "1.0.2"
1809 | resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
1810 |
1811 | osenv@^0.1.4:
1812 | version "0.1.4"
1813 | resolved "https://registry.npmjs.org/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
1814 | dependencies:
1815 | os-homedir "^1.0.0"
1816 | os-tmpdir "^1.0.0"
1817 |
1818 | output-file-sync@^1.1.0:
1819 | version "1.1.2"
1820 | resolved "https://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76"
1821 | dependencies:
1822 | graceful-fs "^4.1.4"
1823 | mkdirp "^0.5.1"
1824 | object-assign "^4.1.0"
1825 |
1826 | parse-glob@^3.0.4:
1827 | version "3.0.4"
1828 | resolved "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
1829 | dependencies:
1830 | glob-base "^0.3.0"
1831 | is-dotfile "^1.0.0"
1832 | is-extglob "^1.0.0"
1833 | is-glob "^2.0.0"
1834 |
1835 | path-exists@^2.0.0:
1836 | version "2.1.0"
1837 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
1838 | dependencies:
1839 | pinkie-promise "^2.0.0"
1840 |
1841 | path-is-absolute@^1.0.0:
1842 | version "1.0.1"
1843 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1844 |
1845 | path-is-inside@^1.0.1:
1846 | version "1.0.2"
1847 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
1848 |
1849 | performance-now@^0.2.0:
1850 | version "0.2.0"
1851 | resolved "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
1852 |
1853 | pify@^2.0.0:
1854 | version "2.3.0"
1855 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
1856 |
1857 | pinkie-promise@^2.0.0:
1858 | version "2.0.1"
1859 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
1860 | dependencies:
1861 | pinkie "^2.0.0"
1862 |
1863 | pinkie@^2.0.0:
1864 | version "2.0.4"
1865 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
1866 |
1867 | pkg-dir@^1.0.0:
1868 | version "1.0.0"
1869 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
1870 | dependencies:
1871 | find-up "^1.0.0"
1872 |
1873 | pkg-up@^1.0.0:
1874 | version "1.0.0"
1875 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26"
1876 | dependencies:
1877 | find-up "^1.0.0"
1878 |
1879 | pluralize@^1.2.1:
1880 | version "1.2.1"
1881 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45"
1882 |
1883 | prelude-ls@~1.1.2:
1884 | version "1.1.2"
1885 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
1886 |
1887 | preserve@^0.2.0:
1888 | version "0.2.0"
1889 | resolved "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
1890 |
1891 | private@^0.1.6:
1892 | version "0.1.7"
1893 | resolved "https://registry.npmjs.org/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1"
1894 |
1895 | process-nextick-args@~1.0.6:
1896 | version "1.0.7"
1897 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
1898 |
1899 | process@~0.5.1:
1900 | version "0.5.2"
1901 | resolved "https://registry.npmjs.org/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf"
1902 |
1903 | progress@^1.1.8:
1904 | version "1.1.8"
1905 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
1906 |
1907 | punycode@^1.4.1:
1908 | version "1.4.1"
1909 | resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
1910 |
1911 | qs@~6.4.0:
1912 | version "6.4.0"
1913 | resolved "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
1914 |
1915 | randomatic@^1.1.3:
1916 | version "1.1.6"
1917 | resolved "https://registry.npmjs.org/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb"
1918 | dependencies:
1919 | is-number "^2.0.2"
1920 | kind-of "^3.0.2"
1921 |
1922 | rc@^1.1.7:
1923 | version "1.2.1"
1924 | resolved "https://registry.npmjs.org/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"
1925 | dependencies:
1926 | deep-extend "~0.4.0"
1927 | ini "~1.3.0"
1928 | minimist "^1.2.0"
1929 | strip-json-comments "~2.0.1"
1930 |
1931 | react-deep-force-update@^1.0.0:
1932 | version "1.0.1"
1933 | resolved "https://registry.npmjs.org/react-deep-force-update/-/react-deep-force-update-1.0.1.tgz#f911b5be1d2a6fe387507dd6e9a767aa2924b4c7"
1934 |
1935 | react-proxy@^1.1.7:
1936 | version "1.1.8"
1937 | resolved "https://registry.npmjs.org/react-proxy/-/react-proxy-1.1.8.tgz#9dbfd9d927528c3aa9f444e4558c37830ab8c26a"
1938 | dependencies:
1939 | lodash "^4.6.1"
1940 | react-deep-force-update "^1.0.0"
1941 |
1942 | react-transform-hmr@^1.0.4:
1943 | version "1.0.4"
1944 | resolved "https://registry.npmjs.org/react-transform-hmr/-/react-transform-hmr-1.0.4.tgz#e1a40bd0aaefc72e8dfd7a7cda09af85066397bb"
1945 | dependencies:
1946 | global "^4.3.0"
1947 | react-proxy "^1.1.7"
1948 |
1949 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.1.4, readable-stream@^2.2.2:
1950 | version "2.2.2"
1951 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e"
1952 | dependencies:
1953 | buffer-shims "^1.0.0"
1954 | core-util-is "~1.0.0"
1955 | inherits "~2.0.1"
1956 | isarray "~1.0.0"
1957 | process-nextick-args "~1.0.6"
1958 | string_decoder "~0.10.x"
1959 | util-deprecate "~1.0.1"
1960 |
1961 | readdirp@^2.0.0:
1962 | version "2.1.0"
1963 | resolved "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
1964 | dependencies:
1965 | graceful-fs "^4.1.2"
1966 | minimatch "^3.0.2"
1967 | readable-stream "^2.0.2"
1968 | set-immediate-shim "^1.0.1"
1969 |
1970 | readline2@^1.0.1:
1971 | version "1.0.1"
1972 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35"
1973 | dependencies:
1974 | code-point-at "^1.0.0"
1975 | is-fullwidth-code-point "^1.0.0"
1976 | mute-stream "0.0.5"
1977 |
1978 | rechoir@^0.6.2:
1979 | version "0.6.2"
1980 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
1981 | dependencies:
1982 | resolve "^1.1.6"
1983 |
1984 | regenerator-runtime@^0.10.0:
1985 | version "0.10.1"
1986 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb"
1987 |
1988 | regenerator-transform@0.9.8:
1989 | version "0.9.8"
1990 | resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c"
1991 | dependencies:
1992 | babel-runtime "^6.18.0"
1993 | babel-types "^6.19.0"
1994 | private "^0.1.6"
1995 |
1996 | regex-cache@^0.4.2:
1997 | version "0.4.3"
1998 | resolved "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
1999 | dependencies:
2000 | is-equal-shallow "^0.1.3"
2001 | is-primitive "^2.0.0"
2002 |
2003 | remove-trailing-separator@^1.0.1:
2004 | version "1.0.1"
2005 | resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4"
2006 |
2007 | repeat-element@^1.1.2:
2008 | version "1.1.2"
2009 | resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
2010 |
2011 | repeat-string@^1.5.2:
2012 | version "1.6.1"
2013 | resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2014 |
2015 | repeating@^2.0.0:
2016 | version "2.0.1"
2017 | resolved "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
2018 | dependencies:
2019 | is-finite "^1.0.0"
2020 |
2021 | request@^2.81.0:
2022 | version "2.81.0"
2023 | resolved "https://registry.npmjs.org/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
2024 | dependencies:
2025 | aws-sign2 "~0.6.0"
2026 | aws4 "^1.2.1"
2027 | caseless "~0.12.0"
2028 | combined-stream "~1.0.5"
2029 | extend "~3.0.0"
2030 | forever-agent "~0.6.1"
2031 | form-data "~2.1.1"
2032 | har-validator "~4.2.1"
2033 | hawk "~3.1.3"
2034 | http-signature "~1.1.0"
2035 | is-typedarray "~1.0.0"
2036 | isstream "~0.1.2"
2037 | json-stringify-safe "~5.0.1"
2038 | mime-types "~2.1.7"
2039 | oauth-sign "~0.8.1"
2040 | performance-now "^0.2.0"
2041 | qs "~6.4.0"
2042 | safe-buffer "^5.0.1"
2043 | stringstream "~0.0.4"
2044 | tough-cookie "~2.3.0"
2045 | tunnel-agent "^0.6.0"
2046 | uuid "^3.0.0"
2047 |
2048 | require-uncached@^1.0.2:
2049 | version "1.0.3"
2050 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
2051 | dependencies:
2052 | caller-path "^0.1.0"
2053 | resolve-from "^1.0.0"
2054 |
2055 | resolve-from@^1.0.0:
2056 | version "1.0.1"
2057 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
2058 |
2059 | resolve@^1.1.6:
2060 | version "1.2.0"
2061 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c"
2062 |
2063 | restore-cursor@^1.0.1:
2064 | version "1.0.1"
2065 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
2066 | dependencies:
2067 | exit-hook "^1.0.0"
2068 | onetime "^1.0.0"
2069 |
2070 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1:
2071 | version "2.6.1"
2072 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d"
2073 | dependencies:
2074 | glob "^7.0.5"
2075 |
2076 | run-async@^0.1.0:
2077 | version "0.1.0"
2078 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389"
2079 | dependencies:
2080 | once "^1.3.0"
2081 |
2082 | rx-lite@^3.1.2:
2083 | version "3.1.2"
2084 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102"
2085 |
2086 | safe-buffer@^5.0.1:
2087 | version "5.0.1"
2088 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7"
2089 |
2090 | semver@^5.3.0:
2091 | version "5.3.0"
2092 | resolved "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
2093 |
2094 | set-blocking@~2.0.0:
2095 | version "2.0.0"
2096 | resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
2097 |
2098 | set-immediate-shim@^1.0.1:
2099 | version "1.0.1"
2100 | resolved "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
2101 |
2102 | shelljs@^0.7.5:
2103 | version "0.7.6"
2104 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.6.tgz#379cccfb56b91c8601e4793356eb5382924de9ad"
2105 | dependencies:
2106 | glob "^7.0.0"
2107 | interpret "^1.0.0"
2108 | rechoir "^0.6.2"
2109 |
2110 | signal-exit@^3.0.0:
2111 | version "3.0.2"
2112 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
2113 |
2114 | slash@^1.0.0:
2115 | version "1.0.0"
2116 | resolved "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
2117 |
2118 | slice-ansi@0.0.4:
2119 | version "0.0.4"
2120 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
2121 |
2122 | sntp@1.x.x:
2123 | version "1.0.9"
2124 | resolved "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
2125 | dependencies:
2126 | hoek "2.x.x"
2127 |
2128 | source-map-support@^0.4.2:
2129 | version "0.4.14"
2130 | resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef"
2131 | dependencies:
2132 | source-map "^0.5.6"
2133 |
2134 | source-map@^0.5.0, source-map@^0.5.6:
2135 | version "0.5.6"
2136 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
2137 |
2138 | sprintf-js@~1.0.2:
2139 | version "1.0.3"
2140 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
2141 |
2142 | sshpk@^1.7.0:
2143 | version "1.11.0"
2144 | resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77"
2145 | dependencies:
2146 | asn1 "~0.2.3"
2147 | assert-plus "^1.0.0"
2148 | dashdash "^1.12.0"
2149 | getpass "^0.1.1"
2150 | optionalDependencies:
2151 | bcrypt-pbkdf "^1.0.0"
2152 | ecc-jsbn "~0.1.1"
2153 | jodid25519 "^1.0.0"
2154 | jsbn "~0.1.0"
2155 | tweetnacl "~0.14.0"
2156 |
2157 | string-width@^1.0.1:
2158 | version "1.0.2"
2159 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
2160 | dependencies:
2161 | code-point-at "^1.0.0"
2162 | is-fullwidth-code-point "^1.0.0"
2163 | strip-ansi "^3.0.0"
2164 |
2165 | string-width@^2.0.0:
2166 | version "2.0.0"
2167 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e"
2168 | dependencies:
2169 | is-fullwidth-code-point "^2.0.0"
2170 | strip-ansi "^3.0.0"
2171 |
2172 | string_decoder@~0.10.x:
2173 | version "0.10.31"
2174 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
2175 |
2176 | stringstream@~0.0.4:
2177 | version "0.0.5"
2178 | resolved "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
2179 |
2180 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
2181 | version "3.0.1"
2182 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
2183 | dependencies:
2184 | ansi-regex "^2.0.0"
2185 |
2186 | strip-bom@^3.0.0:
2187 | version "3.0.0"
2188 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
2189 |
2190 | strip-json-comments@~2.0.1:
2191 | version "2.0.1"
2192 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
2193 |
2194 | supports-color@^2.0.0:
2195 | version "2.0.0"
2196 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
2197 |
2198 | table@^3.7.8:
2199 | version "3.8.3"
2200 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f"
2201 | dependencies:
2202 | ajv "^4.7.0"
2203 | ajv-keywords "^1.0.0"
2204 | chalk "^1.1.1"
2205 | lodash "^4.0.0"
2206 | slice-ansi "0.0.4"
2207 | string-width "^2.0.0"
2208 |
2209 | tar-pack@^3.4.0:
2210 | version "3.4.0"
2211 | resolved "https://registry.npmjs.org/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984"
2212 | dependencies:
2213 | debug "^2.2.0"
2214 | fstream "^1.0.10"
2215 | fstream-ignore "^1.0.5"
2216 | once "^1.3.3"
2217 | readable-stream "^2.1.4"
2218 | rimraf "^2.5.1"
2219 | tar "^2.2.1"
2220 | uid-number "^0.0.6"
2221 |
2222 | tar@^2.2.1:
2223 | version "2.2.1"
2224 | resolved "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
2225 | dependencies:
2226 | block-stream "*"
2227 | fstream "^1.0.2"
2228 | inherits "2"
2229 |
2230 | text-table@~0.2.0:
2231 | version "0.2.0"
2232 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
2233 |
2234 | through@^2.3.6:
2235 | version "2.3.8"
2236 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
2237 |
2238 | to-fast-properties@^1.0.1:
2239 | version "1.0.2"
2240 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320"
2241 |
2242 | tough-cookie@~2.3.0:
2243 | version "2.3.2"
2244 | resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
2245 | dependencies:
2246 | punycode "^1.4.1"
2247 |
2248 | trim-right@^1.0.1:
2249 | version "1.0.1"
2250 | resolved "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
2251 |
2252 | tryit@^1.0.1:
2253 | version "1.0.3"
2254 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb"
2255 |
2256 | tunnel-agent@^0.6.0:
2257 | version "0.6.0"
2258 | resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
2259 | dependencies:
2260 | safe-buffer "^5.0.1"
2261 |
2262 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
2263 | version "0.14.5"
2264 | resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
2265 |
2266 | type-check@~0.3.2:
2267 | version "0.3.2"
2268 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
2269 | dependencies:
2270 | prelude-ls "~1.1.2"
2271 |
2272 | typedarray@^0.0.6:
2273 | version "0.0.6"
2274 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
2275 |
2276 | uid-number@^0.0.6:
2277 | version "0.0.6"
2278 | resolved "https://registry.npmjs.org/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
2279 |
2280 | user-home@^1.1.1:
2281 | version "1.1.1"
2282 | resolved "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190"
2283 |
2284 | user-home@^2.0.0:
2285 | version "2.0.0"
2286 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f"
2287 | dependencies:
2288 | os-homedir "^1.0.0"
2289 |
2290 | util-deprecate@~1.0.1:
2291 | version "1.0.2"
2292 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
2293 |
2294 | uuid@^3.0.0:
2295 | version "3.0.1"
2296 | resolved "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1"
2297 |
2298 | v8flags@^2.0.10:
2299 | version "2.0.12"
2300 | resolved "https://registry.npmjs.org/v8flags/-/v8flags-2.0.12.tgz#73235d9f7176f8e8833fb286795445f7938d84e5"
2301 | dependencies:
2302 | user-home "^1.1.1"
2303 |
2304 | verror@1.3.6:
2305 | version "1.3.6"
2306 | resolved "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
2307 | dependencies:
2308 | extsprintf "1.0.2"
2309 |
2310 | wide-align@^1.1.0:
2311 | version "1.1.0"
2312 | resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad"
2313 | dependencies:
2314 | string-width "^1.0.1"
2315 |
2316 | wordwrap@~1.0.0:
2317 | version "1.0.0"
2318 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
2319 |
2320 | wrappy@1:
2321 | version "1.0.2"
2322 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2323 |
2324 | write@^0.2.1:
2325 | version "0.2.1"
2326 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
2327 | dependencies:
2328 | mkdirp "^0.5.1"
2329 |
2330 | xtend@^4.0.0:
2331 | version "4.0.1"
2332 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
2333 |
--------------------------------------------------------------------------------