├── .babelrc ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── example ├── .babelrc ├── .gitignore ├── .watchmanconfig ├── assets │ └── icons │ │ ├── app.png │ │ └── loading.png ├── exp.json ├── main.js ├── package.json └── yarn.lock ├── flow-typed └── npm │ ├── flow-bin_v0.x.x.js │ └── jest_v20.x.x.js ├── package.json ├── scripts └── prettier.js ├── src ├── MasonryList.js └── __tests__ │ ├── MasonryList-test.js │ └── __snapshots__ │ └── MasonryList-test.js.snap └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "react-native" 4 | ] 5 | } -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "anf", 4 | ], 5 | "rules": { 6 | "react/prop-types": 0 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | .*/node_modules/react-native/RNTester/.* 11 | 12 | ; Ignore duplicate module providers 13 | ; For RN Apps installed via npm, "Libraries" folder is inside 14 | ; "node_modules/react-native" but in the source repo it is in the root 15 | .*/Libraries/react-native/React.js 16 | .*/Libraries/react-native/ReactNative.js 17 | 18 | /\example/ 19 | 20 | [include] 21 | 22 | [libs] 23 | node_modules/react-native/Libraries/react-native/react-native-interface.js 24 | node_modules/react-native/flow 25 | 26 | [options] 27 | emoji=true 28 | 29 | module.system=haste 30 | 31 | experimental.strict_type_args=true 32 | 33 | esproposal.decorators=ignore 34 | esproposal.class_static_fields=enable 35 | esproposal.class_instance_fields=enable 36 | 37 | munge_underscores=true 38 | 39 | module.file_ext=.ios.js 40 | module.file_ext=.js 41 | module.file_ext=.jsx 42 | module.file_ext=.json 43 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 44 | 45 | suppress_type=$FlowIssue 46 | suppress_type=$FlowFixMe 47 | suppress_type=$FixMe 48 | 49 | suppress_type=$FlowFixMeProps 50 | suppress_type=$FlowFixMeState 51 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(5[0-3]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 52 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(5[0-3]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 53 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 54 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 55 | 56 | unsafe.enable_getters_and_setters=true 57 | 58 | [version] 59 | ^0.53.0 60 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - "8" 5 | 6 | cache: 7 | yarn: true 8 | directories: 9 | - node_modules 10 | 11 | script: yarn ci 12 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 App & Flow 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # @appandflow/masonry-list 2 | 3 | [![npm (scoped)](https://img.shields.io/npm/v/@appandflow/masonry-list.svg)](https://www.npmjs.com/package/@appandflow/masonry-list) [![Travis branch](https://img.shields.io/travis/AppAndFlow/react-native-masonry-list/master.svg)](https://travis-ci.org/AppAndFlow/react-native-masonry-list) 4 | 5 | Allows creating masonry style list layouts in a performant way. 6 | 7 | This component leverages `FlatList` to render performant masonry layout lists. The 8 | main caveat right now is that it doesn't support measuring cells (yet) so you need to be 9 | able to provide the dimensions. 10 | 11 | ![](blob:http://imgur.com/c9ff3a44-7991-417b-8214-2b68aa8335e5) 12 | 13 | ## Installation 14 | 15 | `yarn add @appandflow/masonry-list` 16 | 17 | ## Usage 18 | 19 | `import MasonryList from '@appandflow/masonry-list';` 20 | 21 | ## Props 22 | 23 | This component supports most of the props of `FlatList` plus a few extras one: 24 | 25 | #### `getHeightForItem: ({ item: any, index: number }) => number,` 26 | 27 | Returns the height for a specific item. Note that this it *not* optional for now. 28 | 29 | #### `numColumns: number` 30 | 31 | The number of columns. 32 | 33 | #### `renderItem: ({ item: any, index: number, column: number }) => ?ReactElement<*>,` 34 | 35 | Same as `renderItem` from `FlatList` but also gets passed the column index. 36 | 37 | ## Example 38 | 39 | Play with on [Expo](https://exp.host/@appandflow/masonry-list-example) 40 | 41 | Take a look at [example folder](https://github.com/AppAndFlow/react-native-masonry-list/blob/master/example) 42 | 43 | ## TODO 44 | 45 | - Support measuring items automatically and get rid of `getHeightForItem`. 46 | 47 | - Implement onEndReached in a way that it isn't called multiple times. 48 | 49 | - Support FooterComponent. 50 | 51 | - Long term, could probably be implemented without using multiple `VirtualizedList` 52 | to make it more performant and less hacky. 53 | -------------------------------------------------------------------------------- /example/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["babel-preset-expo"], 3 | "env": { 4 | "development": { 5 | "plugins": ["transform-react-jsx-source"] 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/**/* 2 | .expo/* 3 | npm-debug.* 4 | -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/assets/icons/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-masonry-list/08582102fad6491f66c6ae057c187a3fbf93a317/example/assets/icons/app.png -------------------------------------------------------------------------------- /example/assets/icons/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-masonry-list/08582102fad6491f66c6ae057c187a3fbf93a317/example/assets/icons/loading.png -------------------------------------------------------------------------------- /example/exp.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "masonry-list-example", 3 | "description": "React Native MasonryList example", 4 | "slug": "masonry-list-example", 5 | "privacy": "public", 6 | "sdkVersion": "17.0.0", 7 | "version": "1.0.0", 8 | "orientation": "portrait", 9 | "primaryColor": "#cccccc", 10 | "icon": "./assets/icons/app.png", 11 | "loading": { 12 | "icon": "./assets/icons/loading.png", 13 | "hideExponentText": false 14 | }, 15 | "packagerOpts": { 16 | "assetExts": ["ttf", "mp4"] 17 | }, 18 | "ios": { 19 | "supportsTablet": true 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /example/main.js: -------------------------------------------------------------------------------- 1 | // @noflow 2 | 3 | import Expo from 'expo'; 4 | import React, { Component, PureComponent } from 'react'; 5 | import { StyleSheet, Text, View } from 'react-native'; 6 | import MasonryList from '@appandflow/masonry-list'; 7 | 8 | const COLORS = ['green', 'blue', 'red']; 9 | const DATA = Array.from({ length: 50000 }).map((_, i) => ({ 10 | id: `item_${i}`, 11 | height: Math.round(Math.random() * 100 + 50), 12 | color: COLORS[i % COLORS.length], 13 | })); 14 | 15 | class Cell extends PureComponent { 16 | componentDidMount() { 17 | console.warn('mount cell'); 18 | } 19 | 20 | componentWillUnmount() { 21 | console.warn('unmount cell'); 22 | } 23 | 24 | render() { 25 | const { item } = this.props; 26 | return ( 27 | 33 | {item.id} 34 | 35 | ); 36 | } 37 | } 38 | 39 | class App extends Component { 40 | state = { isRefreshing: false }; 41 | 42 | _refreshRequest = () => { 43 | this.setState({ isRefreshing: true }); 44 | setTimeout(() => { 45 | this.setState({ isRefreshing: false }); 46 | }, 1000); 47 | }; 48 | 49 | render() { 50 | return ( 51 | } 56 | getHeightForItem={({ item }) => item.height + 2} 57 | numColumns={2} 58 | keyExtractor={item => item.id} 59 | /> 60 | ); 61 | } 62 | } 63 | 64 | const styles = StyleSheet.create({ 65 | cell: { 66 | margin: 1, 67 | alignItems: 'center', 68 | justifyContent: 'center', 69 | }, 70 | }); 71 | 72 | Expo.registerRootComponent(App); 73 | -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "masonry-list-example", 3 | "version": "0.0.0", 4 | "description": "React Native MasonryList example", 5 | "author": null, 6 | "private": true, 7 | "main": "main.js", 8 | "dependencies": { 9 | "@appandflow/masonry-list": "file:../", 10 | "expo": "^17.0.0", 11 | "react": "16.0.0-alpha.6", 12 | "react-native": "https://github.com/expo/react-native/archive/sdk-17.0.0.tar.gz" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@appandflow/masonry-list@file:../": 6 | version "0.1.0" 7 | 8 | "@expo/vector-icons@^5.0.0": 9 | version "5.0.0" 10 | resolved "https://registry.yarnpkg.com/@expo/vector-icons/-/vector-icons-5.0.0.tgz#380d578a58b736b693acdd1aa86f8b6576465ba4" 11 | dependencies: 12 | react-native-vector-icons "4.1.1" 13 | 14 | abbrev@1: 15 | version "1.1.0" 16 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 17 | 18 | absolute-path@^0.0.0: 19 | version "0.0.0" 20 | resolved "https://registry.yarnpkg.com/absolute-path/-/absolute-path-0.0.0.tgz#a78762fbdadfb5297be99b15d35a785b2f095bf7" 21 | 22 | accepts@~1.2.12, accepts@~1.2.13: 23 | version "1.2.13" 24 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.2.13.tgz#e5f1f3928c6d95fd96558c36ec3d9d0de4a6ecea" 25 | dependencies: 26 | mime-types "~2.1.6" 27 | negotiator "0.5.3" 28 | 29 | accepts@~1.3.0: 30 | version "1.3.3" 31 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 32 | dependencies: 33 | mime-types "~2.1.11" 34 | negotiator "0.6.1" 35 | 36 | ajv@^4.9.1: 37 | version "4.11.8" 38 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 39 | dependencies: 40 | co "^4.6.0" 41 | json-stable-stringify "^1.0.1" 42 | 43 | align-text@^0.1.1, align-text@^0.1.3: 44 | version "0.1.4" 45 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 46 | dependencies: 47 | kind-of "^3.0.2" 48 | longest "^1.0.1" 49 | repeat-string "^1.5.2" 50 | 51 | ansi-escapes@^1.1.0: 52 | version "1.4.0" 53 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 54 | 55 | ansi-regex@^2.0.0: 56 | version "2.1.1" 57 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 58 | 59 | ansi-styles@^2.2.1: 60 | version "2.2.1" 61 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 62 | 63 | ansi@^0.3.0, ansi@~0.3.1: 64 | version "0.3.1" 65 | resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21" 66 | 67 | anymatch@^1.3.0: 68 | version "1.3.0" 69 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 70 | dependencies: 71 | arrify "^1.0.0" 72 | micromatch "^2.1.5" 73 | 74 | aproba@^1.0.3: 75 | version "1.1.1" 76 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 77 | 78 | are-we-there-yet@~1.1.2: 79 | version "1.1.4" 80 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 81 | dependencies: 82 | delegates "^1.0.0" 83 | readable-stream "^2.0.6" 84 | 85 | argsarray@0.0.1: 86 | version "0.0.1" 87 | resolved "https://registry.yarnpkg.com/argsarray/-/argsarray-0.0.1.tgz#6e7207b4ecdb39b0af88303fa5ae22bda8df61cb" 88 | 89 | arr-diff@^2.0.0: 90 | version "2.0.0" 91 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 92 | dependencies: 93 | arr-flatten "^1.0.1" 94 | 95 | arr-flatten@^1.0.1: 96 | version "1.0.3" 97 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 98 | 99 | array-differ@^1.0.0: 100 | version "1.0.0" 101 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 102 | 103 | array-filter@~0.0.0: 104 | version "0.0.1" 105 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 106 | 107 | array-map@~0.0.0: 108 | version "0.0.0" 109 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 110 | 111 | array-reduce@~0.0.0: 112 | version "0.0.0" 113 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 114 | 115 | array-uniq@^1.0.2: 116 | version "1.0.3" 117 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 118 | 119 | array-unique@^0.2.1: 120 | version "0.2.1" 121 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 122 | 123 | arrify@^1.0.0: 124 | version "1.0.1" 125 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 126 | 127 | art@^0.10.0: 128 | version "0.10.1" 129 | resolved "https://registry.yarnpkg.com/art/-/art-0.10.1.tgz#38541883e399225c5e193ff246e8f157cf7b2146" 130 | 131 | asap@~2.0.3: 132 | version "2.0.5" 133 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 134 | 135 | asn1@~0.2.3: 136 | version "0.2.3" 137 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 138 | 139 | assert-plus@1.0.0, assert-plus@^1.0.0: 140 | version "1.0.0" 141 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 142 | 143 | assert-plus@^0.2.0: 144 | version "0.2.0" 145 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 146 | 147 | async@^2.0.1: 148 | version "2.4.1" 149 | resolved "https://registry.yarnpkg.com/async/-/async-2.4.1.tgz#62a56b279c98a11d0987096a01cc3eeb8eb7bbd7" 150 | dependencies: 151 | lodash "^4.14.0" 152 | 153 | async@~0.2.6: 154 | version "0.2.10" 155 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 156 | 157 | asynckit@^0.4.0: 158 | version "0.4.0" 159 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 160 | 161 | aws-sign2@~0.6.0: 162 | version "0.6.0" 163 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 164 | 165 | aws4@^1.2.1: 166 | version "1.6.0" 167 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 168 | 169 | babel-code-frame@^6.22.0: 170 | version "6.22.0" 171 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 172 | dependencies: 173 | chalk "^1.1.0" 174 | esutils "^2.0.2" 175 | js-tokens "^3.0.0" 176 | 177 | babel-core@^6.21.0, babel-core@^6.24.1, babel-core@^6.7.2: 178 | version "6.24.1" 179 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 180 | dependencies: 181 | babel-code-frame "^6.22.0" 182 | babel-generator "^6.24.1" 183 | babel-helpers "^6.24.1" 184 | babel-messages "^6.23.0" 185 | babel-register "^6.24.1" 186 | babel-runtime "^6.22.0" 187 | babel-template "^6.24.1" 188 | babel-traverse "^6.24.1" 189 | babel-types "^6.24.1" 190 | babylon "^6.11.0" 191 | convert-source-map "^1.1.0" 192 | debug "^2.1.1" 193 | json5 "^0.5.0" 194 | lodash "^4.2.0" 195 | minimatch "^3.0.2" 196 | path-is-absolute "^1.0.0" 197 | private "^0.1.6" 198 | slash "^1.0.0" 199 | source-map "^0.5.0" 200 | 201 | babel-generator@^6.21.0, babel-generator@^6.24.1: 202 | version "6.24.1" 203 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 204 | dependencies: 205 | babel-messages "^6.23.0" 206 | babel-runtime "^6.22.0" 207 | babel-types "^6.24.1" 208 | detect-indent "^4.0.0" 209 | jsesc "^1.3.0" 210 | lodash "^4.2.0" 211 | source-map "^0.5.0" 212 | trim-right "^1.0.1" 213 | 214 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 215 | version "6.24.1" 216 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 217 | dependencies: 218 | babel-helper-explode-assignable-expression "^6.24.1" 219 | babel-runtime "^6.22.0" 220 | babel-types "^6.24.1" 221 | 222 | babel-helper-builder-react-jsx@^6.24.1: 223 | version "6.24.1" 224 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz#0ad7917e33c8d751e646daca4e77cc19377d2cbc" 225 | dependencies: 226 | babel-runtime "^6.22.0" 227 | babel-types "^6.24.1" 228 | esutils "^2.0.0" 229 | 230 | babel-helper-call-delegate@^6.24.1: 231 | version "6.24.1" 232 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 233 | dependencies: 234 | babel-helper-hoist-variables "^6.24.1" 235 | babel-runtime "^6.22.0" 236 | babel-traverse "^6.24.1" 237 | babel-types "^6.24.1" 238 | 239 | babel-helper-define-map@^6.24.1: 240 | version "6.24.1" 241 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 242 | dependencies: 243 | babel-helper-function-name "^6.24.1" 244 | babel-runtime "^6.22.0" 245 | babel-types "^6.24.1" 246 | lodash "^4.2.0" 247 | 248 | babel-helper-explode-assignable-expression@^6.24.1: 249 | version "6.24.1" 250 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 251 | dependencies: 252 | babel-runtime "^6.22.0" 253 | babel-traverse "^6.24.1" 254 | babel-types "^6.24.1" 255 | 256 | babel-helper-function-name@^6.24.1: 257 | version "6.24.1" 258 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 259 | dependencies: 260 | babel-helper-get-function-arity "^6.24.1" 261 | babel-runtime "^6.22.0" 262 | babel-template "^6.24.1" 263 | babel-traverse "^6.24.1" 264 | babel-types "^6.24.1" 265 | 266 | babel-helper-get-function-arity@^6.24.1: 267 | version "6.24.1" 268 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 269 | dependencies: 270 | babel-runtime "^6.22.0" 271 | babel-types "^6.24.1" 272 | 273 | babel-helper-hoist-variables@^6.24.1: 274 | version "6.24.1" 275 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 276 | dependencies: 277 | babel-runtime "^6.22.0" 278 | babel-types "^6.24.1" 279 | 280 | babel-helper-optimise-call-expression@^6.24.1: 281 | version "6.24.1" 282 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 283 | dependencies: 284 | babel-runtime "^6.22.0" 285 | babel-types "^6.24.1" 286 | 287 | babel-helper-regex@^6.24.1: 288 | version "6.24.1" 289 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 290 | dependencies: 291 | babel-runtime "^6.22.0" 292 | babel-types "^6.24.1" 293 | lodash "^4.2.0" 294 | 295 | babel-helper-remap-async-to-generator@^6.16.0: 296 | version "6.24.1" 297 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 298 | dependencies: 299 | babel-helper-function-name "^6.24.1" 300 | babel-runtime "^6.22.0" 301 | babel-template "^6.24.1" 302 | babel-traverse "^6.24.1" 303 | babel-types "^6.24.1" 304 | 305 | babel-helper-replace-supers@^6.24.1: 306 | version "6.24.1" 307 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 308 | dependencies: 309 | babel-helper-optimise-call-expression "^6.24.1" 310 | babel-messages "^6.23.0" 311 | babel-runtime "^6.22.0" 312 | babel-template "^6.24.1" 313 | babel-traverse "^6.24.1" 314 | babel-types "^6.24.1" 315 | 316 | babel-helpers@^6.24.1: 317 | version "6.24.1" 318 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 319 | dependencies: 320 | babel-runtime "^6.22.0" 321 | babel-template "^6.24.1" 322 | 323 | babel-messages@^6.23.0: 324 | version "6.23.0" 325 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 326 | dependencies: 327 | babel-runtime "^6.22.0" 328 | 329 | babel-plugin-check-es2015-constants@^6.22.0, babel-plugin-check-es2015-constants@^6.3.13, babel-plugin-check-es2015-constants@^6.5.0, babel-plugin-check-es2015-constants@^6.7.2, babel-plugin-check-es2015-constants@^6.8.0: 330 | version "6.22.0" 331 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 332 | dependencies: 333 | babel-runtime "^6.22.0" 334 | 335 | babel-plugin-external-helpers@^6.18.0: 336 | version "6.22.0" 337 | resolved "https://registry.yarnpkg.com/babel-plugin-external-helpers/-/babel-plugin-external-helpers-6.22.0.tgz#2285f48b02bd5dede85175caf8c62e86adccefa1" 338 | dependencies: 339 | babel-runtime "^6.22.0" 340 | 341 | babel-plugin-module-resolver@2.5.0: 342 | version "2.5.0" 343 | resolved "https://registry.yarnpkg.com/babel-plugin-module-resolver/-/babel-plugin-module-resolver-2.5.0.tgz#a1204b4aeada066e8afb9b9f9c43e238d73d41bb" 344 | dependencies: 345 | find-babel-config "^1.0.1" 346 | glob "^7.1.1" 347 | resolve "^1.2.0" 348 | 349 | babel-plugin-react-transform@2.0.2: 350 | version "2.0.2" 351 | resolved "https://registry.yarnpkg.com/babel-plugin-react-transform/-/babel-plugin-react-transform-2.0.2.tgz#515bbfa996893981142d90b1f9b1635de2995109" 352 | dependencies: 353 | lodash "^4.6.1" 354 | 355 | babel-plugin-syntax-async-functions@^6.5.0, babel-plugin-syntax-async-functions@^6.8.0: 356 | version "6.13.0" 357 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 358 | 359 | babel-plugin-syntax-class-constructor-call@^6.18.0: 360 | version "6.18.0" 361 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 362 | 363 | babel-plugin-syntax-class-properties@^6.5.0, babel-plugin-syntax-class-properties@^6.8.0: 364 | version "6.13.0" 365 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 366 | 367 | babel-plugin-syntax-decorators@^6.1.18: 368 | version "6.13.0" 369 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 370 | 371 | babel-plugin-syntax-do-expressions@^6.8.0: 372 | version "6.13.0" 373 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 374 | 375 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 376 | version "6.13.0" 377 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 378 | 379 | babel-plugin-syntax-export-extensions@^6.8.0: 380 | version "6.13.0" 381 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 382 | 383 | babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.5.0, babel-plugin-syntax-flow@^6.8.0: 384 | version "6.18.0" 385 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 386 | 387 | babel-plugin-syntax-function-bind@^6.8.0: 388 | version "6.13.0" 389 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 390 | 391 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.5.0, babel-plugin-syntax-jsx@^6.8.0: 392 | version "6.18.0" 393 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 394 | 395 | babel-plugin-syntax-object-rest-spread@^6.5.0, babel-plugin-syntax-object-rest-spread@^6.8.0: 396 | version "6.13.0" 397 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 398 | 399 | babel-plugin-syntax-trailing-function-commas@^6.13.0, babel-plugin-syntax-trailing-function-commas@^6.20.0, babel-plugin-syntax-trailing-function-commas@^6.5.0, babel-plugin-syntax-trailing-function-commas@^6.8.0: 400 | version "6.22.0" 401 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 402 | 403 | babel-plugin-transform-async-to-generator@6.16.0: 404 | version "6.16.0" 405 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz#19ec36cb1486b59f9f468adfa42ce13908ca2999" 406 | dependencies: 407 | babel-helper-remap-async-to-generator "^6.16.0" 408 | babel-plugin-syntax-async-functions "^6.8.0" 409 | babel-runtime "^6.0.0" 410 | 411 | babel-plugin-transform-class-constructor-call@^6.6.5: 412 | version "6.24.1" 413 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9" 414 | dependencies: 415 | babel-plugin-syntax-class-constructor-call "^6.18.0" 416 | babel-runtime "^6.22.0" 417 | babel-template "^6.24.1" 418 | 419 | babel-plugin-transform-class-properties@^6.5.0, babel-plugin-transform-class-properties@^6.6.0, babel-plugin-transform-class-properties@^6.8.0: 420 | version "6.24.1" 421 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 422 | dependencies: 423 | babel-helper-function-name "^6.24.1" 424 | babel-plugin-syntax-class-properties "^6.8.0" 425 | babel-runtime "^6.22.0" 426 | babel-template "^6.24.1" 427 | 428 | babel-plugin-transform-decorators-legacy@1.3.4, babel-plugin-transform-decorators-legacy@^1.3.4: 429 | version "1.3.4" 430 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators-legacy/-/babel-plugin-transform-decorators-legacy-1.3.4.tgz#741b58f6c5bce9e6027e0882d9c994f04f366925" 431 | dependencies: 432 | babel-plugin-syntax-decorators "^6.1.18" 433 | babel-runtime "^6.2.0" 434 | babel-template "^6.3.0" 435 | 436 | babel-plugin-transform-do-expressions@^6.5.0: 437 | version "6.22.0" 438 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 439 | dependencies: 440 | babel-plugin-syntax-do-expressions "^6.8.0" 441 | babel-runtime "^6.22.0" 442 | 443 | babel-plugin-transform-es2015-arrow-functions@^6.22.0, babel-plugin-transform-es2015-arrow-functions@^6.3.13, babel-plugin-transform-es2015-arrow-functions@^6.5.0, babel-plugin-transform-es2015-arrow-functions@^6.5.2, babel-plugin-transform-es2015-arrow-functions@^6.8.0: 444 | version "6.22.0" 445 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 446 | dependencies: 447 | babel-runtime "^6.22.0" 448 | 449 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0, babel-plugin-transform-es2015-block-scoped-functions@^6.3.13, babel-plugin-transform-es2015-block-scoped-functions@^6.6.5, babel-plugin-transform-es2015-block-scoped-functions@^6.8.0: 450 | version "6.22.0" 451 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 452 | dependencies: 453 | babel-runtime "^6.22.0" 454 | 455 | babel-plugin-transform-es2015-block-scoping@^6.24.1, babel-plugin-transform-es2015-block-scoping@^6.5.0, babel-plugin-transform-es2015-block-scoping@^6.7.1, babel-plugin-transform-es2015-block-scoping@^6.8.0, babel-plugin-transform-es2015-block-scoping@^6.9.0: 456 | version "6.24.1" 457 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 458 | dependencies: 459 | babel-runtime "^6.22.0" 460 | babel-template "^6.24.1" 461 | babel-traverse "^6.24.1" 462 | babel-types "^6.24.1" 463 | lodash "^4.2.0" 464 | 465 | babel-plugin-transform-es2015-classes@^6.24.1, babel-plugin-transform-es2015-classes@^6.5.0, babel-plugin-transform-es2015-classes@^6.6.5, babel-plugin-transform-es2015-classes@^6.8.0, babel-plugin-transform-es2015-classes@^6.9.0: 466 | version "6.24.1" 467 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 468 | dependencies: 469 | babel-helper-define-map "^6.24.1" 470 | babel-helper-function-name "^6.24.1" 471 | babel-helper-optimise-call-expression "^6.24.1" 472 | babel-helper-replace-supers "^6.24.1" 473 | babel-messages "^6.23.0" 474 | babel-runtime "^6.22.0" 475 | babel-template "^6.24.1" 476 | babel-traverse "^6.24.1" 477 | babel-types "^6.24.1" 478 | 479 | babel-plugin-transform-es2015-computed-properties@^6.24.1, babel-plugin-transform-es2015-computed-properties@^6.3.13, babel-plugin-transform-es2015-computed-properties@^6.5.0, babel-plugin-transform-es2015-computed-properties@^6.6.5, babel-plugin-transform-es2015-computed-properties@^6.8.0: 480 | version "6.24.1" 481 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 482 | dependencies: 483 | babel-runtime "^6.22.0" 484 | babel-template "^6.24.1" 485 | 486 | babel-plugin-transform-es2015-destructuring@6.x, babel-plugin-transform-es2015-destructuring@^6.22.0, babel-plugin-transform-es2015-destructuring@^6.5.0, babel-plugin-transform-es2015-destructuring@^6.6.5, babel-plugin-transform-es2015-destructuring@^6.8.0, babel-plugin-transform-es2015-destructuring@^6.9.0: 487 | version "6.23.0" 488 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 489 | dependencies: 490 | babel-runtime "^6.22.0" 491 | 492 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1, babel-plugin-transform-es2015-duplicate-keys@^6.6.0: 493 | version "6.24.1" 494 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 495 | dependencies: 496 | babel-runtime "^6.22.0" 497 | babel-types "^6.24.1" 498 | 499 | babel-plugin-transform-es2015-for-of@^6.22.0, babel-plugin-transform-es2015-for-of@^6.5.0, babel-plugin-transform-es2015-for-of@^6.6.0, babel-plugin-transform-es2015-for-of@^6.8.0: 500 | version "6.23.0" 501 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 502 | dependencies: 503 | babel-runtime "^6.22.0" 504 | 505 | babel-plugin-transform-es2015-function-name@6.x, babel-plugin-transform-es2015-function-name@^6.24.1, babel-plugin-transform-es2015-function-name@^6.5.0, babel-plugin-transform-es2015-function-name@^6.8.0, babel-plugin-transform-es2015-function-name@^6.9.0: 506 | version "6.24.1" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 508 | dependencies: 509 | babel-helper-function-name "^6.24.1" 510 | babel-runtime "^6.22.0" 511 | babel-types "^6.24.1" 512 | 513 | babel-plugin-transform-es2015-literals@^6.22.0, babel-plugin-transform-es2015-literals@^6.3.13, babel-plugin-transform-es2015-literals@^6.5.0, babel-plugin-transform-es2015-literals@^6.8.0: 514 | version "6.22.0" 515 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 516 | dependencies: 517 | babel-runtime "^6.22.0" 518 | 519 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 520 | version "6.24.1" 521 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 522 | dependencies: 523 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 524 | babel-runtime "^6.22.0" 525 | babel-template "^6.24.1" 526 | 527 | babel-plugin-transform-es2015-modules-commonjs@6.x, babel-plugin-transform-es2015-modules-commonjs@^6.24.1, babel-plugin-transform-es2015-modules-commonjs@^6.5.0, babel-plugin-transform-es2015-modules-commonjs@^6.6.0, babel-plugin-transform-es2015-modules-commonjs@^6.7.0, babel-plugin-transform-es2015-modules-commonjs@^6.8.0: 528 | version "6.24.1" 529 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 530 | dependencies: 531 | babel-plugin-transform-strict-mode "^6.24.1" 532 | babel-runtime "^6.22.0" 533 | babel-template "^6.24.1" 534 | babel-types "^6.24.1" 535 | 536 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 537 | version "6.24.1" 538 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 539 | dependencies: 540 | babel-helper-hoist-variables "^6.24.1" 541 | babel-runtime "^6.22.0" 542 | babel-template "^6.24.1" 543 | 544 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 545 | version "6.24.1" 546 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 547 | dependencies: 548 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 549 | babel-runtime "^6.22.0" 550 | babel-template "^6.24.1" 551 | 552 | babel-plugin-transform-es2015-object-super@^6.24.1, babel-plugin-transform-es2015-object-super@^6.3.13, babel-plugin-transform-es2015-object-super@^6.6.5, babel-plugin-transform-es2015-object-super@^6.8.0: 553 | version "6.24.1" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 555 | dependencies: 556 | babel-helper-replace-supers "^6.24.1" 557 | babel-runtime "^6.22.0" 558 | 559 | babel-plugin-transform-es2015-parameters@6.x, babel-plugin-transform-es2015-parameters@^6.24.1, babel-plugin-transform-es2015-parameters@^6.5.0, babel-plugin-transform-es2015-parameters@^6.7.0, babel-plugin-transform-es2015-parameters@^6.8.0, babel-plugin-transform-es2015-parameters@^6.9.0: 560 | version "6.24.1" 561 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 562 | dependencies: 563 | babel-helper-call-delegate "^6.24.1" 564 | babel-helper-get-function-arity "^6.24.1" 565 | babel-runtime "^6.22.0" 566 | babel-template "^6.24.1" 567 | babel-traverse "^6.24.1" 568 | babel-types "^6.24.1" 569 | 570 | babel-plugin-transform-es2015-shorthand-properties@6.x, babel-plugin-transform-es2015-shorthand-properties@^6.24.1, babel-plugin-transform-es2015-shorthand-properties@^6.3.13, babel-plugin-transform-es2015-shorthand-properties@^6.5.0, babel-plugin-transform-es2015-shorthand-properties@^6.8.0: 571 | version "6.24.1" 572 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 573 | dependencies: 574 | babel-runtime "^6.22.0" 575 | babel-types "^6.24.1" 576 | 577 | babel-plugin-transform-es2015-spread@6.x, babel-plugin-transform-es2015-spread@^6.22.0, babel-plugin-transform-es2015-spread@^6.3.13, babel-plugin-transform-es2015-spread@^6.5.0, babel-plugin-transform-es2015-spread@^6.6.5, babel-plugin-transform-es2015-spread@^6.8.0: 578 | version "6.22.0" 579 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 580 | dependencies: 581 | babel-runtime "^6.22.0" 582 | 583 | babel-plugin-transform-es2015-sticky-regex@6.x, babel-plugin-transform-es2015-sticky-regex@^6.24.1, babel-plugin-transform-es2015-sticky-regex@^6.3.13: 584 | version "6.24.1" 585 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 586 | dependencies: 587 | babel-helper-regex "^6.24.1" 588 | babel-runtime "^6.22.0" 589 | babel-types "^6.24.1" 590 | 591 | babel-plugin-transform-es2015-template-literals@^6.22.0, babel-plugin-transform-es2015-template-literals@^6.5.0, babel-plugin-transform-es2015-template-literals@^6.6.0, babel-plugin-transform-es2015-template-literals@^6.6.5, babel-plugin-transform-es2015-template-literals@^6.8.0: 592 | version "6.22.0" 593 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 594 | dependencies: 595 | babel-runtime "^6.22.0" 596 | 597 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0, babel-plugin-transform-es2015-typeof-symbol@^6.6.0: 598 | version "6.23.0" 599 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 600 | dependencies: 601 | babel-runtime "^6.22.0" 602 | 603 | babel-plugin-transform-es2015-unicode-regex@6.x, babel-plugin-transform-es2015-unicode-regex@^6.24.1, babel-plugin-transform-es2015-unicode-regex@^6.3.13: 604 | version "6.24.1" 605 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 606 | dependencies: 607 | babel-helper-regex "^6.24.1" 608 | babel-runtime "^6.22.0" 609 | regexpu-core "^2.0.0" 610 | 611 | babel-plugin-transform-es3-member-expression-literals@^6.5.0, babel-plugin-transform-es3-member-expression-literals@^6.8.0: 612 | version "6.22.0" 613 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es3-member-expression-literals/-/babel-plugin-transform-es3-member-expression-literals-6.22.0.tgz#733d3444f3ecc41bef8ed1a6a4e09657b8969ebb" 614 | dependencies: 615 | babel-runtime "^6.22.0" 616 | 617 | babel-plugin-transform-es3-property-literals@^6.5.0, babel-plugin-transform-es3-property-literals@^6.8.0: 618 | version "6.22.0" 619 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es3-property-literals/-/babel-plugin-transform-es3-property-literals-6.22.0.tgz#b2078d5842e22abf40f73e8cde9cd3711abd5758" 620 | dependencies: 621 | babel-runtime "^6.22.0" 622 | 623 | babel-plugin-transform-exponentiation-operator@^6.5.0, babel-plugin-transform-exponentiation-operator@^6.8.0: 624 | version "6.24.1" 625 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 626 | dependencies: 627 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 628 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 629 | babel-runtime "^6.22.0" 630 | 631 | babel-plugin-transform-export-extensions@^6.5.0: 632 | version "6.22.0" 633 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 634 | dependencies: 635 | babel-plugin-syntax-export-extensions "^6.8.0" 636 | babel-runtime "^6.22.0" 637 | 638 | babel-plugin-transform-flow-strip-types@^6.21.0, babel-plugin-transform-flow-strip-types@^6.22.0, babel-plugin-transform-flow-strip-types@^6.5.0, babel-plugin-transform-flow-strip-types@^6.7.0, babel-plugin-transform-flow-strip-types@^6.8.0: 639 | version "6.22.0" 640 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 641 | dependencies: 642 | babel-plugin-syntax-flow "^6.18.0" 643 | babel-runtime "^6.22.0" 644 | 645 | babel-plugin-transform-function-bind@^6.5.2: 646 | version "6.22.0" 647 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 648 | dependencies: 649 | babel-plugin-syntax-function-bind "^6.8.0" 650 | babel-runtime "^6.22.0" 651 | 652 | babel-plugin-transform-jscript@^6.8.0: 653 | version "6.22.0" 654 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-jscript/-/babel-plugin-transform-jscript-6.22.0.tgz#6e8af12b7aba49e0a809152616ac05690b3352dc" 655 | dependencies: 656 | babel-runtime "^6.22.0" 657 | 658 | babel-plugin-transform-object-assign@^6.5.0: 659 | version "6.22.0" 660 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-assign/-/babel-plugin-transform-object-assign-6.22.0.tgz#f99d2f66f1a0b0d498e346c5359684740caa20ba" 661 | dependencies: 662 | babel-runtime "^6.22.0" 663 | 664 | babel-plugin-transform-object-rest-spread@^6.16.0, babel-plugin-transform-object-rest-spread@^6.20.2, babel-plugin-transform-object-rest-spread@^6.5.0, babel-plugin-transform-object-rest-spread@^6.6.5, babel-plugin-transform-object-rest-spread@^6.8.0: 665 | version "6.23.0" 666 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 667 | dependencies: 668 | babel-plugin-syntax-object-rest-spread "^6.8.0" 669 | babel-runtime "^6.22.0" 670 | 671 | babel-plugin-transform-react-display-name@^6.23.0, babel-plugin-transform-react-display-name@^6.5.0, babel-plugin-transform-react-display-name@^6.8.0: 672 | version "6.23.0" 673 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" 674 | dependencies: 675 | babel-runtime "^6.22.0" 676 | 677 | babel-plugin-transform-react-jsx-self@^6.22.0: 678 | version "6.22.0" 679 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 680 | dependencies: 681 | babel-plugin-syntax-jsx "^6.8.0" 682 | babel-runtime "^6.22.0" 683 | 684 | babel-plugin-transform-react-jsx-source@^6.22.0, babel-plugin-transform-react-jsx-source@^6.5.0: 685 | version "6.22.0" 686 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 687 | dependencies: 688 | babel-plugin-syntax-jsx "^6.8.0" 689 | babel-runtime "^6.22.0" 690 | 691 | babel-plugin-transform-react-jsx@^6.24.1, babel-plugin-transform-react-jsx@^6.5.0, babel-plugin-transform-react-jsx@^6.8.0: 692 | version "6.24.1" 693 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 694 | dependencies: 695 | babel-helper-builder-react-jsx "^6.24.1" 696 | babel-plugin-syntax-jsx "^6.8.0" 697 | babel-runtime "^6.22.0" 698 | 699 | babel-plugin-transform-regenerator@^6.24.1, babel-plugin-transform-regenerator@^6.5.0, babel-plugin-transform-regenerator@^6.9.0: 700 | version "6.24.1" 701 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 702 | dependencies: 703 | regenerator-transform "0.9.11" 704 | 705 | babel-plugin-transform-strict-mode@^6.24.1: 706 | version "6.24.1" 707 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 708 | dependencies: 709 | babel-runtime "^6.22.0" 710 | babel-types "^6.24.1" 711 | 712 | babel-polyfill@^6.20.0: 713 | version "6.23.0" 714 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 715 | dependencies: 716 | babel-runtime "^6.22.0" 717 | core-js "^2.4.0" 718 | regenerator-runtime "^0.10.0" 719 | 720 | babel-preset-airbnb@^2.2.3: 721 | version "2.2.3" 722 | resolved "https://registry.yarnpkg.com/babel-preset-airbnb/-/babel-preset-airbnb-2.2.3.tgz#89c634b94ce88e15a28e70061cad51528ba4f75b" 723 | dependencies: 724 | babel-plugin-syntax-trailing-function-commas "^6.13.0" 725 | babel-plugin-transform-es2015-template-literals "^6.8.0" 726 | babel-plugin-transform-es3-member-expression-literals "^6.8.0" 727 | babel-plugin-transform-es3-property-literals "^6.8.0" 728 | babel-plugin-transform-exponentiation-operator "^6.8.0" 729 | babel-plugin-transform-jscript "^6.8.0" 730 | babel-plugin-transform-object-rest-spread "^6.16.0" 731 | babel-preset-es2015 "^6.22.0" 732 | babel-preset-es2015-without-strict "^0.0.4" 733 | babel-preset-react "^6.16.0" 734 | 735 | babel-preset-es2015-node@^6.1.1: 736 | version "6.1.1" 737 | resolved "https://registry.yarnpkg.com/babel-preset-es2015-node/-/babel-preset-es2015-node-6.1.1.tgz#60b23157024b0cfebf3a63554cb05ee035b4e55f" 738 | dependencies: 739 | babel-plugin-transform-es2015-destructuring "6.x" 740 | babel-plugin-transform-es2015-function-name "6.x" 741 | babel-plugin-transform-es2015-modules-commonjs "6.x" 742 | babel-plugin-transform-es2015-parameters "6.x" 743 | babel-plugin-transform-es2015-shorthand-properties "6.x" 744 | babel-plugin-transform-es2015-spread "6.x" 745 | babel-plugin-transform-es2015-sticky-regex "6.x" 746 | babel-plugin-transform-es2015-unicode-regex "6.x" 747 | semver "5.x" 748 | 749 | babel-preset-es2015-without-strict@^0.0.4: 750 | version "0.0.4" 751 | resolved "https://registry.yarnpkg.com/babel-preset-es2015-without-strict/-/babel-preset-es2015-without-strict-0.0.4.tgz#88c9f36e79d4762c58347b1a698a07c35b6bda5d" 752 | dependencies: 753 | babel-plugin-check-es2015-constants "^6.3.13" 754 | babel-plugin-transform-es2015-arrow-functions "^6.3.13" 755 | babel-plugin-transform-es2015-block-scoped-functions "^6.3.13" 756 | babel-plugin-transform-es2015-block-scoping "^6.9.0" 757 | babel-plugin-transform-es2015-classes "^6.9.0" 758 | babel-plugin-transform-es2015-computed-properties "^6.3.13" 759 | babel-plugin-transform-es2015-destructuring "^6.9.0" 760 | babel-plugin-transform-es2015-duplicate-keys "^6.6.0" 761 | babel-plugin-transform-es2015-for-of "^6.6.0" 762 | babel-plugin-transform-es2015-function-name "^6.9.0" 763 | babel-plugin-transform-es2015-literals "^6.3.13" 764 | babel-plugin-transform-es2015-modules-commonjs "^6.6.0" 765 | babel-plugin-transform-es2015-object-super "^6.3.13" 766 | babel-plugin-transform-es2015-parameters "^6.9.0" 767 | babel-plugin-transform-es2015-shorthand-properties "^6.3.13" 768 | babel-plugin-transform-es2015-spread "^6.3.13" 769 | babel-plugin-transform-es2015-sticky-regex "^6.3.13" 770 | babel-plugin-transform-es2015-template-literals "^6.6.0" 771 | babel-plugin-transform-es2015-typeof-symbol "^6.6.0" 772 | babel-plugin-transform-es2015-unicode-regex "^6.3.13" 773 | babel-plugin-transform-regenerator "^6.9.0" 774 | 775 | babel-preset-es2015@^6.22.0: 776 | version "6.24.1" 777 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 778 | dependencies: 779 | babel-plugin-check-es2015-constants "^6.22.0" 780 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 781 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 782 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 783 | babel-plugin-transform-es2015-classes "^6.24.1" 784 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 785 | babel-plugin-transform-es2015-destructuring "^6.22.0" 786 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 787 | babel-plugin-transform-es2015-for-of "^6.22.0" 788 | babel-plugin-transform-es2015-function-name "^6.24.1" 789 | babel-plugin-transform-es2015-literals "^6.22.0" 790 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 791 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 792 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 793 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 794 | babel-plugin-transform-es2015-object-super "^6.24.1" 795 | babel-plugin-transform-es2015-parameters "^6.24.1" 796 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 797 | babel-plugin-transform-es2015-spread "^6.22.0" 798 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 799 | babel-plugin-transform-es2015-template-literals "^6.22.0" 800 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 801 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 802 | babel-plugin-transform-regenerator "^6.24.1" 803 | 804 | babel-preset-expo@^2.0.0: 805 | version "2.0.0" 806 | resolved "https://registry.yarnpkg.com/babel-preset-expo/-/babel-preset-expo-2.0.0.tgz#8a34d34fe5b621c8a152bc9fc06567ff270d314b" 807 | dependencies: 808 | babel-plugin-module-resolver "2.5.0" 809 | babel-plugin-transform-decorators-legacy "1.3.4" 810 | babel-preset-react-native-stage-0 "1.0.1" 811 | 812 | babel-preset-fbjs@^1.0.0: 813 | version "1.0.0" 814 | resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-1.0.0.tgz#c972e5c9b301d4ec9e7971f4aec3e14ac017a8b0" 815 | dependencies: 816 | babel-plugin-check-es2015-constants "^6.7.2" 817 | babel-plugin-syntax-flow "^6.5.0" 818 | babel-plugin-syntax-object-rest-spread "^6.5.0" 819 | babel-plugin-syntax-trailing-function-commas "^6.5.0" 820 | babel-plugin-transform-class-properties "^6.6.0" 821 | babel-plugin-transform-es2015-arrow-functions "^6.5.2" 822 | babel-plugin-transform-es2015-block-scoped-functions "^6.6.5" 823 | babel-plugin-transform-es2015-block-scoping "^6.7.1" 824 | babel-plugin-transform-es2015-classes "^6.6.5" 825 | babel-plugin-transform-es2015-computed-properties "^6.6.5" 826 | babel-plugin-transform-es2015-destructuring "^6.6.5" 827 | babel-plugin-transform-es2015-for-of "^6.6.0" 828 | babel-plugin-transform-es2015-literals "^6.5.0" 829 | babel-plugin-transform-es2015-modules-commonjs "^6.7.0" 830 | babel-plugin-transform-es2015-object-super "^6.6.5" 831 | babel-plugin-transform-es2015-parameters "^6.7.0" 832 | babel-plugin-transform-es2015-shorthand-properties "^6.5.0" 833 | babel-plugin-transform-es2015-spread "^6.6.5" 834 | babel-plugin-transform-es2015-template-literals "^6.6.5" 835 | babel-plugin-transform-es3-member-expression-literals "^6.5.0" 836 | babel-plugin-transform-es3-property-literals "^6.5.0" 837 | babel-plugin-transform-flow-strip-types "^6.7.0" 838 | babel-plugin-transform-object-rest-spread "^6.6.5" 839 | object-assign "^4.0.1" 840 | 841 | babel-preset-fbjs@^2.1.0: 842 | version "2.1.2" 843 | resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-2.1.2.tgz#f52b2df56b1da883ffb7798b3b3be42c4c647a77" 844 | dependencies: 845 | babel-plugin-check-es2015-constants "^6.8.0" 846 | babel-plugin-syntax-class-properties "^6.8.0" 847 | babel-plugin-syntax-flow "^6.8.0" 848 | babel-plugin-syntax-jsx "^6.8.0" 849 | babel-plugin-syntax-object-rest-spread "^6.8.0" 850 | babel-plugin-syntax-trailing-function-commas "^6.8.0" 851 | babel-plugin-transform-class-properties "^6.8.0" 852 | babel-plugin-transform-es2015-arrow-functions "^6.8.0" 853 | babel-plugin-transform-es2015-block-scoped-functions "^6.8.0" 854 | babel-plugin-transform-es2015-block-scoping "^6.8.0" 855 | babel-plugin-transform-es2015-classes "^6.8.0" 856 | babel-plugin-transform-es2015-computed-properties "^6.8.0" 857 | babel-plugin-transform-es2015-destructuring "^6.8.0" 858 | babel-plugin-transform-es2015-for-of "^6.8.0" 859 | babel-plugin-transform-es2015-function-name "^6.8.0" 860 | babel-plugin-transform-es2015-literals "^6.8.0" 861 | babel-plugin-transform-es2015-modules-commonjs "^6.8.0" 862 | babel-plugin-transform-es2015-object-super "^6.8.0" 863 | babel-plugin-transform-es2015-parameters "^6.8.0" 864 | babel-plugin-transform-es2015-shorthand-properties "^6.8.0" 865 | babel-plugin-transform-es2015-spread "^6.8.0" 866 | babel-plugin-transform-es2015-template-literals "^6.8.0" 867 | babel-plugin-transform-es3-member-expression-literals "^6.8.0" 868 | babel-plugin-transform-es3-property-literals "^6.8.0" 869 | babel-plugin-transform-flow-strip-types "^6.8.0" 870 | babel-plugin-transform-object-rest-spread "^6.8.0" 871 | babel-plugin-transform-react-display-name "^6.8.0" 872 | babel-plugin-transform-react-jsx "^6.8.0" 873 | 874 | babel-preset-flow@^6.23.0: 875 | version "6.23.0" 876 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 877 | dependencies: 878 | babel-plugin-transform-flow-strip-types "^6.22.0" 879 | 880 | babel-preset-react-native-stage-0@1.0.1: 881 | version "1.0.1" 882 | resolved "https://registry.yarnpkg.com/babel-preset-react-native-stage-0/-/babel-preset-react-native-stage-0-1.0.1.tgz#d5f5f685575471ef756a49f191b193269f74306e" 883 | dependencies: 884 | babel-plugin-syntax-trailing-function-commas "^6.5.0" 885 | babel-plugin-transform-class-constructor-call "^6.6.5" 886 | babel-plugin-transform-decorators-legacy "^1.3.4" 887 | babel-plugin-transform-do-expressions "^6.5.0" 888 | babel-plugin-transform-exponentiation-operator "^6.5.0" 889 | babel-plugin-transform-export-extensions "^6.5.0" 890 | babel-plugin-transform-function-bind "^6.5.2" 891 | babel-preset-react-native "^1.5.6" 892 | 893 | babel-preset-react-native@^1.5.6, babel-preset-react-native@^1.9.1: 894 | version "1.9.2" 895 | resolved "https://registry.yarnpkg.com/babel-preset-react-native/-/babel-preset-react-native-1.9.2.tgz#b22addd2e355ff3b39671b79be807e52dfa145f2" 896 | dependencies: 897 | babel-plugin-check-es2015-constants "^6.5.0" 898 | babel-plugin-react-transform "2.0.2" 899 | babel-plugin-syntax-async-functions "^6.5.0" 900 | babel-plugin-syntax-class-properties "^6.5.0" 901 | babel-plugin-syntax-flow "^6.5.0" 902 | babel-plugin-syntax-jsx "^6.5.0" 903 | babel-plugin-syntax-trailing-function-commas "^6.5.0" 904 | babel-plugin-transform-class-properties "^6.5.0" 905 | babel-plugin-transform-es2015-arrow-functions "^6.5.0" 906 | babel-plugin-transform-es2015-block-scoping "^6.5.0" 907 | babel-plugin-transform-es2015-classes "^6.5.0" 908 | babel-plugin-transform-es2015-computed-properties "^6.5.0" 909 | babel-plugin-transform-es2015-destructuring "^6.5.0" 910 | babel-plugin-transform-es2015-for-of "^6.5.0" 911 | babel-plugin-transform-es2015-function-name "^6.5.0" 912 | babel-plugin-transform-es2015-literals "^6.5.0" 913 | babel-plugin-transform-es2015-modules-commonjs "^6.5.0" 914 | babel-plugin-transform-es2015-parameters "^6.5.0" 915 | babel-plugin-transform-es2015-shorthand-properties "^6.5.0" 916 | babel-plugin-transform-es2015-spread "^6.5.0" 917 | babel-plugin-transform-es2015-template-literals "^6.5.0" 918 | babel-plugin-transform-flow-strip-types "^6.5.0" 919 | babel-plugin-transform-object-assign "^6.5.0" 920 | babel-plugin-transform-object-rest-spread "^6.5.0" 921 | babel-plugin-transform-react-display-name "^6.5.0" 922 | babel-plugin-transform-react-jsx "^6.5.0" 923 | babel-plugin-transform-react-jsx-source "^6.5.0" 924 | babel-plugin-transform-regenerator "^6.5.0" 925 | react-transform-hmr "^1.0.4" 926 | 927 | babel-preset-react@^6.16.0: 928 | version "6.24.1" 929 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 930 | dependencies: 931 | babel-plugin-syntax-jsx "^6.3.13" 932 | babel-plugin-transform-react-display-name "^6.23.0" 933 | babel-plugin-transform-react-jsx "^6.24.1" 934 | babel-plugin-transform-react-jsx-self "^6.22.0" 935 | babel-plugin-transform-react-jsx-source "^6.22.0" 936 | babel-preset-flow "^6.23.0" 937 | 938 | babel-register@^6.18.0, babel-register@^6.24.1: 939 | version "6.24.1" 940 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 941 | dependencies: 942 | babel-core "^6.24.1" 943 | babel-runtime "^6.22.0" 944 | core-js "^2.4.0" 945 | home-or-tmp "^2.0.0" 946 | lodash "^4.2.0" 947 | mkdirp "^0.5.1" 948 | source-map-support "^0.4.2" 949 | 950 | babel-runtime@^6.0.0, babel-runtime@^6.18.0, babel-runtime@^6.2.0, babel-runtime@^6.20.0, babel-runtime@^6.22.0: 951 | version "6.23.0" 952 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 953 | dependencies: 954 | core-js "^2.4.0" 955 | regenerator-runtime "^0.10.0" 956 | 957 | babel-template@^6.24.1, babel-template@^6.3.0: 958 | version "6.24.1" 959 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 960 | dependencies: 961 | babel-runtime "^6.22.0" 962 | babel-traverse "^6.24.1" 963 | babel-types "^6.24.1" 964 | babylon "^6.11.0" 965 | lodash "^4.2.0" 966 | 967 | babel-traverse@^6.21.0, babel-traverse@^6.24.1: 968 | version "6.24.1" 969 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 970 | dependencies: 971 | babel-code-frame "^6.22.0" 972 | babel-messages "^6.23.0" 973 | babel-runtime "^6.22.0" 974 | babel-types "^6.24.1" 975 | babylon "^6.15.0" 976 | debug "^2.2.0" 977 | globals "^9.0.0" 978 | invariant "^2.2.0" 979 | lodash "^4.2.0" 980 | 981 | babel-types@^6.19.0, babel-types@^6.21.0, babel-types@^6.24.1: 982 | version "6.24.1" 983 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 984 | dependencies: 985 | babel-runtime "^6.22.0" 986 | esutils "^2.0.2" 987 | lodash "^4.2.0" 988 | to-fast-properties "^1.0.1" 989 | 990 | babylon@^6.11.0, babylon@^6.15.0, babylon@^6.16.1: 991 | version "6.17.1" 992 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f" 993 | 994 | balanced-match@^0.4.1: 995 | version "0.4.2" 996 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 997 | 998 | base64-js@0.0.8: 999 | version "0.0.8" 1000 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-0.0.8.tgz#1101e9544f4a76b1bc3b26d452ca96d7a35e7978" 1001 | 1002 | base64-js@1.1.2: 1003 | version "1.1.2" 1004 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.1.2.tgz#d6400cac1c4c660976d90d07a04351d89395f5e8" 1005 | 1006 | base64-js@^1.1.2: 1007 | version "1.2.0" 1008 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 1009 | 1010 | base64-url@1.2.1: 1011 | version "1.2.1" 1012 | resolved "https://registry.yarnpkg.com/base64-url/-/base64-url-1.2.1.tgz#199fd661702a0e7b7dcae6e0698bb089c52f6d78" 1013 | 1014 | basic-auth-connect@1.0.0: 1015 | version "1.0.0" 1016 | resolved "https://registry.yarnpkg.com/basic-auth-connect/-/basic-auth-connect-1.0.0.tgz#fdb0b43962ca7b40456a7c2bb48fe173da2d2122" 1017 | 1018 | basic-auth@~1.0.3: 1019 | version "1.0.4" 1020 | resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-1.0.4.tgz#030935b01de7c9b94a824b29f3fccb750d3a5290" 1021 | 1022 | batch@0.5.3: 1023 | version "0.5.3" 1024 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.5.3.tgz#3f3414f380321743bfc1042f9a83ff1d5824d464" 1025 | 1026 | bcrypt-pbkdf@^1.0.0: 1027 | version "1.0.1" 1028 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 1029 | dependencies: 1030 | tweetnacl "^0.14.3" 1031 | 1032 | beeper@^1.0.0: 1033 | version "1.1.1" 1034 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809" 1035 | 1036 | big-integer@^1.6.7: 1037 | version "1.6.22" 1038 | resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.22.tgz#487c95fce886022ea48ff5f19e388932df46dd2e" 1039 | 1040 | block-stream@*: 1041 | version "0.0.9" 1042 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 1043 | dependencies: 1044 | inherits "~2.0.0" 1045 | 1046 | body-parser@~1.13.3: 1047 | version "1.13.3" 1048 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.13.3.tgz#c08cf330c3358e151016a05746f13f029c97fa97" 1049 | dependencies: 1050 | bytes "2.1.0" 1051 | content-type "~1.0.1" 1052 | debug "~2.2.0" 1053 | depd "~1.0.1" 1054 | http-errors "~1.3.1" 1055 | iconv-lite "0.4.11" 1056 | on-finished "~2.3.0" 1057 | qs "4.0.0" 1058 | raw-body "~2.1.2" 1059 | type-is "~1.6.6" 1060 | 1061 | boom@2.x.x: 1062 | version "2.10.1" 1063 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 1064 | dependencies: 1065 | hoek "2.x.x" 1066 | 1067 | bplist-creator@0.0.7: 1068 | version "0.0.7" 1069 | resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.0.7.tgz#37df1536092824b87c42f957b01344117372ae45" 1070 | dependencies: 1071 | stream-buffers "~2.2.0" 1072 | 1073 | bplist-parser@0.1.1: 1074 | version "0.1.1" 1075 | resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.1.1.tgz#d60d5dcc20cba6dc7e1f299b35d3e1f95dafbae6" 1076 | dependencies: 1077 | big-integer "^1.6.7" 1078 | 1079 | brace-expansion@^1.1.7: 1080 | version "1.1.7" 1081 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 1082 | dependencies: 1083 | balanced-match "^0.4.1" 1084 | concat-map "0.0.1" 1085 | 1086 | braces@^1.8.2: 1087 | version "1.8.5" 1088 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 1089 | dependencies: 1090 | expand-range "^1.8.1" 1091 | preserve "^0.2.0" 1092 | repeat-element "^1.1.2" 1093 | 1094 | bser@1.0.2: 1095 | version "1.0.2" 1096 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 1097 | dependencies: 1098 | node-int64 "^0.4.0" 1099 | 1100 | bser@^2.0.0: 1101 | version "2.0.0" 1102 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 1103 | dependencies: 1104 | node-int64 "^0.4.0" 1105 | 1106 | buffer-shims@~1.0.0: 1107 | version "1.0.0" 1108 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 1109 | 1110 | builtin-modules@^1.0.0: 1111 | version "1.1.1" 1112 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 1113 | 1114 | bytes@2.1.0: 1115 | version "2.1.0" 1116 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.1.0.tgz#ac93c410e2ffc9cc7cf4b464b38289067f5e47b4" 1117 | 1118 | bytes@2.4.0: 1119 | version "2.4.0" 1120 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" 1121 | 1122 | camelcase@^1.0.2: 1123 | version "1.2.1" 1124 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 1125 | 1126 | camelcase@^3.0.0: 1127 | version "3.0.0" 1128 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 1129 | 1130 | caseless@~0.12.0: 1131 | version "0.12.0" 1132 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1133 | 1134 | center-align@^0.1.1: 1135 | version "0.1.3" 1136 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1137 | dependencies: 1138 | align-text "^0.1.3" 1139 | lazy-cache "^1.0.3" 1140 | 1141 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1: 1142 | version "1.1.3" 1143 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1144 | dependencies: 1145 | ansi-styles "^2.2.1" 1146 | escape-string-regexp "^1.0.2" 1147 | has-ansi "^2.0.0" 1148 | strip-ansi "^3.0.0" 1149 | supports-color "^2.0.0" 1150 | 1151 | cli-cursor@^1.0.1: 1152 | version "1.0.2" 1153 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 1154 | dependencies: 1155 | restore-cursor "^1.0.1" 1156 | 1157 | cli-width@^2.0.0: 1158 | version "2.1.0" 1159 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 1160 | 1161 | cliui@^2.1.0: 1162 | version "2.1.0" 1163 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1164 | dependencies: 1165 | center-align "^0.1.1" 1166 | right-align "^0.1.1" 1167 | wordwrap "0.0.2" 1168 | 1169 | cliui@^3.2.0: 1170 | version "3.2.0" 1171 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1172 | dependencies: 1173 | string-width "^1.0.1" 1174 | strip-ansi "^3.0.1" 1175 | wrap-ansi "^2.0.0" 1176 | 1177 | clone-stats@^0.0.1: 1178 | version "0.0.1" 1179 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 1180 | 1181 | clone@^1.0.0, clone@^1.0.2: 1182 | version "1.0.2" 1183 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 1184 | 1185 | co@^4.6.0: 1186 | version "4.6.0" 1187 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1188 | 1189 | code-point-at@^1.0.0: 1190 | version "1.1.0" 1191 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1192 | 1193 | color-convert@^1.3.0: 1194 | version "1.9.0" 1195 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 1196 | dependencies: 1197 | color-name "^1.1.1" 1198 | 1199 | color-name@^1.0.0, color-name@^1.1.1: 1200 | version "1.1.2" 1201 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 1202 | 1203 | color-string@^0.3.0: 1204 | version "0.3.0" 1205 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" 1206 | dependencies: 1207 | color-name "^1.0.0" 1208 | 1209 | color@^0.11.1: 1210 | version "0.11.4" 1211 | resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" 1212 | dependencies: 1213 | clone "^1.0.2" 1214 | color-convert "^1.3.0" 1215 | color-string "^0.3.0" 1216 | 1217 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1218 | version "1.0.5" 1219 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1220 | dependencies: 1221 | delayed-stream "~1.0.0" 1222 | 1223 | commander@^2.9.0: 1224 | version "2.9.0" 1225 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1226 | dependencies: 1227 | graceful-readlink ">= 1.0.0" 1228 | 1229 | compressible@~2.0.5: 1230 | version "2.0.10" 1231 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.10.tgz#feda1c7f7617912732b29bf8cf26252a20b9eecd" 1232 | dependencies: 1233 | mime-db ">= 1.27.0 < 2" 1234 | 1235 | compression@~1.5.2: 1236 | version "1.5.2" 1237 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.5.2.tgz#b03b8d86e6f8ad29683cba8df91ddc6ffc77b395" 1238 | dependencies: 1239 | accepts "~1.2.12" 1240 | bytes "2.1.0" 1241 | compressible "~2.0.5" 1242 | debug "~2.2.0" 1243 | on-headers "~1.0.0" 1244 | vary "~1.0.1" 1245 | 1246 | concat-map@0.0.1: 1247 | version "0.0.1" 1248 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1249 | 1250 | concat-stream@^1.6.0: 1251 | version "1.6.0" 1252 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1253 | dependencies: 1254 | inherits "^2.0.3" 1255 | readable-stream "^2.2.2" 1256 | typedarray "^0.0.6" 1257 | 1258 | connect-timeout@~1.6.2: 1259 | version "1.6.2" 1260 | resolved "https://registry.yarnpkg.com/connect-timeout/-/connect-timeout-1.6.2.tgz#de9a5ec61e33a12b6edaab7b5f062e98c599b88e" 1261 | dependencies: 1262 | debug "~2.2.0" 1263 | http-errors "~1.3.1" 1264 | ms "0.7.1" 1265 | on-headers "~1.0.0" 1266 | 1267 | connect@^2.8.3: 1268 | version "2.30.2" 1269 | resolved "https://registry.yarnpkg.com/connect/-/connect-2.30.2.tgz#8da9bcbe8a054d3d318d74dfec903b5c39a1b609" 1270 | dependencies: 1271 | basic-auth-connect "1.0.0" 1272 | body-parser "~1.13.3" 1273 | bytes "2.1.0" 1274 | compression "~1.5.2" 1275 | connect-timeout "~1.6.2" 1276 | content-type "~1.0.1" 1277 | cookie "0.1.3" 1278 | cookie-parser "~1.3.5" 1279 | cookie-signature "1.0.6" 1280 | csurf "~1.8.3" 1281 | debug "~2.2.0" 1282 | depd "~1.0.1" 1283 | errorhandler "~1.4.2" 1284 | express-session "~1.11.3" 1285 | finalhandler "0.4.0" 1286 | fresh "0.3.0" 1287 | http-errors "~1.3.1" 1288 | method-override "~2.3.5" 1289 | morgan "~1.6.1" 1290 | multiparty "3.3.2" 1291 | on-headers "~1.0.0" 1292 | parseurl "~1.3.0" 1293 | pause "0.1.0" 1294 | qs "4.0.0" 1295 | response-time "~2.3.1" 1296 | serve-favicon "~2.3.0" 1297 | serve-index "~1.7.2" 1298 | serve-static "~1.10.0" 1299 | type-is "~1.6.6" 1300 | utils-merge "1.0.0" 1301 | vhost "~3.0.1" 1302 | 1303 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1304 | version "1.1.0" 1305 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1306 | 1307 | content-type@~1.0.1: 1308 | version "1.0.2" 1309 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 1310 | 1311 | convert-source-map@^1.1.0: 1312 | version "1.5.0" 1313 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1314 | 1315 | cookie-parser@~1.3.5: 1316 | version "1.3.5" 1317 | resolved "https://registry.yarnpkg.com/cookie-parser/-/cookie-parser-1.3.5.tgz#9d755570fb5d17890771227a02314d9be7cf8356" 1318 | dependencies: 1319 | cookie "0.1.3" 1320 | cookie-signature "1.0.6" 1321 | 1322 | cookie-signature@1.0.6: 1323 | version "1.0.6" 1324 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 1325 | 1326 | cookie@0.1.3: 1327 | version "0.1.3" 1328 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.1.3.tgz#e734a5c1417fce472d5aef82c381cabb64d1a435" 1329 | 1330 | core-js@^1.0.0: 1331 | version "1.2.7" 1332 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1333 | 1334 | core-js@^2.2.2, core-js@^2.4.0: 1335 | version "2.4.1" 1336 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1337 | 1338 | core-util-is@~1.0.0: 1339 | version "1.0.2" 1340 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1341 | 1342 | crc@3.3.0: 1343 | version "3.3.0" 1344 | resolved "https://registry.yarnpkg.com/crc/-/crc-3.3.0.tgz#fa622e1bc388bf257309082d6b65200ce67090ba" 1345 | 1346 | cross-spawn@^3.0.1: 1347 | version "3.0.1" 1348 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" 1349 | dependencies: 1350 | lru-cache "^4.0.1" 1351 | which "^1.2.9" 1352 | 1353 | cryptiles@2.x.x: 1354 | version "2.0.5" 1355 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1356 | dependencies: 1357 | boom "2.x.x" 1358 | 1359 | csrf@~3.0.0: 1360 | version "3.0.6" 1361 | resolved "https://registry.yarnpkg.com/csrf/-/csrf-3.0.6.tgz#b61120ddceeafc91e76ed5313bb5c0b2667b710a" 1362 | dependencies: 1363 | rndm "1.2.0" 1364 | tsscmp "1.0.5" 1365 | uid-safe "2.1.4" 1366 | 1367 | csurf@~1.8.3: 1368 | version "1.8.3" 1369 | resolved "https://registry.yarnpkg.com/csurf/-/csurf-1.8.3.tgz#23f2a13bf1d8fce1d0c996588394442cba86a56a" 1370 | dependencies: 1371 | cookie "0.1.3" 1372 | cookie-signature "1.0.6" 1373 | csrf "~3.0.0" 1374 | http-errors "~1.3.1" 1375 | 1376 | dashdash@^1.12.0: 1377 | version "1.14.1" 1378 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1379 | dependencies: 1380 | assert-plus "^1.0.0" 1381 | 1382 | dateformat@^2.0.0: 1383 | version "2.0.0" 1384 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.0.0.tgz#2743e3abb5c3fc2462e527dca445e04e9f4dee17" 1385 | 1386 | debug@2.6.8, debug@^2.1.1, debug@^2.2.0: 1387 | version "2.6.8" 1388 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1389 | dependencies: 1390 | ms "2.0.0" 1391 | 1392 | debug@~2.2.0: 1393 | version "2.2.0" 1394 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1395 | dependencies: 1396 | ms "0.7.1" 1397 | 1398 | decamelize@^1.0.0, decamelize@^1.1.1: 1399 | version "1.2.0" 1400 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1401 | 1402 | dedent@^0.6.0: 1403 | version "0.6.0" 1404 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.6.0.tgz#0e6da8f0ce52838ef5cec5c8f9396b0c1b64a3cb" 1405 | 1406 | deep-extend@~0.4.0: 1407 | version "0.4.2" 1408 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1409 | 1410 | delayed-stream@~1.0.0: 1411 | version "1.0.0" 1412 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1413 | 1414 | delegates@^1.0.0: 1415 | version "1.0.0" 1416 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1417 | 1418 | denodeify@^1.2.1: 1419 | version "1.2.1" 1420 | resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631" 1421 | 1422 | depd@~1.0.1: 1423 | version "1.0.1" 1424 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.0.1.tgz#80aec64c9d6d97e65cc2a9caa93c0aa6abf73aaa" 1425 | 1426 | depd@~1.1.0: 1427 | version "1.1.0" 1428 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 1429 | 1430 | destroy@~1.0.4: 1431 | version "1.0.4" 1432 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1433 | 1434 | detect-indent@^4.0.0: 1435 | version "4.0.0" 1436 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1437 | dependencies: 1438 | repeating "^2.0.0" 1439 | 1440 | dom-walk@^0.1.0: 1441 | version "0.1.1" 1442 | resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" 1443 | 1444 | duplexer2@0.0.2: 1445 | version "0.0.2" 1446 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 1447 | dependencies: 1448 | readable-stream "~1.1.9" 1449 | 1450 | ecc-jsbn@~0.1.1: 1451 | version "0.1.1" 1452 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1453 | dependencies: 1454 | jsbn "~0.1.0" 1455 | 1456 | ee-first@1.1.1: 1457 | version "1.1.1" 1458 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1459 | 1460 | encoding@^0.1.11: 1461 | version "0.1.12" 1462 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1463 | dependencies: 1464 | iconv-lite "~0.4.13" 1465 | 1466 | "errno@>=0.1.1 <0.2.0-0": 1467 | version "0.1.4" 1468 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1469 | dependencies: 1470 | prr "~0.0.0" 1471 | 1472 | error-ex@^1.2.0: 1473 | version "1.3.1" 1474 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1475 | dependencies: 1476 | is-arrayish "^0.2.1" 1477 | 1478 | errorhandler@~1.4.2: 1479 | version "1.4.3" 1480 | resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.4.3.tgz#b7b70ed8f359e9db88092f2d20c0f831420ad83f" 1481 | dependencies: 1482 | accepts "~1.3.0" 1483 | escape-html "~1.0.3" 1484 | 1485 | escape-html@1.0.2: 1486 | version "1.0.2" 1487 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.2.tgz#d77d32fa98e38c2f41ae85e9278e0e0e6ba1022c" 1488 | 1489 | escape-html@~1.0.3: 1490 | version "1.0.3" 1491 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1492 | 1493 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1494 | version "1.0.5" 1495 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1496 | 1497 | esutils@^2.0.0, esutils@^2.0.2: 1498 | version "2.0.2" 1499 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1500 | 1501 | etag@~1.7.0: 1502 | version "1.7.0" 1503 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 1504 | 1505 | event-target-shim@^1.0.5: 1506 | version "1.1.1" 1507 | resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-1.1.1.tgz#a86e5ee6bdaa16054475da797ccddf0c55698491" 1508 | 1509 | eventemitter3@^2.0.2: 1510 | version "2.0.3" 1511 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-2.0.3.tgz#b5e1079b59fb5e1ba2771c0a993be060a58c99ba" 1512 | 1513 | exec-sh@^0.2.0: 1514 | version "0.2.0" 1515 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1516 | dependencies: 1517 | merge "^1.1.3" 1518 | 1519 | exit-hook@^1.0.0: 1520 | version "1.1.1" 1521 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1522 | 1523 | expand-brackets@^0.1.4: 1524 | version "0.1.5" 1525 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1526 | dependencies: 1527 | is-posix-bracket "^0.1.0" 1528 | 1529 | expand-range@^1.8.1: 1530 | version "1.8.2" 1531 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1532 | dependencies: 1533 | fill-range "^2.1.0" 1534 | 1535 | expo@^17.0.0: 1536 | version "17.0.0" 1537 | resolved "https://registry.yarnpkg.com/expo/-/expo-17.0.0.tgz#29fb2b5e3a0b0d3b77b407025681d0e295cc1335" 1538 | dependencies: 1539 | "@expo/vector-icons" "^5.0.0" 1540 | babel-preset-airbnb "^2.2.3" 1541 | babel-preset-expo "^2.0.0" 1542 | fbemitter "^2.1.1" 1543 | lodash.map "^4.6.0" 1544 | lodash.zipobject "^4.1.3" 1545 | lottie-react-native "1.1.1" 1546 | md5-file "^3.1.1" 1547 | react-native-branch "2.0.0-beta.3" 1548 | react-native-fbads "https://github.com/callstack-io/react-native-fbads/tarball/v4.1.0" 1549 | react-native-maps "https://github.com/expo/react-native-maps/archive/v0.14.0.tar.gz" 1550 | react-native-svg "https://github.com/expo/react-native-svg/archive/5.1.8-exp.0.tar.gz" 1551 | uuid-js "^0.7.5" 1552 | websql "^0.4.4" 1553 | 1554 | express-session@~1.11.3: 1555 | version "1.11.3" 1556 | resolved "https://registry.yarnpkg.com/express-session/-/express-session-1.11.3.tgz#5cc98f3f5ff84ed835f91cbf0aabd0c7107400af" 1557 | dependencies: 1558 | cookie "0.1.3" 1559 | cookie-signature "1.0.6" 1560 | crc "3.3.0" 1561 | debug "~2.2.0" 1562 | depd "~1.0.1" 1563 | on-headers "~1.0.0" 1564 | parseurl "~1.3.0" 1565 | uid-safe "~2.0.0" 1566 | utils-merge "1.0.0" 1567 | 1568 | extend@~3.0.0: 1569 | version "3.0.1" 1570 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1571 | 1572 | extglob@^0.3.1: 1573 | version "0.3.2" 1574 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1575 | dependencies: 1576 | is-extglob "^1.0.0" 1577 | 1578 | extsprintf@1.0.2: 1579 | version "1.0.2" 1580 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1581 | 1582 | fancy-log@^1.1.0: 1583 | version "1.3.0" 1584 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.0.tgz#45be17d02bb9917d60ccffd4995c999e6c8c9948" 1585 | dependencies: 1586 | chalk "^1.1.1" 1587 | time-stamp "^1.0.0" 1588 | 1589 | fb-watchman@^1.8.0: 1590 | version "1.9.2" 1591 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1592 | dependencies: 1593 | bser "1.0.2" 1594 | 1595 | fb-watchman@^2.0.0: 1596 | version "2.0.0" 1597 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1598 | dependencies: 1599 | bser "^2.0.0" 1600 | 1601 | fbemitter@^2.1.1: 1602 | version "2.1.1" 1603 | resolved "https://registry.yarnpkg.com/fbemitter/-/fbemitter-2.1.1.tgz#523e14fdaf5248805bb02f62efc33be703f51865" 1604 | dependencies: 1605 | fbjs "^0.8.4" 1606 | 1607 | fbjs-scripts@^0.7.0: 1608 | version "0.7.1" 1609 | resolved "https://registry.yarnpkg.com/fbjs-scripts/-/fbjs-scripts-0.7.1.tgz#4f115e218e243e3addbf0eddaac1e3c62f703fac" 1610 | dependencies: 1611 | babel-core "^6.7.2" 1612 | babel-preset-fbjs "^1.0.0" 1613 | core-js "^1.0.0" 1614 | cross-spawn "^3.0.1" 1615 | gulp-util "^3.0.4" 1616 | object-assign "^4.0.1" 1617 | semver "^5.1.0" 1618 | through2 "^2.0.0" 1619 | 1620 | fbjs@^0.8.4, fbjs@^0.8.9, fbjs@~0.8.9: 1621 | version "0.8.12" 1622 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.12.tgz#10b5d92f76d45575fd63a217d4ea02bea2f8ed04" 1623 | dependencies: 1624 | core-js "^1.0.0" 1625 | isomorphic-fetch "^2.1.1" 1626 | loose-envify "^1.0.0" 1627 | object-assign "^4.1.0" 1628 | promise "^7.1.1" 1629 | setimmediate "^1.0.5" 1630 | ua-parser-js "^0.7.9" 1631 | 1632 | figures@^1.3.5: 1633 | version "1.7.0" 1634 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1635 | dependencies: 1636 | escape-string-regexp "^1.0.5" 1637 | object-assign "^4.1.0" 1638 | 1639 | filename-regex@^2.0.0: 1640 | version "2.0.1" 1641 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1642 | 1643 | fill-range@^2.1.0: 1644 | version "2.2.3" 1645 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1646 | dependencies: 1647 | is-number "^2.1.0" 1648 | isobject "^2.0.0" 1649 | randomatic "^1.1.3" 1650 | repeat-element "^1.1.2" 1651 | repeat-string "^1.5.2" 1652 | 1653 | finalhandler@0.4.0: 1654 | version "0.4.0" 1655 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.4.0.tgz#965a52d9e8d05d2b857548541fb89b53a2497d9b" 1656 | dependencies: 1657 | debug "~2.2.0" 1658 | escape-html "1.0.2" 1659 | on-finished "~2.3.0" 1660 | unpipe "~1.0.0" 1661 | 1662 | find-babel-config@^1.0.1: 1663 | version "1.1.0" 1664 | resolved "https://registry.yarnpkg.com/find-babel-config/-/find-babel-config-1.1.0.tgz#acc01043a6749fec34429be6b64f542ebb5d6355" 1665 | dependencies: 1666 | json5 "^0.5.1" 1667 | path-exists "^3.0.0" 1668 | 1669 | find-up@^1.0.0: 1670 | version "1.1.2" 1671 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1672 | dependencies: 1673 | path-exists "^2.0.0" 1674 | pinkie-promise "^2.0.0" 1675 | 1676 | for-in@^1.0.1: 1677 | version "1.0.2" 1678 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1679 | 1680 | for-own@^0.1.4: 1681 | version "0.1.5" 1682 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1683 | dependencies: 1684 | for-in "^1.0.1" 1685 | 1686 | forever-agent@~0.6.1: 1687 | version "0.6.1" 1688 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1689 | 1690 | form-data@^2.1.1, form-data@~2.1.1: 1691 | version "2.1.4" 1692 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1693 | dependencies: 1694 | asynckit "^0.4.0" 1695 | combined-stream "^1.0.5" 1696 | mime-types "^2.1.12" 1697 | 1698 | fresh@0.3.0: 1699 | version "0.3.0" 1700 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 1701 | 1702 | fs-extra@^1.0.0: 1703 | version "1.0.0" 1704 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" 1705 | dependencies: 1706 | graceful-fs "^4.1.2" 1707 | jsonfile "^2.1.0" 1708 | klaw "^1.0.0" 1709 | 1710 | fs.realpath@^1.0.0: 1711 | version "1.0.0" 1712 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1713 | 1714 | fstream-ignore@^1.0.5: 1715 | version "1.0.5" 1716 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1717 | dependencies: 1718 | fstream "^1.0.0" 1719 | inherits "2" 1720 | minimatch "^3.0.0" 1721 | 1722 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1723 | version "1.0.11" 1724 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1725 | dependencies: 1726 | graceful-fs "^4.1.2" 1727 | inherits "~2.0.0" 1728 | mkdirp ">=0.5 0" 1729 | rimraf "2" 1730 | 1731 | gauge@~1.2.5: 1732 | version "1.2.7" 1733 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-1.2.7.tgz#e9cec5483d3d4ee0ef44b60a7d99e4935e136d93" 1734 | dependencies: 1735 | ansi "^0.3.0" 1736 | has-unicode "^2.0.0" 1737 | lodash.pad "^4.1.0" 1738 | lodash.padend "^4.1.0" 1739 | lodash.padstart "^4.1.0" 1740 | 1741 | gauge@~2.7.3: 1742 | version "2.7.4" 1743 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1744 | dependencies: 1745 | aproba "^1.0.3" 1746 | console-control-strings "^1.0.0" 1747 | has-unicode "^2.0.0" 1748 | object-assign "^4.1.0" 1749 | signal-exit "^3.0.0" 1750 | string-width "^1.0.1" 1751 | strip-ansi "^3.0.1" 1752 | wide-align "^1.1.0" 1753 | 1754 | get-caller-file@^1.0.1: 1755 | version "1.0.2" 1756 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1757 | 1758 | getpass@^0.1.1: 1759 | version "0.1.7" 1760 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1761 | dependencies: 1762 | assert-plus "^1.0.0" 1763 | 1764 | glob-base@^0.3.0: 1765 | version "0.3.0" 1766 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1767 | dependencies: 1768 | glob-parent "^2.0.0" 1769 | is-glob "^2.0.0" 1770 | 1771 | glob-parent@^2.0.0: 1772 | version "2.0.0" 1773 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1774 | dependencies: 1775 | is-glob "^2.0.0" 1776 | 1777 | glob@^7.0.5, glob@^7.1.1: 1778 | version "7.1.2" 1779 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1780 | dependencies: 1781 | fs.realpath "^1.0.0" 1782 | inflight "^1.0.4" 1783 | inherits "2" 1784 | minimatch "^3.0.4" 1785 | once "^1.3.0" 1786 | path-is-absolute "^1.0.0" 1787 | 1788 | global@^4.3.0: 1789 | version "4.3.2" 1790 | resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f" 1791 | dependencies: 1792 | min-document "^2.19.0" 1793 | process "~0.5.1" 1794 | 1795 | globals@^9.0.0: 1796 | version "9.17.0" 1797 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1798 | 1799 | glogg@^1.0.0: 1800 | version "1.0.0" 1801 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.0.tgz#7fe0f199f57ac906cf512feead8f90ee4a284fc5" 1802 | dependencies: 1803 | sparkles "^1.0.0" 1804 | 1805 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 1806 | version "4.1.11" 1807 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1808 | 1809 | "graceful-readlink@>= 1.0.0": 1810 | version "1.0.1" 1811 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1812 | 1813 | gulp-util@^3.0.4: 1814 | version "3.0.8" 1815 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" 1816 | dependencies: 1817 | array-differ "^1.0.0" 1818 | array-uniq "^1.0.2" 1819 | beeper "^1.0.0" 1820 | chalk "^1.0.0" 1821 | dateformat "^2.0.0" 1822 | fancy-log "^1.1.0" 1823 | gulplog "^1.0.0" 1824 | has-gulplog "^0.1.0" 1825 | lodash._reescape "^3.0.0" 1826 | lodash._reevaluate "^3.0.0" 1827 | lodash._reinterpolate "^3.0.0" 1828 | lodash.template "^3.0.0" 1829 | minimist "^1.1.0" 1830 | multipipe "^0.1.2" 1831 | object-assign "^3.0.0" 1832 | replace-ext "0.0.1" 1833 | through2 "^2.0.0" 1834 | vinyl "^0.5.0" 1835 | 1836 | gulplog@^1.0.0: 1837 | version "1.0.0" 1838 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" 1839 | dependencies: 1840 | glogg "^1.0.0" 1841 | 1842 | har-schema@^1.0.5: 1843 | version "1.0.5" 1844 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1845 | 1846 | har-validator@~4.2.1: 1847 | version "4.2.1" 1848 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1849 | dependencies: 1850 | ajv "^4.9.1" 1851 | har-schema "^1.0.5" 1852 | 1853 | has-ansi@^2.0.0: 1854 | version "2.0.0" 1855 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1856 | dependencies: 1857 | ansi-regex "^2.0.0" 1858 | 1859 | has-gulplog@^0.1.0: 1860 | version "0.1.0" 1861 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" 1862 | dependencies: 1863 | sparkles "^1.0.0" 1864 | 1865 | has-unicode@^2.0.0: 1866 | version "2.0.1" 1867 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1868 | 1869 | hawk@~3.1.3: 1870 | version "3.1.3" 1871 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1872 | dependencies: 1873 | boom "2.x.x" 1874 | cryptiles "2.x.x" 1875 | hoek "2.x.x" 1876 | sntp "1.x.x" 1877 | 1878 | hoek@2.x.x: 1879 | version "2.16.3" 1880 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1881 | 1882 | home-or-tmp@^2.0.0: 1883 | version "2.0.0" 1884 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1885 | dependencies: 1886 | os-homedir "^1.0.0" 1887 | os-tmpdir "^1.0.1" 1888 | 1889 | hosted-git-info@^2.1.4: 1890 | version "2.4.2" 1891 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1892 | 1893 | http-errors@~1.3.1: 1894 | version "1.3.1" 1895 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.3.1.tgz#197e22cdebd4198585e8694ef6786197b91ed942" 1896 | dependencies: 1897 | inherits "~2.0.1" 1898 | statuses "1" 1899 | 1900 | http-signature@~1.1.0: 1901 | version "1.1.1" 1902 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1903 | dependencies: 1904 | assert-plus "^0.2.0" 1905 | jsprim "^1.2.2" 1906 | sshpk "^1.7.0" 1907 | 1908 | iconv-lite@0.4.11: 1909 | version "0.4.11" 1910 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.11.tgz#2ecb42fd294744922209a2e7c404dac8793d8ade" 1911 | 1912 | iconv-lite@0.4.13: 1913 | version "0.4.13" 1914 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1915 | 1916 | iconv-lite@~0.4.13: 1917 | version "0.4.17" 1918 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.17.tgz#4fdaa3b38acbc2c031b045d0edcdfe1ecab18c8d" 1919 | 1920 | image-size@^0.3.5: 1921 | version "0.3.5" 1922 | resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.3.5.tgz#83240eab2fb5b00b04aab8c74b0471e9cba7ad8c" 1923 | 1924 | immediate@^3.2.2: 1925 | version "3.2.3" 1926 | resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.2.3.tgz#d140fa8f614659bd6541233097ddaac25cdd991c" 1927 | 1928 | immutable@~3.7.6: 1929 | version "3.7.6" 1930 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.7.6.tgz#13b4d3cb12befa15482a26fe1b2ebae640071e4b" 1931 | 1932 | imurmurhash@^0.1.4: 1933 | version "0.1.4" 1934 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1935 | 1936 | inflight@^1.0.4: 1937 | version "1.0.6" 1938 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1939 | dependencies: 1940 | once "^1.3.0" 1941 | wrappy "1" 1942 | 1943 | inherits@2, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1944 | version "2.0.3" 1945 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1946 | 1947 | ini@~1.3.0: 1948 | version "1.3.4" 1949 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1950 | 1951 | inquirer@^0.12.0: 1952 | version "0.12.0" 1953 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1954 | dependencies: 1955 | ansi-escapes "^1.1.0" 1956 | ansi-regex "^2.0.0" 1957 | chalk "^1.0.0" 1958 | cli-cursor "^1.0.1" 1959 | cli-width "^2.0.0" 1960 | figures "^1.3.5" 1961 | lodash "^4.3.0" 1962 | readline2 "^1.0.1" 1963 | run-async "^0.1.0" 1964 | rx-lite "^3.1.2" 1965 | string-width "^1.0.1" 1966 | strip-ansi "^3.0.0" 1967 | through "^2.3.6" 1968 | 1969 | invariant@^2.2.0, invariant@^2.2.2: 1970 | version "2.2.2" 1971 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1972 | dependencies: 1973 | loose-envify "^1.0.0" 1974 | 1975 | invert-kv@^1.0.0: 1976 | version "1.0.0" 1977 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1978 | 1979 | is-arrayish@^0.2.1: 1980 | version "0.2.1" 1981 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1982 | 1983 | is-buffer@^1.1.5: 1984 | version "1.1.5" 1985 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1986 | 1987 | is-builtin-module@^1.0.0: 1988 | version "1.0.0" 1989 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1990 | dependencies: 1991 | builtin-modules "^1.0.0" 1992 | 1993 | is-dotfile@^1.0.0: 1994 | version "1.0.2" 1995 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1996 | 1997 | is-equal-shallow@^0.1.3: 1998 | version "0.1.3" 1999 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2000 | dependencies: 2001 | is-primitive "^2.0.0" 2002 | 2003 | is-extendable@^0.1.1: 2004 | version "0.1.1" 2005 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2006 | 2007 | is-extglob@^1.0.0: 2008 | version "1.0.0" 2009 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2010 | 2011 | is-finite@^1.0.0: 2012 | version "1.0.2" 2013 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2014 | dependencies: 2015 | number-is-nan "^1.0.0" 2016 | 2017 | is-fullwidth-code-point@^1.0.0: 2018 | version "1.0.0" 2019 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2020 | dependencies: 2021 | number-is-nan "^1.0.0" 2022 | 2023 | is-glob@^2.0.0, is-glob@^2.0.1: 2024 | version "2.0.1" 2025 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2026 | dependencies: 2027 | is-extglob "^1.0.0" 2028 | 2029 | is-number@^2.0.2, is-number@^2.1.0: 2030 | version "2.1.0" 2031 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2032 | dependencies: 2033 | kind-of "^3.0.2" 2034 | 2035 | is-posix-bracket@^0.1.0: 2036 | version "0.1.1" 2037 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2038 | 2039 | is-primitive@^2.0.0: 2040 | version "2.0.0" 2041 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2042 | 2043 | is-stream@^1.0.1: 2044 | version "1.1.0" 2045 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2046 | 2047 | is-typedarray@~1.0.0: 2048 | version "1.0.0" 2049 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2050 | 2051 | is-utf8@^0.2.0: 2052 | version "0.2.1" 2053 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2054 | 2055 | isarray@0.0.1: 2056 | version "0.0.1" 2057 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2058 | 2059 | isarray@1.0.0, isarray@~1.0.0: 2060 | version "1.0.0" 2061 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2062 | 2063 | isemail@1.x.x: 2064 | version "1.2.0" 2065 | resolved "https://registry.yarnpkg.com/isemail/-/isemail-1.2.0.tgz#be03df8cc3e29de4d2c5df6501263f1fa4595e9a" 2066 | 2067 | isexe@^2.0.0: 2068 | version "2.0.0" 2069 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2070 | 2071 | isobject@^2.0.0: 2072 | version "2.1.0" 2073 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2074 | dependencies: 2075 | isarray "1.0.0" 2076 | 2077 | isomorphic-fetch@^2.1.1: 2078 | version "2.2.1" 2079 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2080 | dependencies: 2081 | node-fetch "^1.0.1" 2082 | whatwg-fetch ">=0.10.0" 2083 | 2084 | isstream@~0.1.2: 2085 | version "0.1.2" 2086 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2087 | 2088 | jest-haste-map@19.0.0: 2089 | version "19.0.0" 2090 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-19.0.0.tgz#adde00b62b1fe04432a104b3254fc5004514b55e" 2091 | dependencies: 2092 | fb-watchman "^2.0.0" 2093 | graceful-fs "^4.1.6" 2094 | micromatch "^2.3.11" 2095 | sane "~1.5.0" 2096 | worker-farm "^1.3.1" 2097 | 2098 | jodid25519@^1.0.0: 2099 | version "1.0.2" 2100 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2101 | dependencies: 2102 | jsbn "~0.1.0" 2103 | 2104 | joi@^6.6.1: 2105 | version "6.10.1" 2106 | resolved "https://registry.yarnpkg.com/joi/-/joi-6.10.1.tgz#4d50c318079122000fe5f16af1ff8e1917b77e06" 2107 | dependencies: 2108 | hoek "2.x.x" 2109 | isemail "1.x.x" 2110 | moment "2.x.x" 2111 | topo "1.x.x" 2112 | 2113 | js-tokens@^3.0.0: 2114 | version "3.0.1" 2115 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2116 | 2117 | jsbn@~0.1.0: 2118 | version "0.1.1" 2119 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2120 | 2121 | jsesc@^1.3.0: 2122 | version "1.3.0" 2123 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2124 | 2125 | jsesc@~0.5.0: 2126 | version "0.5.0" 2127 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2128 | 2129 | json-schema@0.2.3: 2130 | version "0.2.3" 2131 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2132 | 2133 | json-stable-stringify@^1.0.1: 2134 | version "1.0.1" 2135 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2136 | dependencies: 2137 | jsonify "~0.0.0" 2138 | 2139 | json-stringify-safe@~5.0.1: 2140 | version "5.0.1" 2141 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2142 | 2143 | json5@^0.4.0: 2144 | version "0.4.0" 2145 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.4.0.tgz#054352e4c4c80c86c0923877d449de176a732c8d" 2146 | 2147 | json5@^0.5.0, json5@^0.5.1: 2148 | version "0.5.1" 2149 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2150 | 2151 | jsonfile@^2.1.0: 2152 | version "2.4.0" 2153 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 2154 | optionalDependencies: 2155 | graceful-fs "^4.1.6" 2156 | 2157 | jsonify@~0.0.0: 2158 | version "0.0.0" 2159 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2160 | 2161 | jsprim@^1.2.2: 2162 | version "1.4.0" 2163 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2164 | dependencies: 2165 | assert-plus "1.0.0" 2166 | extsprintf "1.0.2" 2167 | json-schema "0.2.3" 2168 | verror "1.3.6" 2169 | 2170 | kind-of@^3.0.2: 2171 | version "3.2.2" 2172 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2173 | dependencies: 2174 | is-buffer "^1.1.5" 2175 | 2176 | klaw@^1.0.0: 2177 | version "1.3.1" 2178 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 2179 | optionalDependencies: 2180 | graceful-fs "^4.1.9" 2181 | 2182 | lazy-cache@^1.0.3: 2183 | version "1.0.4" 2184 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2185 | 2186 | lcid@^1.0.0: 2187 | version "1.0.0" 2188 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2189 | dependencies: 2190 | invert-kv "^1.0.0" 2191 | 2192 | left-pad@^1.1.3: 2193 | version "1.1.3" 2194 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.1.3.tgz#612f61c033f3a9e08e939f1caebeea41b6f3199a" 2195 | 2196 | load-json-file@^1.0.0: 2197 | version "1.1.0" 2198 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2199 | dependencies: 2200 | graceful-fs "^4.1.2" 2201 | parse-json "^2.2.0" 2202 | pify "^2.0.0" 2203 | pinkie-promise "^2.0.0" 2204 | strip-bom "^2.0.0" 2205 | 2206 | lodash._basecopy@^3.0.0: 2207 | version "3.0.1" 2208 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2209 | 2210 | lodash._basetostring@^3.0.0: 2211 | version "3.0.1" 2212 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" 2213 | 2214 | lodash._basevalues@^3.0.0: 2215 | version "3.0.0" 2216 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" 2217 | 2218 | lodash._getnative@^3.0.0: 2219 | version "3.9.1" 2220 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2221 | 2222 | lodash._isiterateecall@^3.0.0: 2223 | version "3.0.9" 2224 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 2225 | 2226 | lodash._reescape@^3.0.0: 2227 | version "3.0.0" 2228 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" 2229 | 2230 | lodash._reevaluate@^3.0.0: 2231 | version "3.0.0" 2232 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" 2233 | 2234 | lodash._reinterpolate@^3.0.0: 2235 | version "3.0.0" 2236 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 2237 | 2238 | lodash._root@^3.0.0: 2239 | version "3.0.1" 2240 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 2241 | 2242 | lodash.escape@^3.0.0: 2243 | version "3.2.0" 2244 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" 2245 | dependencies: 2246 | lodash._root "^3.0.0" 2247 | 2248 | lodash.isarguments@^3.0.0: 2249 | version "3.1.0" 2250 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2251 | 2252 | lodash.isarray@^3.0.0: 2253 | version "3.0.4" 2254 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2255 | 2256 | lodash.keys@^3.0.0: 2257 | version "3.1.2" 2258 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2259 | dependencies: 2260 | lodash._getnative "^3.0.0" 2261 | lodash.isarguments "^3.0.0" 2262 | lodash.isarray "^3.0.0" 2263 | 2264 | lodash.map@^4.6.0: 2265 | version "4.6.0" 2266 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 2267 | 2268 | lodash.pad@^4.1.0: 2269 | version "4.5.1" 2270 | resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" 2271 | 2272 | lodash.padend@^4.1.0: 2273 | version "4.6.1" 2274 | resolved "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" 2275 | 2276 | lodash.padstart@^4.1.0: 2277 | version "4.6.1" 2278 | resolved "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" 2279 | 2280 | lodash.restparam@^3.0.0: 2281 | version "3.6.1" 2282 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 2283 | 2284 | lodash.template@^3.0.0: 2285 | version "3.6.2" 2286 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" 2287 | dependencies: 2288 | lodash._basecopy "^3.0.0" 2289 | lodash._basetostring "^3.0.0" 2290 | lodash._basevalues "^3.0.0" 2291 | lodash._isiterateecall "^3.0.0" 2292 | lodash._reinterpolate "^3.0.0" 2293 | lodash.escape "^3.0.0" 2294 | lodash.keys "^3.0.0" 2295 | lodash.restparam "^3.0.0" 2296 | lodash.templatesettings "^3.0.0" 2297 | 2298 | lodash.templatesettings@^3.0.0: 2299 | version "3.1.1" 2300 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" 2301 | dependencies: 2302 | lodash._reinterpolate "^3.0.0" 2303 | lodash.escape "^3.0.0" 2304 | 2305 | lodash.zipobject@^4.1.3: 2306 | version "4.1.3" 2307 | resolved "https://registry.yarnpkg.com/lodash.zipobject/-/lodash.zipobject-4.1.3.tgz#b399f5aba8ff62a746f6979bf20b214f964dbef8" 2308 | 2309 | lodash@^3.5.0: 2310 | version "3.10.1" 2311 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2312 | 2313 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.16.6, lodash@^4.2.0, lodash@^4.3.0, lodash@^4.6.1: 2314 | version "4.17.4" 2315 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2316 | 2317 | longest@^1.0.1: 2318 | version "1.0.1" 2319 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2320 | 2321 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: 2322 | version "1.3.1" 2323 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2324 | dependencies: 2325 | js-tokens "^3.0.0" 2326 | 2327 | lottie-ios@^1.5.2: 2328 | version "1.5.2" 2329 | resolved "https://registry.yarnpkg.com/lottie-ios/-/lottie-ios-1.5.2.tgz#c188f1baa1c308a291538fc585a76e0cfc060711" 2330 | 2331 | lottie-react-native@1.1.1: 2332 | version "1.1.1" 2333 | resolved "https://registry.yarnpkg.com/lottie-react-native/-/lottie-react-native-1.1.1.tgz#1c87a3afca96edfa0869227140a2cff9bcc62c9b" 2334 | dependencies: 2335 | invariant "^2.2.2" 2336 | lottie-ios "^1.5.2" 2337 | react-native-safe-module "^1.1.0" 2338 | 2339 | lru-cache@^4.0.1: 2340 | version "4.0.2" 2341 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2342 | dependencies: 2343 | pseudomap "^1.0.1" 2344 | yallist "^2.0.0" 2345 | 2346 | makeerror@1.0.x: 2347 | version "1.0.11" 2348 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2349 | dependencies: 2350 | tmpl "1.0.x" 2351 | 2352 | md5-file@^3.1.1: 2353 | version "3.1.1" 2354 | resolved "https://registry.yarnpkg.com/md5-file/-/md5-file-3.1.1.tgz#db3c92c09bbda5c2de883fa5490dd711fddbbab9" 2355 | 2356 | media-typer@0.3.0: 2357 | version "0.3.0" 2358 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2359 | 2360 | merge@^1.1.3: 2361 | version "1.2.0" 2362 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2363 | 2364 | method-override@~2.3.5: 2365 | version "2.3.9" 2366 | resolved "https://registry.yarnpkg.com/method-override/-/method-override-2.3.9.tgz#bd151f2ce34cf01a76ca400ab95c012b102d8f71" 2367 | dependencies: 2368 | debug "2.6.8" 2369 | methods "~1.1.2" 2370 | parseurl "~1.3.1" 2371 | vary "~1.1.1" 2372 | 2373 | methods@~1.1.2: 2374 | version "1.1.2" 2375 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2376 | 2377 | micromatch@^2.1.5, micromatch@^2.3.11: 2378 | version "2.3.11" 2379 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2380 | dependencies: 2381 | arr-diff "^2.0.0" 2382 | array-unique "^0.2.1" 2383 | braces "^1.8.2" 2384 | expand-brackets "^0.1.4" 2385 | extglob "^0.3.1" 2386 | filename-regex "^2.0.0" 2387 | is-extglob "^1.0.0" 2388 | is-glob "^2.0.1" 2389 | kind-of "^3.0.2" 2390 | normalize-path "^2.0.1" 2391 | object.omit "^2.0.0" 2392 | parse-glob "^3.0.4" 2393 | regex-cache "^0.4.2" 2394 | 2395 | "mime-db@>= 1.27.0 < 2", mime-db@~1.27.0: 2396 | version "1.27.0" 2397 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2398 | 2399 | mime-db@~1.23.0: 2400 | version "1.23.0" 2401 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.23.0.tgz#a31b4070adaea27d732ea333740a64d0ec9a6659" 2402 | 2403 | mime-types@2.1.11: 2404 | version "2.1.11" 2405 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.11.tgz#c259c471bda808a85d6cd193b430a5fae4473b3c" 2406 | dependencies: 2407 | mime-db "~1.23.0" 2408 | 2409 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.6, mime-types@~2.1.7, mime-types@~2.1.9: 2410 | version "2.1.15" 2411 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2412 | dependencies: 2413 | mime-db "~1.27.0" 2414 | 2415 | mime@1.3.4: 2416 | version "1.3.4" 2417 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 2418 | 2419 | mime@^1.3.4: 2420 | version "1.3.6" 2421 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.6.tgz#591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0" 2422 | 2423 | min-document@^2.19.0: 2424 | version "2.19.0" 2425 | resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" 2426 | dependencies: 2427 | dom-walk "^0.1.0" 2428 | 2429 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 2430 | version "3.0.4" 2431 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2432 | dependencies: 2433 | brace-expansion "^1.1.7" 2434 | 2435 | minimist@0.0.8, minimist@~0.0.1: 2436 | version "0.0.8" 2437 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2438 | 2439 | minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.0: 2440 | version "1.2.0" 2441 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2442 | 2443 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2444 | version "0.5.1" 2445 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2446 | dependencies: 2447 | minimist "0.0.8" 2448 | 2449 | moment@2.x.x: 2450 | version "2.18.1" 2451 | resolved "https://registry.yarnpkg.com/moment/-/moment-2.18.1.tgz#c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f" 2452 | 2453 | morgan@~1.6.1: 2454 | version "1.6.1" 2455 | resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.6.1.tgz#5fd818398c6819cba28a7cd6664f292fe1c0bbf2" 2456 | dependencies: 2457 | basic-auth "~1.0.3" 2458 | debug "~2.2.0" 2459 | depd "~1.0.1" 2460 | on-finished "~2.3.0" 2461 | on-headers "~1.0.0" 2462 | 2463 | ms@0.7.1: 2464 | version "0.7.1" 2465 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2466 | 2467 | ms@0.7.2: 2468 | version "0.7.2" 2469 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2470 | 2471 | ms@2.0.0: 2472 | version "2.0.0" 2473 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2474 | 2475 | multiparty@3.3.2: 2476 | version "3.3.2" 2477 | resolved "https://registry.yarnpkg.com/multiparty/-/multiparty-3.3.2.tgz#35de6804dc19643e5249f3d3e3bdc6c8ce301d3f" 2478 | dependencies: 2479 | readable-stream "~1.1.9" 2480 | stream-counter "~0.2.0" 2481 | 2482 | multipipe@^0.1.2: 2483 | version "0.1.2" 2484 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" 2485 | dependencies: 2486 | duplexer2 "0.0.2" 2487 | 2488 | mute-stream@0.0.5: 2489 | version "0.0.5" 2490 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2491 | 2492 | nan@~2.4.0: 2493 | version "2.4.0" 2494 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" 2495 | 2496 | negotiator@0.5.3: 2497 | version "0.5.3" 2498 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.5.3.tgz#269d5c476810ec92edbe7b6c2f28316384f9a7e8" 2499 | 2500 | negotiator@0.6.1: 2501 | version "0.6.1" 2502 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2503 | 2504 | node-fetch@^1.0.1, node-fetch@^1.3.3: 2505 | version "1.7.0" 2506 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.0.tgz#3ff6c56544f9b7fb00682338bb55ee6f54a8a0ef" 2507 | dependencies: 2508 | encoding "^0.1.11" 2509 | is-stream "^1.0.1" 2510 | 2511 | node-int64@^0.4.0: 2512 | version "0.4.0" 2513 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2514 | 2515 | node-pre-gyp@~0.6.31: 2516 | version "0.6.34" 2517 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2518 | dependencies: 2519 | mkdirp "^0.5.1" 2520 | nopt "^4.0.1" 2521 | npmlog "^4.0.2" 2522 | rc "^1.1.7" 2523 | request "^2.81.0" 2524 | rimraf "^2.6.1" 2525 | semver "^5.3.0" 2526 | tar "^2.2.1" 2527 | tar-pack "^3.4.0" 2528 | 2529 | noop-fn@^1.0.0: 2530 | version "1.0.0" 2531 | resolved "https://registry.yarnpkg.com/noop-fn/-/noop-fn-1.0.0.tgz#5f33d47f13d2150df93e0cb036699e982f78ffbf" 2532 | 2533 | nopt@^4.0.1: 2534 | version "4.0.1" 2535 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2536 | dependencies: 2537 | abbrev "1" 2538 | osenv "^0.1.4" 2539 | 2540 | normalize-package-data@^2.3.2: 2541 | version "2.3.8" 2542 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2543 | dependencies: 2544 | hosted-git-info "^2.1.4" 2545 | is-builtin-module "^1.0.0" 2546 | semver "2 || 3 || 4 || 5" 2547 | validate-npm-package-license "^3.0.1" 2548 | 2549 | normalize-path@^2.0.1: 2550 | version "2.1.1" 2551 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2552 | dependencies: 2553 | remove-trailing-separator "^1.0.1" 2554 | 2555 | npmlog@^2.0.4: 2556 | version "2.0.4" 2557 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-2.0.4.tgz#98b52530f2514ca90d09ec5b22c8846722375692" 2558 | dependencies: 2559 | ansi "~0.3.1" 2560 | are-we-there-yet "~1.1.2" 2561 | gauge "~1.2.5" 2562 | 2563 | npmlog@^4.0.2: 2564 | version "4.1.0" 2565 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 2566 | dependencies: 2567 | are-we-there-yet "~1.1.2" 2568 | console-control-strings "~1.1.0" 2569 | gauge "~2.7.3" 2570 | set-blocking "~2.0.0" 2571 | 2572 | number-is-nan@^1.0.0: 2573 | version "1.0.1" 2574 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2575 | 2576 | oauth-sign@~0.8.1: 2577 | version "0.8.2" 2578 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2579 | 2580 | object-assign@^3.0.0: 2581 | version "3.0.0" 2582 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 2583 | 2584 | object-assign@^4.0.1, object-assign@^4.1.0: 2585 | version "4.1.1" 2586 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2587 | 2588 | object.omit@^2.0.0: 2589 | version "2.0.1" 2590 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2591 | dependencies: 2592 | for-own "^0.1.4" 2593 | is-extendable "^0.1.1" 2594 | 2595 | on-finished@~2.3.0: 2596 | version "2.3.0" 2597 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2598 | dependencies: 2599 | ee-first "1.1.1" 2600 | 2601 | on-headers@~1.0.0, on-headers@~1.0.1: 2602 | version "1.0.1" 2603 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 2604 | 2605 | once@^1.3.0, once@^1.3.3: 2606 | version "1.4.0" 2607 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2608 | dependencies: 2609 | wrappy "1" 2610 | 2611 | onetime@^1.0.0: 2612 | version "1.1.0" 2613 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2614 | 2615 | opn@^3.0.2: 2616 | version "3.0.3" 2617 | resolved "https://registry.yarnpkg.com/opn/-/opn-3.0.3.tgz#b6d99e7399f78d65c3baaffef1fb288e9b85243a" 2618 | dependencies: 2619 | object-assign "^4.0.1" 2620 | 2621 | optimist@^0.6.1: 2622 | version "0.6.1" 2623 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2624 | dependencies: 2625 | minimist "~0.0.1" 2626 | wordwrap "~0.0.2" 2627 | 2628 | options@>=0.0.5: 2629 | version "0.0.6" 2630 | resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" 2631 | 2632 | os-homedir@^1.0.0: 2633 | version "1.0.2" 2634 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2635 | 2636 | os-locale@^1.4.0: 2637 | version "1.4.0" 2638 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2639 | dependencies: 2640 | lcid "^1.0.0" 2641 | 2642 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2643 | version "1.0.2" 2644 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2645 | 2646 | osenv@^0.1.4: 2647 | version "0.1.4" 2648 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2649 | dependencies: 2650 | os-homedir "^1.0.0" 2651 | os-tmpdir "^1.0.0" 2652 | 2653 | parse-glob@^3.0.4: 2654 | version "3.0.4" 2655 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2656 | dependencies: 2657 | glob-base "^0.3.0" 2658 | is-dotfile "^1.0.0" 2659 | is-extglob "^1.0.0" 2660 | is-glob "^2.0.0" 2661 | 2662 | parse-json@^2.2.0: 2663 | version "2.2.0" 2664 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2665 | dependencies: 2666 | error-ex "^1.2.0" 2667 | 2668 | parseurl@~1.3.0, parseurl@~1.3.1: 2669 | version "1.3.1" 2670 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 2671 | 2672 | path-exists@^2.0.0: 2673 | version "2.1.0" 2674 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2675 | dependencies: 2676 | pinkie-promise "^2.0.0" 2677 | 2678 | path-exists@^3.0.0: 2679 | version "3.0.0" 2680 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2681 | 2682 | path-is-absolute@^1.0.0: 2683 | version "1.0.1" 2684 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2685 | 2686 | path-parse@^1.0.5: 2687 | version "1.0.5" 2688 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2689 | 2690 | path-type@^1.0.0: 2691 | version "1.1.0" 2692 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2693 | dependencies: 2694 | graceful-fs "^4.1.2" 2695 | pify "^2.0.0" 2696 | pinkie-promise "^2.0.0" 2697 | 2698 | pause@0.1.0: 2699 | version "0.1.0" 2700 | resolved "https://registry.yarnpkg.com/pause/-/pause-0.1.0.tgz#ebc8a4a8619ff0b8a81ac1513c3434ff469fdb74" 2701 | 2702 | pegjs@^0.10.0: 2703 | version "0.10.0" 2704 | resolved "https://registry.yarnpkg.com/pegjs/-/pegjs-0.10.0.tgz#cf8bafae6eddff4b5a7efb185269eaaf4610ddbd" 2705 | 2706 | performance-now@^0.2.0: 2707 | version "0.2.0" 2708 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2709 | 2710 | pify@^2.0.0: 2711 | version "2.3.0" 2712 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2713 | 2714 | pinkie-promise@^2.0.0: 2715 | version "2.0.1" 2716 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2717 | dependencies: 2718 | pinkie "^2.0.0" 2719 | 2720 | pinkie@^2.0.0: 2721 | version "2.0.4" 2722 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2723 | 2724 | plist@2.0.1: 2725 | version "2.0.1" 2726 | resolved "https://registry.yarnpkg.com/plist/-/plist-2.0.1.tgz#0a32ca9481b1c364e92e18dc55c876de9d01da8b" 2727 | dependencies: 2728 | base64-js "1.1.2" 2729 | xmlbuilder "8.2.2" 2730 | xmldom "0.1.x" 2731 | 2732 | plist@^1.2.0: 2733 | version "1.2.0" 2734 | resolved "https://registry.yarnpkg.com/plist/-/plist-1.2.0.tgz#084b5093ddc92506e259f874b8d9b1afb8c79593" 2735 | dependencies: 2736 | base64-js "0.0.8" 2737 | util-deprecate "1.0.2" 2738 | xmlbuilder "4.0.0" 2739 | xmldom "0.1.x" 2740 | 2741 | pouchdb-collections@^1.0.1: 2742 | version "1.0.1" 2743 | resolved "https://registry.yarnpkg.com/pouchdb-collections/-/pouchdb-collections-1.0.1.tgz#fe63a17da977611abef7cb8026cb1a9553fd8359" 2744 | 2745 | preserve@^0.2.0: 2746 | version "0.2.0" 2747 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2748 | 2749 | pretty-format@^4.2.1: 2750 | version "4.3.1" 2751 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-4.3.1.tgz#530be5c42b3c05b36414a7a2a4337aa80acd0e8d" 2752 | 2753 | private@^0.1.6: 2754 | version "0.1.7" 2755 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2756 | 2757 | process-nextick-args@~1.0.6: 2758 | version "1.0.7" 2759 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2760 | 2761 | process@~0.5.1: 2762 | version "0.5.2" 2763 | resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf" 2764 | 2765 | promise@^7.1.1: 2766 | version "7.1.1" 2767 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 2768 | dependencies: 2769 | asap "~2.0.3" 2770 | 2771 | prop-types@^15.5.8: 2772 | version "15.5.10" 2773 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154" 2774 | dependencies: 2775 | fbjs "^0.8.9" 2776 | loose-envify "^1.3.1" 2777 | 2778 | prr@~0.0.0: 2779 | version "0.0.0" 2780 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2781 | 2782 | pseudomap@^1.0.1: 2783 | version "1.0.2" 2784 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2785 | 2786 | punycode@^1.4.1: 2787 | version "1.4.1" 2788 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2789 | 2790 | qs@4.0.0: 2791 | version "4.0.0" 2792 | resolved "https://registry.yarnpkg.com/qs/-/qs-4.0.0.tgz#c31d9b74ec27df75e543a86c78728ed8d4623607" 2793 | 2794 | qs@~6.4.0: 2795 | version "6.4.0" 2796 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2797 | 2798 | random-bytes@~1.0.0: 2799 | version "1.0.0" 2800 | resolved "https://registry.yarnpkg.com/random-bytes/-/random-bytes-1.0.0.tgz#4f68a1dc0ae58bd3fb95848c30324db75d64360b" 2801 | 2802 | randomatic@^1.1.3: 2803 | version "1.1.6" 2804 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2805 | dependencies: 2806 | is-number "^2.0.2" 2807 | kind-of "^3.0.2" 2808 | 2809 | range-parser@~1.0.3: 2810 | version "1.0.3" 2811 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.0.3.tgz#6872823535c692e2c2a0103826afd82c2e0ff175" 2812 | 2813 | raw-body@~2.1.2: 2814 | version "2.1.7" 2815 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.1.7.tgz#adfeace2e4fb3098058014d08c072dcc59758774" 2816 | dependencies: 2817 | bytes "2.4.0" 2818 | iconv-lite "0.4.13" 2819 | unpipe "1.0.0" 2820 | 2821 | rc@^1.1.7: 2822 | version "1.2.1" 2823 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2824 | dependencies: 2825 | deep-extend "~0.4.0" 2826 | ini "~1.3.0" 2827 | minimist "^1.2.0" 2828 | strip-json-comments "~2.0.1" 2829 | 2830 | react-clone-referenced-element@^1.0.1: 2831 | version "1.0.1" 2832 | resolved "https://registry.yarnpkg.com/react-clone-referenced-element/-/react-clone-referenced-element-1.0.1.tgz#2bba8c69404c5e4a944398600bcc4c941f860682" 2833 | 2834 | react-deep-force-update@^1.0.0: 2835 | version "1.0.1" 2836 | resolved "https://registry.yarnpkg.com/react-deep-force-update/-/react-deep-force-update-1.0.1.tgz#f911b5be1d2a6fe387507dd6e9a767aa2924b4c7" 2837 | 2838 | react-devtools-core@^2.0.8: 2839 | version "2.2.1" 2840 | resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-2.2.1.tgz#3e9cfca76e08333226f365bcf870f77dfbd542cd" 2841 | dependencies: 2842 | shell-quote "^1.6.1" 2843 | ws "^2.0.3" 2844 | 2845 | react-native-branch@2.0.0-beta.3: 2846 | version "2.0.0-beta.3" 2847 | resolved "https://registry.yarnpkg.com/react-native-branch/-/react-native-branch-2.0.0-beta.3.tgz#2167af86bbc9f964bd45bd5f37684e5b54965e32" 2848 | 2849 | "react-native-fbads@https://github.com/callstack-io/react-native-fbads/tarball/v4.1.0": 2850 | version "4.1.0" 2851 | resolved "https://github.com/callstack-io/react-native-fbads/tarball/v4.1.0#e836ed7f4502593d4a4757f27cdfa0ffef4dc729" 2852 | dependencies: 2853 | eventemitter3 "^2.0.2" 2854 | 2855 | "react-native-maps@https://github.com/expo/react-native-maps/archive/v0.14.0.tar.gz": 2856 | version "0.14.0" 2857 | resolved "https://github.com/expo/react-native-maps/archive/v0.14.0.tar.gz#993c90136e9370c693b423960fcb679b1c25cad8" 2858 | 2859 | react-native-safe-module@^1.1.0: 2860 | version "1.2.0" 2861 | resolved "https://registry.yarnpkg.com/react-native-safe-module/-/react-native-safe-module-1.2.0.tgz#a23824ca24edc2901913694a76646475113d570d" 2862 | dependencies: 2863 | dedent "^0.6.0" 2864 | 2865 | "react-native-svg@https://github.com/expo/react-native-svg/archive/5.1.8-exp.0.tar.gz": 2866 | version "5.1.8" 2867 | resolved "https://github.com/expo/react-native-svg/archive/5.1.8-exp.0.tar.gz#3e43c57b035dee616336fba33565248412474467" 2868 | dependencies: 2869 | color "^0.11.1" 2870 | lodash "^4.16.6" 2871 | 2872 | react-native-vector-icons@4.1.1: 2873 | version "4.1.1" 2874 | resolved "https://registry.yarnpkg.com/react-native-vector-icons/-/react-native-vector-icons-4.1.1.tgz#9ac75bde77d9243346668c51dca7756775428087" 2875 | dependencies: 2876 | lodash "^4.0.0" 2877 | prop-types "^15.5.8" 2878 | yargs "^6.3.0" 2879 | 2880 | "react-native@https://github.com/expo/react-native/archive/sdk-17.0.0.tar.gz": 2881 | version "0.44.0" 2882 | resolved "https://github.com/expo/react-native/archive/sdk-17.0.0.tar.gz#3b00dedae2d0e5985797e0caaf6c481539598953" 2883 | dependencies: 2884 | absolute-path "^0.0.0" 2885 | art "^0.10.0" 2886 | async "^2.0.1" 2887 | babel-core "^6.21.0" 2888 | babel-generator "^6.21.0" 2889 | babel-plugin-external-helpers "^6.18.0" 2890 | babel-plugin-syntax-trailing-function-commas "^6.20.0" 2891 | babel-plugin-transform-async-to-generator "6.16.0" 2892 | babel-plugin-transform-flow-strip-types "^6.21.0" 2893 | babel-plugin-transform-object-rest-spread "^6.20.2" 2894 | babel-polyfill "^6.20.0" 2895 | babel-preset-es2015-node "^6.1.1" 2896 | babel-preset-fbjs "^2.1.0" 2897 | babel-preset-react-native "^1.9.1" 2898 | babel-register "^6.18.0" 2899 | babel-runtime "^6.20.0" 2900 | babel-traverse "^6.21.0" 2901 | babel-types "^6.21.0" 2902 | babylon "^6.16.1" 2903 | base64-js "^1.1.2" 2904 | chalk "^1.1.1" 2905 | commander "^2.9.0" 2906 | concat-stream "^1.6.0" 2907 | connect "^2.8.3" 2908 | core-js "^2.2.2" 2909 | debug "^2.2.0" 2910 | denodeify "^1.2.1" 2911 | event-target-shim "^1.0.5" 2912 | fbjs "~0.8.9" 2913 | fbjs-scripts "^0.7.0" 2914 | form-data "^2.1.1" 2915 | fs-extra "^1.0.0" 2916 | glob "^7.1.1" 2917 | graceful-fs "^4.1.3" 2918 | image-size "^0.3.5" 2919 | immutable "~3.7.6" 2920 | imurmurhash "^0.1.4" 2921 | inquirer "^0.12.0" 2922 | jest-haste-map "19.0.0" 2923 | joi "^6.6.1" 2924 | json-stable-stringify "^1.0.1" 2925 | json5 "^0.4.0" 2926 | left-pad "^1.1.3" 2927 | lodash "^4.16.6" 2928 | mime "^1.3.4" 2929 | mime-types "2.1.11" 2930 | minimist "^1.2.0" 2931 | mkdirp "^0.5.1" 2932 | node-fetch "^1.3.3" 2933 | npmlog "^2.0.4" 2934 | opn "^3.0.2" 2935 | optimist "^0.6.1" 2936 | plist "^1.2.0" 2937 | pretty-format "^4.2.1" 2938 | promise "^7.1.1" 2939 | react-clone-referenced-element "^1.0.1" 2940 | react-devtools-core "^2.0.8" 2941 | react-timer-mixin "^0.13.2" 2942 | react-transform-hmr "^1.0.4" 2943 | rebound "^0.0.13" 2944 | regenerator-runtime "^0.9.5" 2945 | request "^2.79.0" 2946 | rimraf "^2.5.4" 2947 | semver "^5.0.3" 2948 | shell-quote "1.6.1" 2949 | source-map "^0.5.6" 2950 | stacktrace-parser "^0.1.3" 2951 | temp "0.8.3" 2952 | throat "^3.0.0" 2953 | uglify-js "2.7.5" 2954 | whatwg-fetch "^1.0.0" 2955 | wordwrap "^1.0.0" 2956 | worker-farm "^1.3.1" 2957 | write-file-atomic "^1.2.0" 2958 | ws "^1.1.0" 2959 | xcode "^0.9.1" 2960 | xmldoc "^0.4.0" 2961 | xpipe "^1.0.5" 2962 | yargs "^6.4.0" 2963 | 2964 | react-proxy@^1.1.7: 2965 | version "1.1.8" 2966 | resolved "https://registry.yarnpkg.com/react-proxy/-/react-proxy-1.1.8.tgz#9dbfd9d927528c3aa9f444e4558c37830ab8c26a" 2967 | dependencies: 2968 | lodash "^4.6.1" 2969 | react-deep-force-update "^1.0.0" 2970 | 2971 | react-timer-mixin@^0.13.2: 2972 | version "0.13.3" 2973 | resolved "https://registry.yarnpkg.com/react-timer-mixin/-/react-timer-mixin-0.13.3.tgz#0da8b9f807ec07dc3e854d082c737c65605b3d22" 2974 | 2975 | react-transform-hmr@^1.0.4: 2976 | version "1.0.4" 2977 | resolved "https://registry.yarnpkg.com/react-transform-hmr/-/react-transform-hmr-1.0.4.tgz#e1a40bd0aaefc72e8dfd7a7cda09af85066397bb" 2978 | dependencies: 2979 | global "^4.3.0" 2980 | react-proxy "^1.1.7" 2981 | 2982 | react@16.0.0-alpha.6: 2983 | version "16.0.0-alpha.6" 2984 | resolved "https://registry.yarnpkg.com/react/-/react-16.0.0-alpha.6.tgz#2ccb1afb4425ccc12f78a123a666f2e4c141adb9" 2985 | dependencies: 2986 | fbjs "^0.8.9" 2987 | loose-envify "^1.1.0" 2988 | object-assign "^4.1.0" 2989 | 2990 | read-pkg-up@^1.0.1: 2991 | version "1.0.1" 2992 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2993 | dependencies: 2994 | find-up "^1.0.0" 2995 | read-pkg "^1.0.0" 2996 | 2997 | read-pkg@^1.0.0: 2998 | version "1.1.0" 2999 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3000 | dependencies: 3001 | load-json-file "^1.0.0" 3002 | normalize-package-data "^2.3.2" 3003 | path-type "^1.0.0" 3004 | 3005 | readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: 3006 | version "2.2.9" 3007 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 3008 | dependencies: 3009 | buffer-shims "~1.0.0" 3010 | core-util-is "~1.0.0" 3011 | inherits "~2.0.1" 3012 | isarray "~1.0.0" 3013 | process-nextick-args "~1.0.6" 3014 | string_decoder "~1.0.0" 3015 | util-deprecate "~1.0.1" 3016 | 3017 | readable-stream@~1.1.8, readable-stream@~1.1.9: 3018 | version "1.1.14" 3019 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 3020 | dependencies: 3021 | core-util-is "~1.0.0" 3022 | inherits "~2.0.1" 3023 | isarray "0.0.1" 3024 | string_decoder "~0.10.x" 3025 | 3026 | readline2@^1.0.1: 3027 | version "1.0.1" 3028 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3029 | dependencies: 3030 | code-point-at "^1.0.0" 3031 | is-fullwidth-code-point "^1.0.0" 3032 | mute-stream "0.0.5" 3033 | 3034 | rebound@^0.0.13: 3035 | version "0.0.13" 3036 | resolved "https://registry.yarnpkg.com/rebound/-/rebound-0.0.13.tgz#4a225254caf7da756797b19c5817bf7a7941fac1" 3037 | 3038 | regenerate@^1.2.1: 3039 | version "1.3.2" 3040 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3041 | 3042 | regenerator-runtime@^0.10.0: 3043 | version "0.10.5" 3044 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3045 | 3046 | regenerator-runtime@^0.9.5: 3047 | version "0.9.6" 3048 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz#d33eb95d0d2001a4be39659707c51b0cb71ce029" 3049 | 3050 | regenerator-transform@0.9.11: 3051 | version "0.9.11" 3052 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 3053 | dependencies: 3054 | babel-runtime "^6.18.0" 3055 | babel-types "^6.19.0" 3056 | private "^0.1.6" 3057 | 3058 | regex-cache@^0.4.2: 3059 | version "0.4.3" 3060 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3061 | dependencies: 3062 | is-equal-shallow "^0.1.3" 3063 | is-primitive "^2.0.0" 3064 | 3065 | regexpu-core@^2.0.0: 3066 | version "2.0.0" 3067 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3068 | dependencies: 3069 | regenerate "^1.2.1" 3070 | regjsgen "^0.2.0" 3071 | regjsparser "^0.1.4" 3072 | 3073 | regjsgen@^0.2.0: 3074 | version "0.2.0" 3075 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3076 | 3077 | regjsparser@^0.1.4: 3078 | version "0.1.5" 3079 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3080 | dependencies: 3081 | jsesc "~0.5.0" 3082 | 3083 | remove-trailing-separator@^1.0.1: 3084 | version "1.0.1" 3085 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 3086 | 3087 | repeat-element@^1.1.2: 3088 | version "1.1.2" 3089 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3090 | 3091 | repeat-string@^1.5.2: 3092 | version "1.6.1" 3093 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3094 | 3095 | repeating@^2.0.0: 3096 | version "2.0.1" 3097 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3098 | dependencies: 3099 | is-finite "^1.0.0" 3100 | 3101 | replace-ext@0.0.1: 3102 | version "0.0.1" 3103 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 3104 | 3105 | request@^2.79.0, request@^2.81.0: 3106 | version "2.81.0" 3107 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3108 | dependencies: 3109 | aws-sign2 "~0.6.0" 3110 | aws4 "^1.2.1" 3111 | caseless "~0.12.0" 3112 | combined-stream "~1.0.5" 3113 | extend "~3.0.0" 3114 | forever-agent "~0.6.1" 3115 | form-data "~2.1.1" 3116 | har-validator "~4.2.1" 3117 | hawk "~3.1.3" 3118 | http-signature "~1.1.0" 3119 | is-typedarray "~1.0.0" 3120 | isstream "~0.1.2" 3121 | json-stringify-safe "~5.0.1" 3122 | mime-types "~2.1.7" 3123 | oauth-sign "~0.8.1" 3124 | performance-now "^0.2.0" 3125 | qs "~6.4.0" 3126 | safe-buffer "^5.0.1" 3127 | stringstream "~0.0.4" 3128 | tough-cookie "~2.3.0" 3129 | tunnel-agent "^0.6.0" 3130 | uuid "^3.0.0" 3131 | 3132 | require-directory@^2.1.1: 3133 | version "2.1.1" 3134 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3135 | 3136 | require-main-filename@^1.0.1: 3137 | version "1.0.1" 3138 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3139 | 3140 | resolve@^1.2.0: 3141 | version "1.3.3" 3142 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 3143 | dependencies: 3144 | path-parse "^1.0.5" 3145 | 3146 | response-time@~2.3.1: 3147 | version "2.3.2" 3148 | resolved "https://registry.yarnpkg.com/response-time/-/response-time-2.3.2.tgz#ffa71bab952d62f7c1d49b7434355fbc68dffc5a" 3149 | dependencies: 3150 | depd "~1.1.0" 3151 | on-headers "~1.0.1" 3152 | 3153 | restore-cursor@^1.0.1: 3154 | version "1.0.1" 3155 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3156 | dependencies: 3157 | exit-hook "^1.0.0" 3158 | onetime "^1.0.0" 3159 | 3160 | right-align@^0.1.1: 3161 | version "0.1.3" 3162 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3163 | dependencies: 3164 | align-text "^0.1.1" 3165 | 3166 | rimraf@2, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: 3167 | version "2.6.1" 3168 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3169 | dependencies: 3170 | glob "^7.0.5" 3171 | 3172 | rimraf@~2.2.6: 3173 | version "2.2.8" 3174 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" 3175 | 3176 | rndm@1.2.0: 3177 | version "1.2.0" 3178 | resolved "https://registry.yarnpkg.com/rndm/-/rndm-1.2.0.tgz#f33fe9cfb52bbfd520aa18323bc65db110a1b76c" 3179 | 3180 | run-async@^0.1.0: 3181 | version "0.1.0" 3182 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3183 | dependencies: 3184 | once "^1.3.0" 3185 | 3186 | rx-lite@^3.1.2: 3187 | version "3.1.2" 3188 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3189 | 3190 | safe-buffer@^5.0.1, safe-buffer@~5.0.1: 3191 | version "5.0.1" 3192 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3193 | 3194 | sane@~1.5.0: 3195 | version "1.5.0" 3196 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.5.0.tgz#a4adeae764d048621ecb27d5f9ecf513101939f3" 3197 | dependencies: 3198 | anymatch "^1.3.0" 3199 | exec-sh "^0.2.0" 3200 | fb-watchman "^1.8.0" 3201 | minimatch "^3.0.2" 3202 | minimist "^1.1.1" 3203 | walker "~1.0.5" 3204 | watch "~0.10.0" 3205 | 3206 | sax@~1.1.1: 3207 | version "1.1.6" 3208 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.1.6.tgz#5d616be8a5e607d54e114afae55b7eaf2fcc3240" 3209 | 3210 | "semver@2 || 3 || 4 || 5", semver@5.x, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: 3211 | version "5.3.0" 3212 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3213 | 3214 | send@0.13.2: 3215 | version "0.13.2" 3216 | resolved "https://registry.yarnpkg.com/send/-/send-0.13.2.tgz#765e7607c8055452bba6f0b052595350986036de" 3217 | dependencies: 3218 | debug "~2.2.0" 3219 | depd "~1.1.0" 3220 | destroy "~1.0.4" 3221 | escape-html "~1.0.3" 3222 | etag "~1.7.0" 3223 | fresh "0.3.0" 3224 | http-errors "~1.3.1" 3225 | mime "1.3.4" 3226 | ms "0.7.1" 3227 | on-finished "~2.3.0" 3228 | range-parser "~1.0.3" 3229 | statuses "~1.2.1" 3230 | 3231 | serve-favicon@~2.3.0: 3232 | version "2.3.2" 3233 | resolved "https://registry.yarnpkg.com/serve-favicon/-/serve-favicon-2.3.2.tgz#dd419e268de012ab72b319d337f2105013f9381f" 3234 | dependencies: 3235 | etag "~1.7.0" 3236 | fresh "0.3.0" 3237 | ms "0.7.2" 3238 | parseurl "~1.3.1" 3239 | 3240 | serve-index@~1.7.2: 3241 | version "1.7.3" 3242 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.7.3.tgz#7a057fc6ee28dc63f64566e5fa57b111a86aecd2" 3243 | dependencies: 3244 | accepts "~1.2.13" 3245 | batch "0.5.3" 3246 | debug "~2.2.0" 3247 | escape-html "~1.0.3" 3248 | http-errors "~1.3.1" 3249 | mime-types "~2.1.9" 3250 | parseurl "~1.3.1" 3251 | 3252 | serve-static@~1.10.0: 3253 | version "1.10.3" 3254 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.10.3.tgz#ce5a6ecd3101fed5ec09827dac22a9c29bfb0535" 3255 | dependencies: 3256 | escape-html "~1.0.3" 3257 | parseurl "~1.3.1" 3258 | send "0.13.2" 3259 | 3260 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3261 | version "2.0.0" 3262 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3263 | 3264 | setimmediate@^1.0.5: 3265 | version "1.0.5" 3266 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3267 | 3268 | shell-quote@1.6.1, shell-quote@^1.6.1: 3269 | version "1.6.1" 3270 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 3271 | dependencies: 3272 | array-filter "~0.0.0" 3273 | array-map "~0.0.0" 3274 | array-reduce "~0.0.0" 3275 | jsonify "~0.0.0" 3276 | 3277 | signal-exit@^3.0.0: 3278 | version "3.0.2" 3279 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3280 | 3281 | simple-plist@^0.2.1: 3282 | version "0.2.1" 3283 | resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-0.2.1.tgz#71766db352326928cf3a807242ba762322636723" 3284 | dependencies: 3285 | bplist-creator "0.0.7" 3286 | bplist-parser "0.1.1" 3287 | plist "2.0.1" 3288 | 3289 | slash@^1.0.0: 3290 | version "1.0.0" 3291 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3292 | 3293 | slide@^1.1.5: 3294 | version "1.1.6" 3295 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3296 | 3297 | sntp@1.x.x: 3298 | version "1.0.9" 3299 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3300 | dependencies: 3301 | hoek "2.x.x" 3302 | 3303 | source-map-support@^0.4.2: 3304 | version "0.4.15" 3305 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 3306 | dependencies: 3307 | source-map "^0.5.6" 3308 | 3309 | source-map@^0.5.0, source-map@^0.5.6, source-map@~0.5.1: 3310 | version "0.5.6" 3311 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3312 | 3313 | sparkles@^1.0.0: 3314 | version "1.0.0" 3315 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3" 3316 | 3317 | spdx-correct@~1.0.0: 3318 | version "1.0.2" 3319 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3320 | dependencies: 3321 | spdx-license-ids "^1.0.2" 3322 | 3323 | spdx-expression-parse@~1.0.0: 3324 | version "1.0.4" 3325 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3326 | 3327 | spdx-license-ids@^1.0.2: 3328 | version "1.2.2" 3329 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3330 | 3331 | sqlite3@^3.1.1: 3332 | version "3.1.8" 3333 | resolved "https://registry.yarnpkg.com/sqlite3/-/sqlite3-3.1.8.tgz#4cbcf965d8b901d1b1015cbc7fc415aae157dfaa" 3334 | dependencies: 3335 | nan "~2.4.0" 3336 | node-pre-gyp "~0.6.31" 3337 | 3338 | sshpk@^1.7.0: 3339 | version "1.13.0" 3340 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 3341 | dependencies: 3342 | asn1 "~0.2.3" 3343 | assert-plus "^1.0.0" 3344 | dashdash "^1.12.0" 3345 | getpass "^0.1.1" 3346 | optionalDependencies: 3347 | bcrypt-pbkdf "^1.0.0" 3348 | ecc-jsbn "~0.1.1" 3349 | jodid25519 "^1.0.0" 3350 | jsbn "~0.1.0" 3351 | tweetnacl "~0.14.0" 3352 | 3353 | stacktrace-parser@^0.1.3: 3354 | version "0.1.4" 3355 | resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.4.tgz#01397922e5f62ecf30845522c95c4fe1d25e7d4e" 3356 | 3357 | statuses@1: 3358 | version "1.3.1" 3359 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 3360 | 3361 | statuses@~1.2.1: 3362 | version "1.2.1" 3363 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.2.1.tgz#dded45cc18256d51ed40aec142489d5c61026d28" 3364 | 3365 | stream-buffers@~2.2.0: 3366 | version "2.2.0" 3367 | resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4" 3368 | 3369 | stream-counter@~0.2.0: 3370 | version "0.2.0" 3371 | resolved "https://registry.yarnpkg.com/stream-counter/-/stream-counter-0.2.0.tgz#ded266556319c8b0e222812b9cf3b26fa7d947de" 3372 | dependencies: 3373 | readable-stream "~1.1.8" 3374 | 3375 | string-width@^1.0.1, string-width@^1.0.2: 3376 | version "1.0.2" 3377 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3378 | dependencies: 3379 | code-point-at "^1.0.0" 3380 | is-fullwidth-code-point "^1.0.0" 3381 | strip-ansi "^3.0.0" 3382 | 3383 | string_decoder@~0.10.x: 3384 | version "0.10.31" 3385 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3386 | 3387 | string_decoder@~1.0.0: 3388 | version "1.0.1" 3389 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.1.tgz#62e200f039955a6810d8df0a33ffc0f013662d98" 3390 | dependencies: 3391 | safe-buffer "^5.0.1" 3392 | 3393 | stringstream@~0.0.4: 3394 | version "0.0.5" 3395 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3396 | 3397 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3398 | version "3.0.1" 3399 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3400 | dependencies: 3401 | ansi-regex "^2.0.0" 3402 | 3403 | strip-bom@^2.0.0: 3404 | version "2.0.0" 3405 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3406 | dependencies: 3407 | is-utf8 "^0.2.0" 3408 | 3409 | strip-json-comments@~2.0.1: 3410 | version "2.0.1" 3411 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3412 | 3413 | supports-color@^2.0.0: 3414 | version "2.0.0" 3415 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3416 | 3417 | tar-pack@^3.4.0: 3418 | version "3.4.0" 3419 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3420 | dependencies: 3421 | debug "^2.2.0" 3422 | fstream "^1.0.10" 3423 | fstream-ignore "^1.0.5" 3424 | once "^1.3.3" 3425 | readable-stream "^2.1.4" 3426 | rimraf "^2.5.1" 3427 | tar "^2.2.1" 3428 | uid-number "^0.0.6" 3429 | 3430 | tar@^2.2.1: 3431 | version "2.2.1" 3432 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3433 | dependencies: 3434 | block-stream "*" 3435 | fstream "^1.0.2" 3436 | inherits "2" 3437 | 3438 | temp@0.8.3: 3439 | version "0.8.3" 3440 | resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59" 3441 | dependencies: 3442 | os-tmpdir "^1.0.0" 3443 | rimraf "~2.2.6" 3444 | 3445 | throat@^3.0.0: 3446 | version "3.0.0" 3447 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 3448 | 3449 | through2@^2.0.0: 3450 | version "2.0.3" 3451 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3452 | dependencies: 3453 | readable-stream "^2.1.5" 3454 | xtend "~4.0.1" 3455 | 3456 | through@^2.3.6: 3457 | version "2.3.8" 3458 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3459 | 3460 | time-stamp@^1.0.0: 3461 | version "1.1.0" 3462 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" 3463 | 3464 | tiny-queue@^0.2.1: 3465 | version "0.2.1" 3466 | resolved "https://registry.yarnpkg.com/tiny-queue/-/tiny-queue-0.2.1.tgz#25a67f2c6e253b2ca941977b5ef7442ef97a6046" 3467 | 3468 | tmpl@1.0.x: 3469 | version "1.0.4" 3470 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3471 | 3472 | to-fast-properties@^1.0.1: 3473 | version "1.0.3" 3474 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3475 | 3476 | topo@1.x.x: 3477 | version "1.1.0" 3478 | resolved "https://registry.yarnpkg.com/topo/-/topo-1.1.0.tgz#e9d751615d1bb87dc865db182fa1ca0a5ef536d5" 3479 | dependencies: 3480 | hoek "2.x.x" 3481 | 3482 | tough-cookie@~2.3.0: 3483 | version "2.3.2" 3484 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3485 | dependencies: 3486 | punycode "^1.4.1" 3487 | 3488 | trim-right@^1.0.1: 3489 | version "1.0.1" 3490 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3491 | 3492 | tsscmp@1.0.5: 3493 | version "1.0.5" 3494 | resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.5.tgz#7dc4a33af71581ab4337da91d85ca5427ebd9a97" 3495 | 3496 | tunnel-agent@^0.6.0: 3497 | version "0.6.0" 3498 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3499 | dependencies: 3500 | safe-buffer "^5.0.1" 3501 | 3502 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3503 | version "0.14.5" 3504 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3505 | 3506 | type-is@~1.6.6: 3507 | version "1.6.15" 3508 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" 3509 | dependencies: 3510 | media-typer "0.3.0" 3511 | mime-types "~2.1.15" 3512 | 3513 | typedarray@^0.0.6: 3514 | version "0.0.6" 3515 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3516 | 3517 | ua-parser-js@^0.7.9: 3518 | version "0.7.12" 3519 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 3520 | 3521 | uglify-js@2.7.5: 3522 | version "2.7.5" 3523 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" 3524 | dependencies: 3525 | async "~0.2.6" 3526 | source-map "~0.5.1" 3527 | uglify-to-browserify "~1.0.0" 3528 | yargs "~3.10.0" 3529 | 3530 | uglify-to-browserify@~1.0.0: 3531 | version "1.0.2" 3532 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3533 | 3534 | uid-number@^0.0.6: 3535 | version "0.0.6" 3536 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3537 | 3538 | uid-safe@2.1.4: 3539 | version "2.1.4" 3540 | resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.4.tgz#3ad6f38368c6d4c8c75ec17623fb79aa1d071d81" 3541 | dependencies: 3542 | random-bytes "~1.0.0" 3543 | 3544 | uid-safe@~2.0.0: 3545 | version "2.0.0" 3546 | resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.0.0.tgz#a7f3c6ca64a1f6a5d04ec0ef3e4c3d5367317137" 3547 | dependencies: 3548 | base64-url "1.2.1" 3549 | 3550 | ultron@1.0.x: 3551 | version "1.0.2" 3552 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" 3553 | 3554 | ultron@~1.1.0: 3555 | version "1.1.0" 3556 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.0.tgz#b07a2e6a541a815fc6a34ccd4533baec307ca864" 3557 | 3558 | unpipe@1.0.0, unpipe@~1.0.0: 3559 | version "1.0.0" 3560 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3561 | 3562 | util-deprecate@1.0.2, util-deprecate@~1.0.1: 3563 | version "1.0.2" 3564 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3565 | 3566 | utils-merge@1.0.0: 3567 | version "1.0.0" 3568 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 3569 | 3570 | uuid-js@^0.7.5: 3571 | version "0.7.5" 3572 | resolved "https://registry.yarnpkg.com/uuid-js/-/uuid-js-0.7.5.tgz#6c886d02a53d2d40dcf25d91a170b4a7b25b94d0" 3573 | 3574 | uuid@3.0.1, uuid@^3.0.0: 3575 | version "3.0.1" 3576 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3577 | 3578 | validate-npm-package-license@^3.0.1: 3579 | version "3.0.1" 3580 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3581 | dependencies: 3582 | spdx-correct "~1.0.0" 3583 | spdx-expression-parse "~1.0.0" 3584 | 3585 | vary@~1.0.1: 3586 | version "1.0.1" 3587 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.0.1.tgz#99e4981566a286118dfb2b817357df7993376d10" 3588 | 3589 | vary@~1.1.1: 3590 | version "1.1.1" 3591 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" 3592 | 3593 | verror@1.3.6: 3594 | version "1.3.6" 3595 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3596 | dependencies: 3597 | extsprintf "1.0.2" 3598 | 3599 | vhost@~3.0.1: 3600 | version "3.0.2" 3601 | resolved "https://registry.yarnpkg.com/vhost/-/vhost-3.0.2.tgz#2fb1decd4c466aa88b0f9341af33dc1aff2478d5" 3602 | 3603 | vinyl@^0.5.0: 3604 | version "0.5.3" 3605 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" 3606 | dependencies: 3607 | clone "^1.0.0" 3608 | clone-stats "^0.0.1" 3609 | replace-ext "0.0.1" 3610 | 3611 | walker@~1.0.5: 3612 | version "1.0.7" 3613 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3614 | dependencies: 3615 | makeerror "1.0.x" 3616 | 3617 | watch@~0.10.0: 3618 | version "0.10.0" 3619 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3620 | 3621 | websql@^0.4.4: 3622 | version "0.4.4" 3623 | resolved "https://registry.yarnpkg.com/websql/-/websql-0.4.4.tgz#1463177f203cff0f3ac4d8294c8e1261c0c8ec01" 3624 | dependencies: 3625 | argsarray "0.0.1" 3626 | immediate "^3.2.2" 3627 | noop-fn "^1.0.0" 3628 | pouchdb-collections "^1.0.1" 3629 | sqlite3 "^3.1.1" 3630 | tiny-queue "^0.2.1" 3631 | 3632 | whatwg-fetch@>=0.10.0, whatwg-fetch@^1.0.0: 3633 | version "1.1.1" 3634 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-1.1.1.tgz#ac3c9d39f320c6dce5339969d054ef43dd333319" 3635 | 3636 | which-module@^1.0.0: 3637 | version "1.0.0" 3638 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3639 | 3640 | which@^1.2.9: 3641 | version "1.2.14" 3642 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3643 | dependencies: 3644 | isexe "^2.0.0" 3645 | 3646 | wide-align@^1.1.0: 3647 | version "1.1.2" 3648 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3649 | dependencies: 3650 | string-width "^1.0.2" 3651 | 3652 | window-size@0.1.0: 3653 | version "0.1.0" 3654 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3655 | 3656 | wordwrap@0.0.2: 3657 | version "0.0.2" 3658 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3659 | 3660 | wordwrap@^1.0.0: 3661 | version "1.0.0" 3662 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3663 | 3664 | wordwrap@~0.0.2: 3665 | version "0.0.3" 3666 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3667 | 3668 | worker-farm@^1.3.1: 3669 | version "1.3.1" 3670 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 3671 | dependencies: 3672 | errno ">=0.1.1 <0.2.0-0" 3673 | xtend ">=4.0.0 <4.1.0-0" 3674 | 3675 | wrap-ansi@^2.0.0: 3676 | version "2.1.0" 3677 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3678 | dependencies: 3679 | string-width "^1.0.1" 3680 | strip-ansi "^3.0.1" 3681 | 3682 | wrappy@1: 3683 | version "1.0.2" 3684 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3685 | 3686 | write-file-atomic@^1.2.0: 3687 | version "1.3.4" 3688 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 3689 | dependencies: 3690 | graceful-fs "^4.1.11" 3691 | imurmurhash "^0.1.4" 3692 | slide "^1.1.5" 3693 | 3694 | ws@^1.1.0: 3695 | version "1.1.4" 3696 | resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.4.tgz#57f40d036832e5f5055662a397c4de76ed66bf61" 3697 | dependencies: 3698 | options ">=0.0.5" 3699 | ultron "1.0.x" 3700 | 3701 | ws@^2.0.3: 3702 | version "2.3.1" 3703 | resolved "https://registry.yarnpkg.com/ws/-/ws-2.3.1.tgz#6b94b3e447cb6a363f785eaf94af6359e8e81c80" 3704 | dependencies: 3705 | safe-buffer "~5.0.1" 3706 | ultron "~1.1.0" 3707 | 3708 | xcode@^0.9.1: 3709 | version "0.9.3" 3710 | resolved "https://registry.yarnpkg.com/xcode/-/xcode-0.9.3.tgz#910a89c16aee6cc0b42ca805a6d0b4cf87211cf3" 3711 | dependencies: 3712 | pegjs "^0.10.0" 3713 | simple-plist "^0.2.1" 3714 | uuid "3.0.1" 3715 | 3716 | xmlbuilder@4.0.0: 3717 | version "4.0.0" 3718 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-4.0.0.tgz#98b8f651ca30aa624036f127d11cc66dc7b907a3" 3719 | dependencies: 3720 | lodash "^3.5.0" 3721 | 3722 | xmlbuilder@8.2.2: 3723 | version "8.2.2" 3724 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-8.2.2.tgz#69248673410b4ba42e1a6136551d2922335aa773" 3725 | 3726 | xmldoc@^0.4.0: 3727 | version "0.4.0" 3728 | resolved "https://registry.yarnpkg.com/xmldoc/-/xmldoc-0.4.0.tgz#d257224be8393eaacbf837ef227fd8ec25b36888" 3729 | dependencies: 3730 | sax "~1.1.1" 3731 | 3732 | xmldom@0.1.x: 3733 | version "0.1.27" 3734 | resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" 3735 | 3736 | xpipe@^1.0.5: 3737 | version "1.0.5" 3738 | resolved "https://registry.yarnpkg.com/xpipe/-/xpipe-1.0.5.tgz#8dd8bf45fc3f7f55f0e054b878f43a62614dafdf" 3739 | 3740 | "xtend@>=4.0.0 <4.1.0-0", xtend@~4.0.1: 3741 | version "4.0.1" 3742 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3743 | 3744 | y18n@^3.2.1: 3745 | version "3.2.1" 3746 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3747 | 3748 | yallist@^2.0.0: 3749 | version "2.1.2" 3750 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3751 | 3752 | yargs-parser@^4.2.0: 3753 | version "4.2.1" 3754 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 3755 | dependencies: 3756 | camelcase "^3.0.0" 3757 | 3758 | yargs@^6.3.0, yargs@^6.4.0: 3759 | version "6.6.0" 3760 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 3761 | dependencies: 3762 | camelcase "^3.0.0" 3763 | cliui "^3.2.0" 3764 | decamelize "^1.1.1" 3765 | get-caller-file "^1.0.1" 3766 | os-locale "^1.4.0" 3767 | read-pkg-up "^1.0.1" 3768 | require-directory "^2.1.1" 3769 | require-main-filename "^1.0.1" 3770 | set-blocking "^2.0.0" 3771 | string-width "^1.0.2" 3772 | which-module "^1.0.0" 3773 | y18n "^3.2.1" 3774 | yargs-parser "^4.2.0" 3775 | 3776 | yargs@~3.10.0: 3777 | version "3.10.0" 3778 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3779 | dependencies: 3780 | camelcase "^1.0.2" 3781 | cliui "^2.1.0" 3782 | decamelize "^1.0.0" 3783 | window-size "0.1.0" 3784 | -------------------------------------------------------------------------------- /flow-typed/npm/flow-bin_v0.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 6a5610678d4b01e13bbfbbc62bdaf583 2 | // flow-typed version: 3817bc6980/flow-bin_v0.x.x/flow_>=v0.25.x 3 | 4 | declare module "flow-bin" { 5 | declare module.exports: string; 6 | } 7 | -------------------------------------------------------------------------------- /flow-typed/npm/jest_v20.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 5960ed076fe29ecf92f57584d68acf98 2 | // flow-typed version: b2a49dc910/jest_v20.x.x/flow_>=v0.39.x 3 | 4 | type JestMockFn, TReturn> = { 5 | (...args: TArguments): TReturn, 6 | /** 7 | * An object for introspecting mock calls 8 | */ 9 | mock: { 10 | /** 11 | * An array that represents all calls that have been made into this mock 12 | * function. Each call is represented by an array of arguments that were 13 | * passed during the call. 14 | */ 15 | calls: Array, 16 | /** 17 | * An array that contains all the object instances that have been 18 | * instantiated from this mock function. 19 | */ 20 | instances: Array 21 | }, 22 | /** 23 | * Resets all information stored in the mockFn.mock.calls and 24 | * mockFn.mock.instances arrays. Often this is useful when you want to clean 25 | * up a mock's usage data between two assertions. 26 | */ 27 | mockClear(): void, 28 | /** 29 | * Resets all information stored in the mock. This is useful when you want to 30 | * completely restore a mock back to its initial state. 31 | */ 32 | mockReset(): void, 33 | /** 34 | * Removes the mock and restores the initial implementation. This is useful 35 | * when you want to mock functions in certain test cases and restore the 36 | * original implementation in others. Beware that mockFn.mockRestore only 37 | * works when mock was created with jest.spyOn. Thus you have to take care of 38 | * restoration yourself when manually assigning jest.fn(). 39 | */ 40 | mockRestore(): void, 41 | /** 42 | * Accepts a function that should be used as the implementation of the mock. 43 | * The mock itself will still record all calls that go into and instances 44 | * that come from itself -- the only difference is that the implementation 45 | * will also be executed when the mock is called. 46 | */ 47 | mockImplementation( 48 | fn: (...args: TArguments) => TReturn, 49 | ): JestMockFn, 50 | /** 51 | * Accepts a function that will be used as an implementation of the mock for 52 | * one call to the mocked function. Can be chained so that multiple function 53 | * calls produce different results. 54 | */ 55 | mockImplementationOnce( 56 | fn: (...args: TArguments) => TReturn, 57 | ): JestMockFn, 58 | /** 59 | * Just a simple sugar function for returning `this` 60 | */ 61 | mockReturnThis(): void, 62 | /** 63 | * Deprecated: use jest.fn(() => value) instead 64 | */ 65 | mockReturnValue(value: TReturn): JestMockFn, 66 | /** 67 | * Sugar for only returning a value once inside your mock 68 | */ 69 | mockReturnValueOnce(value: TReturn): JestMockFn 70 | }; 71 | 72 | type JestAsymmetricEqualityType = { 73 | /** 74 | * A custom Jasmine equality tester 75 | */ 76 | asymmetricMatch(value: mixed): boolean 77 | }; 78 | 79 | type JestCallsType = { 80 | allArgs(): mixed, 81 | all(): mixed, 82 | any(): boolean, 83 | count(): number, 84 | first(): mixed, 85 | mostRecent(): mixed, 86 | reset(): void 87 | }; 88 | 89 | type JestClockType = { 90 | install(): void, 91 | mockDate(date: Date): void, 92 | tick(milliseconds?: number): void, 93 | uninstall(): void 94 | }; 95 | 96 | type JestMatcherResult = { 97 | message?: string | (() => string), 98 | pass: boolean 99 | }; 100 | 101 | type JestMatcher = (actual: any, expected: any) => JestMatcherResult; 102 | 103 | type JestPromiseType = { 104 | /** 105 | * Use rejects to unwrap the reason of a rejected promise so any other 106 | * matcher can be chained. If the promise is fulfilled the assertion fails. 107 | */ 108 | rejects: JestExpectType, 109 | /** 110 | * Use resolves to unwrap the value of a fulfilled promise so any other 111 | * matcher can be chained. If the promise is rejected the assertion fails. 112 | */ 113 | resolves: JestExpectType 114 | }; 115 | 116 | /** 117 | * Plugin: jest-enzyme 118 | */ 119 | type EnzymeMatchersType = { 120 | toBeChecked(): void, 121 | toBeDisabled(): void, 122 | toBeEmpty(): void, 123 | toBePresent(): void, 124 | toContainReact(element: React$Element): void, 125 | toHaveClassName(className: string): void, 126 | toHaveHTML(html: string): void, 127 | toHaveProp(propKey: string, propValue?: any): void, 128 | toHaveRef(refName: string): void, 129 | toHaveState(stateKey: string, stateValue?: any): void, 130 | toHaveStyle(styleKey: string, styleValue?: any): void, 131 | toHaveTagName(tagName: string): void, 132 | toHaveText(text: string): void, 133 | toIncludeText(text: string): void, 134 | toHaveValue(value: any): void, 135 | toMatchElement(element: React$Element): void, 136 | toMatchSelector(selector: string): void, 137 | }; 138 | 139 | type JestExpectType = { 140 | not: JestExpectType & EnzymeMatchersType, 141 | /** 142 | * If you have a mock function, you can use .lastCalledWith to test what 143 | * arguments it was last called with. 144 | */ 145 | lastCalledWith(...args: Array): void, 146 | /** 147 | * toBe just checks that a value is what you expect. It uses === to check 148 | * strict equality. 149 | */ 150 | toBe(value: any): void, 151 | /** 152 | * Use .toHaveBeenCalled to ensure that a mock function got called. 153 | */ 154 | toBeCalled(): void, 155 | /** 156 | * Use .toBeCalledWith to ensure that a mock function was called with 157 | * specific arguments. 158 | */ 159 | toBeCalledWith(...args: Array): void, 160 | /** 161 | * Using exact equality with floating point numbers is a bad idea. Rounding 162 | * means that intuitive things fail. 163 | */ 164 | toBeCloseTo(num: number, delta: any): void, 165 | /** 166 | * Use .toBeDefined to check that a variable is not undefined. 167 | */ 168 | toBeDefined(): void, 169 | /** 170 | * Use .toBeFalsy when you don't care what a value is, you just want to 171 | * ensure a value is false in a boolean context. 172 | */ 173 | toBeFalsy(): void, 174 | /** 175 | * To compare floating point numbers, you can use toBeGreaterThan. 176 | */ 177 | toBeGreaterThan(number: number): void, 178 | /** 179 | * To compare floating point numbers, you can use toBeGreaterThanOrEqual. 180 | */ 181 | toBeGreaterThanOrEqual(number: number): void, 182 | /** 183 | * To compare floating point numbers, you can use toBeLessThan. 184 | */ 185 | toBeLessThan(number: number): void, 186 | /** 187 | * To compare floating point numbers, you can use toBeLessThanOrEqual. 188 | */ 189 | toBeLessThanOrEqual(number: number): void, 190 | /** 191 | * Use .toBeInstanceOf(Class) to check that an object is an instance of a 192 | * class. 193 | */ 194 | toBeInstanceOf(cls: Class<*>): void, 195 | /** 196 | * .toBeNull() is the same as .toBe(null) but the error messages are a bit 197 | * nicer. 198 | */ 199 | toBeNull(): void, 200 | /** 201 | * Use .toBeTruthy when you don't care what a value is, you just want to 202 | * ensure a value is true in a boolean context. 203 | */ 204 | toBeTruthy(): void, 205 | /** 206 | * Use .toBeUndefined to check that a variable is undefined. 207 | */ 208 | toBeUndefined(): void, 209 | /** 210 | * Use .toContain when you want to check that an item is in a list. For 211 | * testing the items in the list, this uses ===, a strict equality check. 212 | */ 213 | toContain(item: any): void, 214 | /** 215 | * Use .toContainEqual when you want to check that an item is in a list. For 216 | * testing the items in the list, this matcher recursively checks the 217 | * equality of all fields, rather than checking for object identity. 218 | */ 219 | toContainEqual(item: any): void, 220 | /** 221 | * Use .toEqual when you want to check that two objects have the same value. 222 | * This matcher recursively checks the equality of all fields, rather than 223 | * checking for object identity. 224 | */ 225 | toEqual(value: any): void, 226 | /** 227 | * Use .toHaveBeenCalled to ensure that a mock function got called. 228 | */ 229 | toHaveBeenCalled(): void, 230 | /** 231 | * Use .toHaveBeenCalledTimes to ensure that a mock function got called exact 232 | * number of times. 233 | */ 234 | toHaveBeenCalledTimes(number: number): void, 235 | /** 236 | * Use .toHaveBeenCalledWith to ensure that a mock function was called with 237 | * specific arguments. 238 | */ 239 | toHaveBeenCalledWith(...args: Array): void, 240 | /** 241 | * Use .toHaveBeenLastCalledWith to ensure that a mock function was last called 242 | * with specific arguments. 243 | */ 244 | toHaveBeenLastCalledWith(...args: Array): void, 245 | /** 246 | * Check that an object has a .length property and it is set to a certain 247 | * numeric value. 248 | */ 249 | toHaveLength(number: number): void, 250 | /** 251 | * 252 | */ 253 | toHaveProperty(propPath: string, value?: any): void, 254 | /** 255 | * Use .toMatch to check that a string matches a regular expression or string. 256 | */ 257 | toMatch(regexpOrString: RegExp | string): void, 258 | /** 259 | * Use .toMatchObject to check that a javascript object matches a subset of the properties of an object. 260 | */ 261 | toMatchObject(object: Object): void, 262 | /** 263 | * This ensures that a React component matches the most recent snapshot. 264 | */ 265 | toMatchSnapshot(name?: string): void, 266 | /** 267 | * Use .toThrow to test that a function throws when it is called. 268 | * If you want to test that a specific error gets thrown, you can provide an 269 | * argument to toThrow. The argument can be a string for the error message, 270 | * a class for the error, or a regex that should match the error. 271 | * 272 | * Alias: .toThrowError 273 | */ 274 | toThrow(message?: string | Error | RegExp): void, 275 | toThrowError(message?: string | Error | RegExp): void, 276 | /** 277 | * Use .toThrowErrorMatchingSnapshot to test that a function throws a error 278 | * matching the most recent snapshot when it is called. 279 | */ 280 | toThrowErrorMatchingSnapshot(): void 281 | }; 282 | 283 | type JestObjectType = { 284 | /** 285 | * Disables automatic mocking in the module loader. 286 | * 287 | * After this method is called, all `require()`s will return the real 288 | * versions of each module (rather than a mocked version). 289 | */ 290 | disableAutomock(): JestObjectType, 291 | /** 292 | * An un-hoisted version of disableAutomock 293 | */ 294 | autoMockOff(): JestObjectType, 295 | /** 296 | * Enables automatic mocking in the module loader. 297 | */ 298 | enableAutomock(): JestObjectType, 299 | /** 300 | * An un-hoisted version of enableAutomock 301 | */ 302 | autoMockOn(): JestObjectType, 303 | /** 304 | * Clears the mock.calls and mock.instances properties of all mocks. 305 | * Equivalent to calling .mockClear() on every mocked function. 306 | */ 307 | clearAllMocks(): JestObjectType, 308 | /** 309 | * Resets the state of all mocks. Equivalent to calling .mockReset() on every 310 | * mocked function. 311 | */ 312 | resetAllMocks(): JestObjectType, 313 | /** 314 | * Removes any pending timers from the timer system. 315 | */ 316 | clearAllTimers(): void, 317 | /** 318 | * The same as `mock` but not moved to the top of the expectation by 319 | * babel-jest. 320 | */ 321 | doMock(moduleName: string, moduleFactory?: any): JestObjectType, 322 | /** 323 | * The same as `unmock` but not moved to the top of the expectation by 324 | * babel-jest. 325 | */ 326 | dontMock(moduleName: string): JestObjectType, 327 | /** 328 | * Returns a new, unused mock function. Optionally takes a mock 329 | * implementation. 330 | */ 331 | fn, TReturn>( 332 | implementation?: (...args: TArguments) => TReturn, 333 | ): JestMockFn, 334 | /** 335 | * Determines if the given function is a mocked function. 336 | */ 337 | isMockFunction(fn: Function): boolean, 338 | /** 339 | * Given the name of a module, use the automatic mocking system to generate a 340 | * mocked version of the module for you. 341 | */ 342 | genMockFromModule(moduleName: string): any, 343 | /** 344 | * Mocks a module with an auto-mocked version when it is being required. 345 | * 346 | * The second argument can be used to specify an explicit module factory that 347 | * is being run instead of using Jest's automocking feature. 348 | * 349 | * The third argument can be used to create virtual mocks -- mocks of modules 350 | * that don't exist anywhere in the system. 351 | */ 352 | mock( 353 | moduleName: string, 354 | moduleFactory?: any, 355 | options?: Object 356 | ): JestObjectType, 357 | /** 358 | * Resets the module registry - the cache of all required modules. This is 359 | * useful to isolate modules where local state might conflict between tests. 360 | */ 361 | resetModules(): JestObjectType, 362 | /** 363 | * Exhausts the micro-task queue (usually interfaced in node via 364 | * process.nextTick). 365 | */ 366 | runAllTicks(): void, 367 | /** 368 | * Exhausts the macro-task queue (i.e., all tasks queued by setTimeout(), 369 | * setInterval(), and setImmediate()). 370 | */ 371 | runAllTimers(): void, 372 | /** 373 | * Exhausts all tasks queued by setImmediate(). 374 | */ 375 | runAllImmediates(): void, 376 | /** 377 | * Executes only the macro task queue (i.e. all tasks queued by setTimeout() 378 | * or setInterval() and setImmediate()). 379 | */ 380 | runTimersToTime(msToRun: number): void, 381 | /** 382 | * Executes only the macro-tasks that are currently pending (i.e., only the 383 | * tasks that have been queued by setTimeout() or setInterval() up to this 384 | * point) 385 | */ 386 | runOnlyPendingTimers(): void, 387 | /** 388 | * Explicitly supplies the mock object that the module system should return 389 | * for the specified module. Note: It is recommended to use jest.mock() 390 | * instead. 391 | */ 392 | setMock(moduleName: string, moduleExports: any): JestObjectType, 393 | /** 394 | * Indicates that the module system should never return a mocked version of 395 | * the specified module from require() (e.g. that it should always return the 396 | * real module). 397 | */ 398 | unmock(moduleName: string): JestObjectType, 399 | /** 400 | * Instructs Jest to use fake versions of the standard timer functions 401 | * (setTimeout, setInterval, clearTimeout, clearInterval, nextTick, 402 | * setImmediate and clearImmediate). 403 | */ 404 | useFakeTimers(): JestObjectType, 405 | /** 406 | * Instructs Jest to use the real versions of the standard timer functions. 407 | */ 408 | useRealTimers(): JestObjectType, 409 | /** 410 | * Creates a mock function similar to jest.fn but also tracks calls to 411 | * object[methodName]. 412 | */ 413 | spyOn(object: Object, methodName: string): JestMockFn 414 | }; 415 | 416 | type JestSpyType = { 417 | calls: JestCallsType 418 | }; 419 | 420 | /** Runs this function after every test inside this context */ 421 | declare function afterEach(fn: (done: () => void) => ?Promise, timeout?: number): void; 422 | /** Runs this function before every test inside this context */ 423 | declare function beforeEach(fn: (done: () => void) => ?Promise, timeout?: number): void; 424 | /** Runs this function after all tests have finished inside this context */ 425 | declare function afterAll(fn: (done: () => void) => ?Promise, timeout?: number): void; 426 | /** Runs this function before any tests have started inside this context */ 427 | declare function beforeAll(fn: (done: () => void) => ?Promise, timeout?: number): void; 428 | 429 | /** A context for grouping tests together */ 430 | declare var describe: { 431 | /** 432 | * Creates a block that groups together several related tests in one "test suite" 433 | */ 434 | (name: string, fn: () => void): void, 435 | 436 | /** 437 | * Only run this describe block 438 | */ 439 | only(name: string, fn: () => void): void, 440 | 441 | /** 442 | * Skip running this describe block 443 | */ 444 | skip(name: string, fn: () => void): void, 445 | }; 446 | 447 | 448 | /** An individual test unit */ 449 | declare var it: { 450 | /** 451 | * An individual test unit 452 | * 453 | * @param {string} Name of Test 454 | * @param {Function} Test 455 | * @param {number} Timeout for the test, in milliseconds. 456 | */ 457 | (name: string, fn?: (done: () => void) => ?Promise, timeout?: number): void, 458 | /** 459 | * Only run this test 460 | * 461 | * @param {string} Name of Test 462 | * @param {Function} Test 463 | * @param {number} Timeout for the test, in milliseconds. 464 | */ 465 | only(name: string, fn?: (done: () => void) => ?Promise, timeout?: number): void, 466 | /** 467 | * Skip running this test 468 | * 469 | * @param {string} Name of Test 470 | * @param {Function} Test 471 | * @param {number} Timeout for the test, in milliseconds. 472 | */ 473 | skip(name: string, fn?: (done: () => void) => ?Promise, timeout?: number): void, 474 | /** 475 | * Run the test concurrently 476 | * 477 | * @param {string} Name of Test 478 | * @param {Function} Test 479 | * @param {number} Timeout for the test, in milliseconds. 480 | */ 481 | concurrent(name: string, fn?: (done: () => void) => ?Promise, timeout?: number): void, 482 | }; 483 | declare function fit( 484 | name: string, 485 | fn: (done: () => void) => ?Promise, 486 | timeout?: number, 487 | ): void; 488 | /** An individual test unit */ 489 | declare var test: typeof it; 490 | /** A disabled group of tests */ 491 | declare var xdescribe: typeof describe; 492 | /** A focused group of tests */ 493 | declare var fdescribe: typeof describe; 494 | /** A disabled individual test */ 495 | declare var xit: typeof it; 496 | /** A disabled individual test */ 497 | declare var xtest: typeof it; 498 | 499 | /** The expect function is used every time you want to test a value */ 500 | declare var expect: { 501 | /** The object that you want to make assertions against */ 502 | (value: any): JestExpectType & JestPromiseType & EnzymeMatchersType, 503 | /** Add additional Jasmine matchers to Jest's roster */ 504 | extend(matchers: { [name: string]: JestMatcher }): void, 505 | /** Add a module that formats application-specific data structures. */ 506 | addSnapshotSerializer(serializer: (input: Object) => string): void, 507 | assertions(expectedAssertions: number): void, 508 | hasAssertions(): void, 509 | any(value: mixed): JestAsymmetricEqualityType, 510 | anything(): void, 511 | arrayContaining(value: Array): void, 512 | objectContaining(value: Object): void, 513 | /** Matches any received string that contains the exact expected string. */ 514 | stringContaining(value: string): void, 515 | stringMatching(value: string | RegExp): void 516 | }; 517 | 518 | // TODO handle return type 519 | // http://jasmine.github.io/2.4/introduction.html#section-Spies 520 | declare function spyOn(value: mixed, method: string): Object; 521 | 522 | /** Holds all functions related to manipulating test runner */ 523 | declare var jest: JestObjectType; 524 | 525 | /** 526 | * The global Jamine object, this is generally not exposed as the public API, 527 | * using features inside here could break in later versions of Jest. 528 | */ 529 | declare var jasmine: { 530 | DEFAULT_TIMEOUT_INTERVAL: number, 531 | any(value: mixed): JestAsymmetricEqualityType, 532 | anything(): void, 533 | arrayContaining(value: Array): void, 534 | clock(): JestClockType, 535 | createSpy(name: string): JestSpyType, 536 | createSpyObj( 537 | baseName: string, 538 | methodNames: Array 539 | ): { [methodName: string]: JestSpyType }, 540 | objectContaining(value: Object): void, 541 | stringMatching(value: string): void 542 | }; 543 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@appandflow/masonry-list", 3 | "version": "0.4.0", 4 | "main": "./src/MasonryList.js", 5 | "private": false, 6 | "repository": { 7 | "type": "git", 8 | "url": "https://github.com/AppAndFlow/react-native-masonry-list.git" 9 | }, 10 | "bugs": { 11 | "url": "https://github.com/AppAndFlow/react-native-masonry-list.git/issues" 12 | }, 13 | "keywords": [ 14 | "react-native", 15 | "appandflow", 16 | "masonry", 17 | "list" 18 | ], 19 | "author": "AppAndFlow", 20 | "license": "MIT", 21 | "files": [ 22 | "/src" 23 | ], 24 | "lint-staged": { 25 | "*.js": [ 26 | "yarn prettier", 27 | "git add" 28 | ] 29 | }, 30 | "scripts": { 31 | "prettier": "node ./scripts/prettier.js write", 32 | "lint": "eslint src", 33 | "precommit": "lint-staged", 34 | "flow": "flow check", 35 | "test": "jest", 36 | "ci": "yarn lint && yarn flow && yarn test" 37 | }, 38 | "jest": { 39 | "preset": "react-native", 40 | "modulePathIgnorePatterns": [ 41 | "example" 42 | ] 43 | }, 44 | "peerDependencies": { 45 | "react": "*" 46 | }, 47 | "devDependencies": { 48 | "babel-preset-react-native": "^3.0.1", 49 | "chalk": "^2.1.0", 50 | "eslint": "^4.5.0", 51 | "eslint-config-anf": "^0.5.2", 52 | "eslint-config-prettier": "^2.3.0", 53 | "flow-bin": "^0.53.1", 54 | "glob": "^7.1.2", 55 | "husky": "^0.14.3", 56 | "jest": "^20.0.4", 57 | "jest-expo": "^20.0.0", 58 | "lint-staged": "^4.0.3", 59 | "prettier": "^1.5.3", 60 | "react": "16.0.0-beta.5", 61 | "react-native": "janicduplessis/react-native", 62 | "react-test-renderer": "16.0.0-beta.5" 63 | }, 64 | "dependencies": {} 65 | } 66 | -------------------------------------------------------------------------------- /scripts/prettier.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-console */ 2 | 3 | const chalk = require('chalk'); 4 | const glob = require('glob'); 5 | const path = require('path'); 6 | const execFileSync = require('child_process').execFileSync; 7 | 8 | const shouldWrite = process.argv[2] === 'write'; 9 | const isWindows = process.platform === 'win32'; 10 | const prettier = isWindows ? 'prettier.cmd' : 'prettier'; 11 | const prettierCmd = path.resolve( 12 | __dirname, 13 | `../node_modules/.bin/${prettier}` 14 | ); 15 | const defaultOptions = { 16 | 'single-quote': true, 17 | 'trailing-comma': 'all', 18 | 'print-width': 80, 19 | }; 20 | const config = { 21 | default: { 22 | patterns: [ 23 | 'src/**/*.js', 24 | ], 25 | ignore: ['**/node_modules/**'], 26 | }, 27 | }; 28 | 29 | function exec(command, args) { 30 | console.log(`> ${[command].concat(args).join(' ')}`); 31 | const options = {}; 32 | return execFileSync(command, args, options).toString(); 33 | } 34 | 35 | Object.keys(config).forEach(key => { 36 | const patterns = config[key].patterns; 37 | const options = config[key].options; 38 | const ignore = config[key].ignore; 39 | 40 | const globPattern = patterns.length > 1 41 | ? `{${patterns.join(',')}}` 42 | : `${patterns.join(',')}`; 43 | const files = glob.sync(globPattern, { ignore }); 44 | 45 | const args = Object.keys(defaultOptions).map( 46 | k => `--${k}=${(options && options[k]) || defaultOptions[k]}` 47 | ); 48 | args.push(`--${shouldWrite ? 'write' : 'l'}`); 49 | 50 | try { 51 | exec(prettierCmd, [...args, ...files]); 52 | } catch (e) { 53 | if (!shouldWrite) { 54 | console.log( 55 | `\n${ 56 | chalk.red( 57 | ' This project uses prettier to format all JavaScript code.\n' 58 | ) 59 | }${chalk.dim(' Please run ') 60 | }${chalk.reset('yarn prettier') 61 | }${chalk.dim(' and add changes to files listed above to your commit.') 62 | }\n` 63 | ); 64 | process.exit(1); 65 | } 66 | throw e; 67 | } 68 | }); -------------------------------------------------------------------------------- /src/MasonryList.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | import * as React from 'react'; 4 | import { 5 | VirtualizedList, 6 | View, 7 | ScrollView, 8 | StyleSheet, 9 | findNodeHandle, 10 | RefreshControl, 11 | } from 'react-native'; 12 | 13 | type Column = { 14 | index: number, 15 | totalHeight: number, 16 | data: Array, 17 | heights: Array, 18 | }; 19 | 20 | const _stateFromProps = ({ numColumns, data, getHeightForItem }) => { 21 | const columns: Array = Array.from({ 22 | length: numColumns, 23 | }).map((col, i) => ({ 24 | index: i, 25 | totalHeight: 0, 26 | data: [], 27 | heights: [], 28 | })); 29 | 30 | data.forEach((item, index) => { 31 | const height = getHeightForItem({ item, index }); 32 | const column = columns.reduce( 33 | (prev, cur) => (cur.totalHeight < prev.totalHeight ? cur : prev), 34 | columns[0], 35 | ); 36 | column.data.push(item); 37 | column.heights.push(height); 38 | column.totalHeight += height; 39 | }); 40 | 41 | return { columns }; 42 | }; 43 | 44 | export type Props = { 45 | data: Array, 46 | numColumns: number, 47 | renderItem: ({ item: any, index: number, column: number }) => ?React.Element< 48 | any, 49 | >, 50 | getHeightForItem: ({ item: any, index: number }) => number, 51 | ListHeaderComponent?: ?React.ComponentType, 52 | ListEmptyComponent?: ?React.ComponentType, 53 | /** 54 | * Used to extract a unique key for a given item at the specified index. Key is used for caching 55 | * and as the react key to track item re-ordering. The default extractor checks `item.key`, then 56 | * falls back to using the index, like React does. 57 | */ 58 | keyExtractor?: (item: any, index: number) => string, 59 | // onEndReached will get called once per column, not ideal but should not cause 60 | // issues with isLoading checks. 61 | onEndReached?: ?(info: { distanceFromEnd: number }) => void, 62 | contentContainerStyle?: any, 63 | onScroll?: (event: Object) => void, 64 | onScrollBeginDrag?: (event: Object) => void, 65 | onScrollEndDrag?: (event: Object) => void, 66 | onMomentumScrollEnd?: (event: Object) => void, 67 | onEndReachedThreshold?: ?number, 68 | scrollEventThrottle: number, 69 | renderScrollComponent: (props: Object) => React.Element, 70 | /** 71 | * Set this true while waiting for new data from a refresh. 72 | */ 73 | refreshing?: ?boolean, 74 | /** 75 | * If provided, a standard RefreshControl will be added for "Pull to Refresh" functionality. Make 76 | * sure to also set the `refreshing` prop correctly. 77 | */ 78 | onRefresh?: ?Function, 79 | }; 80 | type State = { 81 | columns: Array, 82 | }; 83 | 84 | // This will get cloned and added a bunch of props that are supposed to be on 85 | // ScrollView so we wan't to make sure we don't pass them over (especially 86 | // onLayout since it exists on both). 87 | class FakeScrollView extends React.Component<{ style?: any, children?: any }> { 88 | render() { 89 | return ( 90 | 91 | {this.props.children} 92 | 93 | ); 94 | } 95 | } 96 | 97 | export default class MasonryList extends React.Component { 98 | static defaultProps = { 99 | scrollEventThrottle: 50, 100 | numColumns: 1, 101 | renderScrollComponent: (props: Props) => { 102 | if (props.onRefresh && props.refreshing != null) { 103 | return ( 104 | 111 | } 112 | /> 113 | ); 114 | } 115 | return ; 116 | }, 117 | }; 118 | 119 | state = _stateFromProps(this.props); 120 | _listRefs: Array = []; 121 | _scrollRef: ?ScrollView; 122 | _endsReached = 0; 123 | 124 | componentWillReceiveProps(newProps: Props) { 125 | this.setState(_stateFromProps(newProps)); 126 | } 127 | 128 | getScrollResponder() { 129 | if (this._scrollRef && this._scrollRef.getScrollResponder) { 130 | return this._scrollRef.getScrollResponder(); 131 | } 132 | return null; 133 | } 134 | 135 | getScrollableNode() { 136 | if (this._scrollRef && this._scrollRef.getScrollableNode) { 137 | return this._scrollRef.getScrollableNode(); 138 | } 139 | return findNodeHandle(this._scrollRef); 140 | } 141 | 142 | scrollToOffset({ offset, animated }: any) { 143 | if (this._scrollRef) { 144 | this._scrollRef.scrollTo({ y: offset, animated }); 145 | } 146 | } 147 | 148 | _onLayout = event => { 149 | this._listRefs.forEach( 150 | list => list && list._onLayout && list._onLayout(event), 151 | ); 152 | }; 153 | 154 | _onContentSizeChange = (width, height) => { 155 | this._listRefs.forEach( 156 | list => 157 | list && 158 | list._onContentSizeChange && 159 | list._onContentSizeChange(width, height), 160 | ); 161 | }; 162 | 163 | _onScroll = event => { 164 | if (this.props.onScroll) { 165 | this.props.onScroll(event); 166 | } 167 | this._listRefs.forEach( 168 | list => list && list._onScroll && list._onScroll(event), 169 | ); 170 | }; 171 | 172 | _onScrollBeginDrag = event => { 173 | if (this.props.onScrollBeginDrag) { 174 | this.props.onScrollBeginDrag(event); 175 | } 176 | this._listRefs.forEach( 177 | list => list && list._onScrollBeginDrag && list._onScrollBeginDrag(event), 178 | ); 179 | }; 180 | 181 | _onScrollEndDrag = event => { 182 | if (this.props.onScrollEndDrag) { 183 | this.props.onScrollEndDrag(event); 184 | } 185 | this._listRefs.forEach( 186 | list => list && list._onScrollEndDrag && list._onScrollEndDrag(event), 187 | ); 188 | }; 189 | 190 | _onMomentumScrollEnd = event => { 191 | if (this.props.onMomentumScrollEnd) { 192 | this.props.onMomentumScrollEnd(event); 193 | } 194 | this._listRefs.forEach( 195 | list => 196 | list && list._onMomentumScrollEnd && list._onMomentumScrollEnd(event), 197 | ); 198 | }; 199 | 200 | _getItemLayout = (columnIndex, rowIndex) => { 201 | const column = this.state.columns[columnIndex]; 202 | let offset = 0; 203 | for (let ii = 0; ii < rowIndex; ii += 1) { 204 | offset += column.heights[ii]; 205 | } 206 | return { length: column.heights[rowIndex], offset, index: rowIndex }; 207 | }; 208 | 209 | _renderScrollComponent = () => ; 210 | 211 | _getItemCount = data => data.length; 212 | 213 | _getItem = (data, index) => data[index]; 214 | 215 | _captureScrollRef = ref => (this._scrollRef = ref); 216 | 217 | render() { 218 | const { 219 | renderItem, 220 | ListHeaderComponent, 221 | ListEmptyComponent, 222 | keyExtractor, 223 | onEndReached, 224 | ...props 225 | } = this.props; 226 | let headerElement; 227 | if (ListHeaderComponent) { 228 | headerElement = ; 229 | } 230 | let emptyElement; 231 | if (ListEmptyComponent) { 232 | emptyElement = ; 233 | } 234 | 235 | const content = ( 236 | 237 | {this.state.columns.map(col => 238 | (this._listRefs[col.index] = ref)} 241 | key={`$col_${col.index}`} 242 | data={col.data} 243 | getItemCount={this._getItemCount} 244 | getItem={this._getItem} 245 | getItemLayout={(data, index) => 246 | this._getItemLayout(col.index, index)} 247 | renderItem={({ item, index }) => 248 | renderItem({ item, index, column: col.index })} 249 | renderScrollComponent={this._renderScrollComponent} 250 | keyExtractor={keyExtractor} 251 | onEndReached={onEndReached} 252 | onEndReachedThreshold={this.props.onEndReachedThreshold} 253 | removeClippedSubviews={false} 254 | />, 255 | )} 256 | 257 | ); 258 | 259 | const scrollComponent = React.cloneElement( 260 | this.props.renderScrollComponent(this.props), 261 | { 262 | ref: this._captureScrollRef, 263 | removeClippedSubviews: false, 264 | onContentSizeChange: this._onContentSizeChange, 265 | onLayout: this._onLayout, 266 | onScroll: this._onScroll, 267 | onScrollBeginDrag: this._onScrollBeginDrag, 268 | onScrollEndDrag: this._onScrollEndDrag, 269 | onMomentumScrollEnd: this._onMomentumScrollEnd, 270 | }, 271 | headerElement, 272 | emptyElement && this.props.data.length === 0 ? emptyElement : content, 273 | ); 274 | 275 | return scrollComponent; 276 | } 277 | } 278 | 279 | const styles = StyleSheet.create({ 280 | contentContainer: { 281 | flexDirection: 'row', 282 | }, 283 | column: { 284 | flex: 1, 285 | }, 286 | }); 287 | -------------------------------------------------------------------------------- /src/__tests__/MasonryList-test.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | import * as React from 'react'; 4 | import renderer from 'react-test-renderer'; 5 | 6 | import MasonryList from '../MasonryList'; 7 | 8 | jest.mock('Blob', () => ({})).mock('URL', () => ({})); 9 | 10 | describe('MasonryList', () => { 11 | it('renders correctly', () => { 12 | const component = renderer 13 | .create( 14 | 1} 17 | renderItem={() => {}} 18 | />, 19 | ) 20 | .toJSON(); 21 | expect(component).toMatchSnapshot(); 22 | }); 23 | 24 | it('should render a single column list', () => { 25 | const component = renderer 26 | .create( 27 | 1} 30 | renderItem={({ item }) => } 31 | />, 32 | ) 33 | .toJSON(); 34 | expect(component).toMatchSnapshot(); 35 | }); 36 | 37 | it('should render a header', () => { 38 | /** 39 | * this test will render only the header without list. 40 | * This because when ListHeaderComponent is passed, 41 | * the list isn't render until the header is measured 42 | */ 43 | const component = renderer 44 | .create( 45 | 1} 48 | ListHeaderComponent={() =>
} 49 | renderItem={({ item }) => } 50 | />, 51 | ) 52 | .toJSON(); 53 | expect(component).toMatchSnapshot(); 54 | }); 55 | 56 | it('should render empty component', () => { 57 | const component = renderer 58 | .create( 59 | 1} 62 | ListEmptyComponent={() => } 63 | renderItem={({ item }) => } 64 | />, 65 | ) 66 | .toJSON(); 67 | expect(component).toMatchSnapshot(); 68 | }); 69 | }); 70 | -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/MasonryList-test.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`MasonryList renders correctly 1`] = ` 4 | 19 | 20 | 27 | 34 | 35 | 36 | 37 | `; 38 | 39 | exports[`MasonryList should render a header 1`] = ` 40 | 68 | 69 |
70 | 77 | 84 | 88 | 91 | 92 | 96 | 99 | 100 | 104 | 107 | 108 | 109 | 110 | 111 | 112 | `; 113 | 114 | exports[`MasonryList should render a single column list 1`] = ` 115 | 142 | 143 | 150 | 157 | 161 | 164 | 165 | 169 | 172 | 173 | 177 | 180 | 181 | 182 | 183 | 184 | 185 | `; 186 | 187 | exports[`MasonryList should render empty component 1`] = ` 188 | 204 | 205 | 206 | 207 | 208 | `; 209 | --------------------------------------------------------------------------------