├── metadata ├── icon.png ├── artwork.png ├── speed.gif ├── sticky.gif ├── trigger.gif └── sticky-then-fade.gif ├── jest.config.js ├── design └── images │ ├── T5pmb1ABENbRwVuT1BkEBfQc.png │ ├── r61ccRUZIdXYJF5zfm4k3ROg.png │ ├── 4FdOdWjXgA0il69477uzcFZdUY.png │ ├── 6cl2aeMzNXVootTgD4PFJuZgpI.png │ ├── 9IBjmhcNzkZcIn6H3zohI17WNqA.png │ ├── 9oqaUJtARQFTLrWweDi0mJJLX4.png │ ├── MCDgF5iVVVqFEFek8dOxaVVgUrw.png │ ├── PpMDiEVcFZSvbE1JNtwujCS9po4.png │ ├── XTSIjp60Nex9hQArH4OygHWJE.png │ ├── YCDRgufJQ8t5WEY82uxSrf9ECnA.png │ ├── eeAwxstivmEqLl8vrid2BNu2m0.png │ └── ev9yV5HVh8jwqTO8lVK21VFII.png ├── code ├── canvas.tsx ├── StickyScroll.tsx ├── ScrollContext.tsx ├── index.tsx ├── EmptyConnector.tsx ├── Horizontal.tsx ├── SimpleExamples.tsx ├── iPhoneXRScrolling.tsx ├── ParallaxScroll.tsx └── ParallaxLayer.tsx ├── .gitignore ├── tsconfig.json ├── package.json ├── README.md └── yarn.lock /metadata/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/metadata/icon.png -------------------------------------------------------------------------------- /metadata/artwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/metadata/artwork.png -------------------------------------------------------------------------------- /metadata/speed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/metadata/speed.gif -------------------------------------------------------------------------------- /metadata/sticky.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/metadata/sticky.gif -------------------------------------------------------------------------------- /metadata/trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/metadata/trigger.gif -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: "ts-jest", 3 | testEnvironment: "jsdom" 4 | }; 5 | -------------------------------------------------------------------------------- /metadata/sticky-then-fade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/metadata/sticky-then-fade.gif -------------------------------------------------------------------------------- /design/images/T5pmb1ABENbRwVuT1BkEBfQc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/design/images/T5pmb1ABENbRwVuT1BkEBfQc.png -------------------------------------------------------------------------------- /design/images/r61ccRUZIdXYJF5zfm4k3ROg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/design/images/r61ccRUZIdXYJF5zfm4k3ROg.png -------------------------------------------------------------------------------- /design/images/4FdOdWjXgA0il69477uzcFZdUY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/design/images/4FdOdWjXgA0il69477uzcFZdUY.png -------------------------------------------------------------------------------- /design/images/6cl2aeMzNXVootTgD4PFJuZgpI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/design/images/6cl2aeMzNXVootTgD4PFJuZgpI.png -------------------------------------------------------------------------------- /design/images/9IBjmhcNzkZcIn6H3zohI17WNqA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/design/images/9IBjmhcNzkZcIn6H3zohI17WNqA.png -------------------------------------------------------------------------------- /design/images/9oqaUJtARQFTLrWweDi0mJJLX4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/design/images/9oqaUJtARQFTLrWweDi0mJJLX4.png -------------------------------------------------------------------------------- /design/images/MCDgF5iVVVqFEFek8dOxaVVgUrw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/design/images/MCDgF5iVVVqFEFek8dOxaVVgUrw.png -------------------------------------------------------------------------------- /design/images/PpMDiEVcFZSvbE1JNtwujCS9po4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/design/images/PpMDiEVcFZSvbE1JNtwujCS9po4.png -------------------------------------------------------------------------------- /design/images/XTSIjp60Nex9hQArH4OygHWJE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/design/images/XTSIjp60Nex9hQArH4OygHWJE.png -------------------------------------------------------------------------------- /design/images/YCDRgufJQ8t5WEY82uxSrf9ECnA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/design/images/YCDRgufJQ8t5WEY82uxSrf9ECnA.png -------------------------------------------------------------------------------- /design/images/eeAwxstivmEqLl8vrid2BNu2m0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/design/images/eeAwxstivmEqLl8vrid2BNu2m0.png -------------------------------------------------------------------------------- /design/images/ev9yV5HVh8jwqTO8lVK21VFII.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/parallax/HEAD/design/images/ev9yV5HVh8jwqTO8lVK21VFII.png -------------------------------------------------------------------------------- /code/canvas.tsx: -------------------------------------------------------------------------------- 1 | // WARNING: this file is auto generated, any changes will be lost 2 | import { createDesignComponent, CanvasStore } from "framer" 3 | const canvas = CanvasStore.shared(); // CANVAS_DATA; 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # General 2 | .DS_Store 3 | Icon\r 4 | 5 | # Framer 6 | .cache 7 | .backups 8 | .config.json 9 | yarn-error.log 10 | build 11 | node_modules 12 | .npmrc 13 | *.framerxproj 14 | .yarnrc 15 | .project.log 16 | 17 | dist 18 | .framer-lock -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es2015", 4 | "lib": ["es2015", "dom"], 5 | "module": "commonjs", 6 | "jsx": "react", 7 | "outDir": "build", 8 | "sourceMap": false, 9 | "declaration": false 10 | }, 11 | "exclude": ["node_modules", "build"] 12 | } 13 | -------------------------------------------------------------------------------- /code/StickyScroll.tsx: -------------------------------------------------------------------------------- 1 | import { Override } from "framer" 2 | 3 | import { useSticky, useScroll } from "." 4 | 5 | const titleHeight = 71 + 10 6 | 7 | export const About: Override = () => { 8 | const { scrollY } = useScroll() 9 | const y = useSticky(scrollY, [422, 696 - titleHeight]) 10 | return { y } 11 | } 12 | 13 | export const Portfolio: Override = () => { 14 | const { scrollY } = useScroll() 15 | const y = useSticky(scrollY, [696, 1136 - titleHeight]) 16 | return { y } 17 | } 18 | 19 | export const Contact: Override = () => { 20 | const { scrollY } = useScroll() 21 | const y = useSticky(scrollY, [1136, 1500 - titleHeight]) 22 | return { y } 23 | } 24 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "license": "MIT", 3 | "main": "dist/index.js", 4 | "devDependencies": { 5 | "@types/jest": "^23.3.12", 6 | "@types/react": "^16.8", 7 | "jest": "^23.6.0", 8 | "react": "^16.8", 9 | "react-dom": "^16.8", 10 | "ts-jest": "^23.10.5", 11 | "typescript": "^3.2.2" 12 | }, 13 | "peerDependencies": { 14 | "framer": "^0.10.5 || ^1", 15 | "react": "^16.8", 16 | "react-dom": "^16.8" 17 | }, 18 | "framer": { 19 | "displayName": "Parallax: Scroll Effects" 20 | }, 21 | "author": "Linton Ye", 22 | "dependencies": { 23 | "mathjs": "^5.2.0", 24 | "use-parallax": "^0.0.6" 25 | }, 26 | "name": "@framer/lintonye.parallax", 27 | "version": "1.52.0", 28 | "scripts": { 29 | "test": "jest" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /code/ScrollContext.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react" 2 | import { MotionValue, motionValue } from "framer-motion" 3 | 4 | const key = "lintonye.parallax.ScrollContext" 5 | 6 | // Put the context object in window. This is needed to make sure the overrides work 7 | // in the published package. 8 | // Reason? In the published package. The `ScrollContext` is loaded from a compiled file `dist/index.js`. 9 | // import { useScroll } from "@framer/lintonye.parallax/code" will create another instance 10 | // of `ScrollContext`. 11 | if (!window[key]) { 12 | window[key] = React.createContext({ 13 | scrollX: motionValue(0), 14 | scrollY: motionValue(0) 15 | }) 16 | } 17 | 18 | export type ScrollContextType = { 19 | scrollX: MotionValue 20 | scrollY: MotionValue 21 | } 22 | 23 | export const ScrollContext = window[key] 24 | -------------------------------------------------------------------------------- /code/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "use-parallax" 2 | import { useContext, useEffect } from "react" 3 | import { ScrollContext, ScrollContextType } from "./ScrollContext" 4 | import { MotionValue } from "framer-motion" 5 | 6 | export function useScroll() { 7 | return useContext(ScrollContext) 8 | } 9 | 10 | export function useTrackMotionValue( 11 | mv: MotionValue, 12 | action: (v: number) => void 13 | ) { 14 | useEffect(() => { 15 | const unsub = mv.onChange(action) 16 | return () => unsub() 17 | }, [mv]) 18 | } 19 | 20 | export function useTrackScrollX(action: (v: number) => void) { 21 | const { scrollX } = useScroll() 22 | useTrackMotionValue(scrollX, action) 23 | } 24 | 25 | export function useTrackScrollY(action: (v: number) => void) { 26 | const { scrollY } = useScroll() 27 | useTrackMotionValue(scrollY, action) 28 | } 29 | -------------------------------------------------------------------------------- /code/EmptyConnector.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react"; 2 | 3 | interface Props { 4 | title: string; 5 | description: string; 6 | } 7 | 8 | class EC extends React.Component { 9 | render() { 10 | const containerStyle: React.CSSProperties = { 11 | color: "#8855FF", 12 | background: "rgba(136, 85, 255, 0.1)", 13 | display: "flex", 14 | flexDirection: "column", 15 | height: "100%", 16 | textAlign: "center", 17 | justifyContent: "center", 18 | alignItems: "center", 19 | padding: 5 20 | }; 21 | const h1Style: React.CSSProperties = { 22 | fontSize: 43, 23 | margin: "15px 0 0px 0" 24 | }; 25 | const { title, description } = this.props; 26 | return ( 27 |
28 |

{title}

29 |

{description}

30 |
31 | ); 32 | } 33 | } 34 | 35 | export const EmptyConnector = EC; 36 | -------------------------------------------------------------------------------- /code/Horizontal.tsx: -------------------------------------------------------------------------------- 1 | import { Override, useAnimation, useTransform } from "framer" 2 | 3 | import { useSticky, useSpeed, useTrigger, useScroll } from "." 4 | 5 | export const Sticky100400: Override = props => { 6 | const { scrollX } = useScroll() 7 | const x = useSticky(scrollX, [100, 400]) 8 | return { x } 9 | } 10 | 11 | export const Opacity: Override = props => { 12 | const { scrollX } = useScroll() 13 | const opacity = useTransform(scrollX, [0, 1000], [1, 0]) 14 | return { opacity } 15 | } 16 | 17 | export const Bg: Override = props => { 18 | const { scrollX } = useScroll() 19 | const background = useTransform(scrollX, [0, 1000], ["#F00", "#000"]) 20 | return { background } 21 | } 22 | 23 | export const Speed0: Override = props => { 24 | const { scrollX } = useScroll() 25 | const x = useSpeed(scrollX, [0, 1000], 0) 26 | return { x } 27 | } 28 | 29 | export const Speed05: Override = props => { 30 | const { scrollX } = useScroll() 31 | const x = useSpeed(scrollX, [0, 1000], 0.5) 32 | return { x } 33 | } 34 | 35 | export const Speedminus1: Override = props => { 36 | const { scrollX } = useScroll() 37 | const x = useSpeed(scrollX, [0, 1000], -1) 38 | return { x } 39 | } 40 | 41 | export const Speedminus2: Override = props => { 42 | const { scrollX } = useScroll() 43 | const x = useSpeed(scrollX, [0, 1000], -2) 44 | return { x } 45 | } 46 | 47 | export const Speed1: Override = props => { 48 | const { scrollX } = useScroll() 49 | const x = useSpeed(scrollX, [0, 1000], 1) 50 | return { x } 51 | } 52 | 53 | export const TriggerAnimation: Override = props => { 54 | const animate = useAnimation() 55 | const { scrollX } = useScroll() 56 | useTrigger(scrollX, [600, 650], direction => { 57 | animate.start({ rotate: direction > 0 ? 0 : 90 }) 58 | }) 59 | return { 60 | animate 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /code/SimpleExamples.tsx: -------------------------------------------------------------------------------- 1 | import { Override, useAnimation, useTransform } from "framer" 2 | 3 | import { useSticky, useSpeed, useTrigger, useScroll } from "." 4 | 5 | export const Sticky100400: Override = props => { 6 | const { scrollY } = useScroll() 7 | const y = useSticky(scrollY, [100, 400]) 8 | return { y } 9 | } 10 | 11 | export const Opacity: Override = props => { 12 | const { scrollY } = useScroll() 13 | const opacity = useTransform(scrollY, [0, 1000], [1, 0]) 14 | return { opacity } 15 | } 16 | 17 | export const Bg: Override = props => { 18 | const { scrollY } = useScroll() 19 | const background = useTransform(scrollY, [0, 1000], ["#F00", "#000"]) 20 | return { background } 21 | } 22 | 23 | export const Speed0: Override = props => { 24 | const { scrollY } = useScroll() 25 | const y = useSpeed(scrollY, [0, 1000], 0) 26 | return { y } 27 | } 28 | 29 | export const Speed05: Override = props => { 30 | const { scrollY } = useScroll() 31 | const y = useSpeed(scrollY, [0, 1000], 0.5) 32 | return { y } 33 | } 34 | 35 | export const Speedminus1: Override = props => { 36 | const { scrollY } = useScroll() 37 | const y = useSpeed(scrollY, [0, 1000], -1) 38 | return { y } 39 | } 40 | 41 | export const Speedminus2: Override = props => { 42 | const { scrollY } = useScroll() 43 | const y = useSpeed(scrollY, [0, 1000], -2) 44 | return { y } 45 | } 46 | 47 | export const Speed1: Override = props => { 48 | const { scrollY } = useScroll() 49 | const y = useSpeed(scrollY, [0, 1000], 1) 50 | return { y } 51 | } 52 | 53 | export const TriggerAnimation: Override = props => { 54 | const animate = useAnimation() 55 | const { scrollY } = useScroll() 56 | useTrigger(scrollY, [600, 650], direction => { 57 | animate.start({ rotate: direction > 0 ? 0 : 90 }) 58 | }) 59 | return { 60 | animate 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /code/iPhoneXRScrolling.tsx: -------------------------------------------------------------------------------- 1 | import { useAnimation, Override, useTransform } from "framer" 2 | import { useSticky, useSpeed, useTrigger, useScroll } from "." 3 | 4 | export const Blocker: Override = () => { 5 | const { scrollY } = useScroll() 6 | const opacity = useTransform(scrollY, [0, 200], [0, 1]) 7 | return { opacity } 8 | } 9 | 10 | export const IPhoneXR: Override = () => { 11 | const { scrollY } = useScroll() 12 | const y = useSpeed(scrollY, [100, 350], 2, [500, 1050], -1) 13 | const scale = useTransform(scrollY, [300, 750], [1.5, 1]) 14 | return { y, scale } 15 | } 16 | 17 | export const PhoneNameSize: Override = () => { 18 | const { scrollY } = useScroll() 19 | const y = useSticky(scrollY, [500, 1050]) 20 | const animate = useAnimation() 21 | useTrigger(scrollY, [750, 800], direction => { 22 | animate.start({ opacity: direction < 0 ? 1 : 0 }) 23 | }) 24 | return { top: 850, animate, y, opacity: 0 } 25 | } 26 | 27 | export const FeatureContainer: Override = () => { 28 | return { 29 | top: 1180 30 | } 31 | } 32 | 33 | export const Feature1: Override = () => { 34 | const { scrollY } = useScroll() 35 | const opacity = useTransform(scrollY, [800, 850], [0, 1]) 36 | return { opacity } 37 | } 38 | 39 | export const Feature2: Override = () => { 40 | const { scrollY } = useScroll() 41 | const opacity = useTransform(scrollY, [850, 900], [0, 1]) 42 | return { opacity } 43 | } 44 | 45 | export const Feature3: Override = () => { 46 | const { scrollY } = useScroll() 47 | const opacity = useTransform(scrollY, [900, 950], [0, 1]) 48 | return { opacity } 49 | } 50 | 51 | export const Feature4: Override = () => { 52 | const { scrollY } = useScroll() 53 | const opacity = useTransform(scrollY, [950, 1000], [0, 1]) 54 | return { opacity } 55 | } 56 | 57 | export const Feature5: Override = () => { 58 | const { scrollY } = useScroll() 59 | const opacity = useTransform(scrollY, [1000, 1050], [0, 1]) 60 | return { opacity } 61 | } 62 | -------------------------------------------------------------------------------- /code/ParallaxScroll.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react" 2 | import { 3 | Scroll, 4 | useMotionValue, 5 | RenderTarget, 6 | addPropertyControls, 7 | ControlType 8 | } from "framer" 9 | import { ScrollContext } from "./ScrollContext" 10 | import { usePositiveOffset } from "use-parallax" 11 | import { EmptyConnector } from "./EmptyConnector" 12 | 13 | function Thumbnail() { 14 | return ( 15 | 27 | 28 | 29 | 30 | ) 31 | } 32 | 33 | function ParallaxScrollPreview({ children, ...props }) { 34 | const offsetX = useMotionValue(0) 35 | const offsetY = useMotionValue(0) 36 | const scrollX = usePositiveOffset(offsetX) 37 | const scrollY = usePositiveOffset(offsetY) 38 | return React.Children.count(children) > 0 ? ( 39 | 40 | 41 | {children} 42 | 43 | 44 | ) : ( 45 | 46 | ) 47 | } 48 | 49 | export function ParallaxScroll(props) { 50 | const Comp = 51 | RenderTarget.current() === RenderTarget.thumbnail 52 | ? Thumbnail 53 | : ParallaxScrollPreview 54 | return 55 | } 56 | 57 | // Use Scroll["defaultProps"] instead of Scroll.defaultProps 58 | // to prevent TypeScript error 59 | ParallaxScroll.defaultProps = Scroll["defaultProps"] 60 | addPropertyControls(ParallaxScroll, { 61 | ...Scroll["propertyControls"], 62 | children: { 63 | type: ControlType.ComponentInstance, 64 | title: "Content" 65 | } 66 | }) 67 | -------------------------------------------------------------------------------- /code/ParallaxLayer.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react" 2 | import { 3 | Frame, 4 | addPropertyControls, 5 | ControlType, 6 | useTransform, 7 | RenderTarget, 8 | Color 9 | } from "framer" 10 | import { useScroll } from "." 11 | import { EmptyConnector } from "./EmptyConnector" 12 | 13 | function ParallaxLayerPreview({ 14 | children, 15 | inputMin, 16 | inputMax, 17 | property, 18 | dependsOn, 19 | ...props 20 | }) { 21 | const { scrollX, scrollY } = useScroll() 22 | const getPropValue = suffix => { 23 | const v = props[`${property}${suffix}`] 24 | return property.toLowerCase().includes("color") 25 | ? Color.toHexString(Color(v)) 26 | : v 27 | } 28 | const outputMin = getPropValue(`_outputMin`) 29 | const outputMax = getPropValue(`_outputMax`) 30 | const value = useTransform( 31 | dependsOn === "y" ? scrollY : scrollX, 32 | [inputMin, inputMax], 33 | [outputMin, outputMax] 34 | ) 35 | const transformedProps = { [property]: value } 36 | return ( 37 | 38 | {children} 39 | 40 | ) 41 | } 42 | 43 | function ParallaxLayerCanvas(props) { 44 | return React.Children.count(props.children) > 0 ? ( 45 | 46 | ) : ( 47 | 48 | ) 49 | } 50 | 51 | function ParallaxLayerThumbnail(props) { 52 | return ( 53 | 65 | 66 | 67 | 68 | ) 69 | } 70 | 71 | export function ParallaxLayer(props) { 72 | const target = RenderTarget.current() 73 | const Comp = 74 | target === RenderTarget.preview 75 | ? ParallaxLayerPreview 76 | : target === RenderTarget.thumbnail 77 | ? ParallaxLayerThumbnail 78 | : ParallaxLayerCanvas 79 | return 80 | } 81 | 82 | const properties = { 83 | x: { 84 | x_outputMin: { 85 | type: ControlType.Number, 86 | title: "X Min" 87 | }, 88 | x_outputMax: { 89 | type: ControlType.Number, 90 | title: "X Max" 91 | } 92 | }, 93 | y: { 94 | y_outputMin: { 95 | type: ControlType.Number, 96 | title: "Y Min" 97 | }, 98 | y_outputMax: { 99 | type: ControlType.Number, 100 | title: "Y Max" 101 | } 102 | }, 103 | opacity: { 104 | opacity_outputMin: { 105 | type: ControlType.Number, 106 | min: 0, 107 | max: 1, 108 | step: 0.1, 109 | title: "Opacity Min" 110 | }, 111 | opacity_outputMax: { 112 | type: ControlType.Number, 113 | min: 0, 114 | max: 1, 115 | step: 0.1, 116 | title: "Opacity Max" 117 | } 118 | }, 119 | scale: { 120 | scale_outputMin: { 121 | type: ControlType.Number, 122 | title: "Scale Min", 123 | step: 0.1 124 | }, 125 | scale_outputMax: { 126 | type: ControlType.Number, 127 | title: "Scale Max", 128 | step: 0.1 129 | } 130 | }, 131 | rotate: { 132 | rotate_outputMin: { 133 | type: ControlType.Number, 134 | min: -360, 135 | max: 360, 136 | title: "Rotate Min" 137 | }, 138 | rotate_outputMax: { 139 | type: ControlType.Number, 140 | min: -360, 141 | max: 360, 142 | title: "Rotate Max" 143 | } 144 | }, 145 | backgroundColor: { 146 | backgroundColor_outputMin: { 147 | type: ControlType.Color, 148 | title: "BG Min" 149 | }, 150 | backgroundColor_outputMax: { 151 | type: ControlType.Color, 152 | title: "BG Max" 153 | } 154 | } 155 | } 156 | 157 | // 1. Add "hidden" functions 158 | // 2. Flatten properties into a shallow object 159 | function getOutputPropertyControls() { 160 | return Object.keys(properties).reduce((result, propName) => { 161 | const controlGroup = properties[propName] 162 | // Flatten 163 | const flattened = Object.keys(controlGroup).reduce( 164 | (preValue, outputProp) => { 165 | // add "hidden" function 166 | const control = { 167 | ...controlGroup[outputProp], 168 | hidden: props => props.property !== propName 169 | } 170 | return { ...preValue, [outputProp]: control } 171 | }, 172 | {} 173 | ) 174 | return { ...result, ...flattened } 175 | }, {}) 176 | } 177 | 178 | addPropertyControls(ParallaxLayer, { 179 | children: { 180 | type: ControlType.ComponentInstance, 181 | title: "Content" 182 | }, 183 | dependsOn: { 184 | type: ControlType.Enum, 185 | options: ["x", "y"], 186 | defaultValue: "y" 187 | }, 188 | property: { 189 | type: ControlType.Enum, 190 | options: Object.keys(properties), 191 | defaultValue: "rotate" 192 | }, 193 | inputMin: { 194 | type: ControlType.Number, 195 | title: "Scroll Min" 196 | // min: 0 197 | }, 198 | inputMax: { 199 | type: ControlType.Number, 200 | title: "Scroll Max" 201 | // min: 0 202 | }, 203 | ...getOutputPropertyControls() 204 | }) 205 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Overview 2 | 3 | ![sticky-headers](https://cdn.glitch.com/071e5391-90f7-476b-b96c-1f51f7106b0c%2Fsticky-scroll.gif?1548273386530) 4 | 5 | ![iphoneXR](https://cdn.glitch.com/071e5391-90f7-476b-b96c-1f51f7106b0c%2FiPhoneXR.gif?1548081080925) 6 | 7 | ![svgtracing](https://cdn.glitch.com/071e5391-90f7-476b-b96c-1f51f7106b0c%2Fsvg-tracing.gif?1548081080531) 8 | 9 | This module makes it easy to create advanced scroll interactions. There are two ways of using the module: 10 | 11 | - Non-coding: just drag and drop components, you'll be able to control the speed, opacity, rotation, scale etc. of a layer when scrolling. 12 | - Code overrides: a lot more control and flexibility (see below)! 13 | 14 | Check out some quick demos: 15 | 16 | - https://twitter.com/lintonye/status/1084845396164112385 17 | - https://twitter.com/lintonye/status/1042262028339933184 18 | 19 | Demo File: 20 | 21 | - https://www.dropbox.com/s/w9fr8ggsktuiyp8/parallax-demo.framerx?dl=0 22 | 23 | 24 | # Getting started 25 | 26 | - Non-coding: 27 | 1. Drop a `ParallaxScroll` and connect with the entire scroll content. The usage is exactly the same as the standard `Scroll` component. 28 | 2. Drop a few `ParallaxLayer` and connect them with respective content 29 | 3. Tweak the parameters of a `ParallaxLayer` in the properties panel 30 | 4. Profit! 31 | 32 | - Code overrides: 33 | 1. Drop a `ParallaxScroll` and connect with the entire scroll content. The usage is exactly the same as the standard `Scroll` component. 34 | 2. Add an override to any Frames in the scroll content (details below). Yes, it doesn't have to be `ParallaxLayer`! 35 | 4. Profit! 36 | 37 | # Code overrides 38 | 39 | ## A simple example: make an item sticky 40 | 41 | ![sticky](https://cdn.glitch.com/071e5391-90f7-476b-b96c-1f51f7106b0c%2Fsticky.gif?1547676401227) 42 | 43 | ```js 44 | import { useSticky, useScroll } from "@framer/lintonye.parallax/code" 45 | 46 | export function Sticky100400(): Override { 47 | // scrollY here is a MotionValue 48 | const { scrollY } = useScroll() 49 | // y is a MotionValue too 50 | const y = useSticky(scrollY, [100, 400]) 51 | // This is short for { y: y }, where the first "y" is the property key, the second "y" 52 | // is the variable name. 53 | return { y } 54 | }; 55 | ``` 56 | 57 | You may see an error in Framer's code editor. This is a known bug of Framer. The override still works. Or you can edit the file with an external editor. 58 | 59 | ![import-error](https://cdn.glitch.com/071e5391-90f7-476b-b96c-1f51f7106b0c%2Fimport-error.png?v=1570228728674) 60 | 61 | ## Make an item sticky and then fades away 62 | 63 | ![sticky and fade](https://cdn.glitch.com/071e5391-90f7-476b-b96c-1f51f7106b0c%2Fsticky-then-fade.gif?1547676313324) 64 | 65 | ```js 66 | import { useSticky, useScroll } from "@framer/lintonye.parallax/code" 67 | import { Override, useTransform } from "framer" 68 | 69 | export function Sticky100400(): Override { 70 | // scrollY here is a MotionValue 71 | const { scrollY } = useScroll() 72 | // y is a MotionValue too 73 | const y = useSticky(scrollY, [100, 400]) 74 | const opacity = useTransform(scrollY, [400, 500], [1, 0]) 75 | // short for { y: y, opacity: opacity } 76 | return { y, opacity } 77 | }; 78 | ``` 79 | 80 | ## Move an item move at a different speed 81 | 82 | ![speed](https://cdn.glitch.com/071e5391-90f7-476b-b96c-1f51f7106b0c%2Fspeed.gif?1547676135337) 83 | 84 | ```js 85 | import { useSpeed, useScroll } from "@framer/lintonye.parallax/code" 86 | 87 | export function Speed0(): Override { 88 | const { scrollY } = useScroll() 89 | const y = useSpeed(scrollY, [0, 1000], 0) 90 | return { y } 91 | }; 92 | 93 | export function Speed05(): Override { 94 | const { scrollY } = useScroll() 95 | const y = useSpeed(scrollY, [0, 1000], 0.5) 96 | return { y } 97 | }; 98 | 99 | export function SpeedMinus1(): Override { 100 | const { scrollY } = useScroll() 101 | const y = useSpeed(scrollY, [0, 1000], -1) 102 | return { y } 103 | }; 104 | ... 105 | ``` 106 | 107 | ## Trigger an animation when scrolling into a range 108 | 109 | ![trigger](https://cdn.glitch.com/071e5391-90f7-476b-b96c-1f51f7106b0c%2Ftrigger.gif?1547676228710) 110 | 111 | ```js 112 | import { useTrigger, useScroll } from "@framer/lintonye.parallax/code" 113 | import { useAnimation } from "framer" 114 | export const TriggerAnimation: Override = props => { 115 | const animate = useAnimation() 116 | const { scrollY } = useScroll() 117 | useTrigger(scrollY, [600, 650], direction => { 118 | animate.start({ rotate: direction > 0 ? 0 : 180 }) 119 | }) 120 | return { 121 | animate 122 | } 123 | } 124 | ``` 125 | 126 | ## `useSticky` and other hooks 127 | Check out the documentation [here](https://github.com/lintonye/useParallax). 128 | 129 | # Contact 130 | - Find me on Twitter [@lintonye](https://twitter.com/lintonye)! 131 | - [Share what you've built with me](https://twitter.com/intent/tweet?url=https%3A%2F%2Fstore.framer.com%2Fpackage%2Flintonye%2Fparallax&text=Just%20created%20this%20with%20the%20Parallax%20package%20by%20@lintonye%20on%20@Framer%20Store%20%5BInsert%20your%20video%20or%20GIF%5D)! I'd be so thrilled! 😍 132 | 133 | # Change Log 134 | - 12/10/2019 (v1.52) 135 | - Fix BgColor of ParallaxLayer 136 | - Allow negative scroll range and values 137 | - Allow decimal for scale values 138 | - 10/08/2019 139 | - Add new hooks: `useTrackScrollX`, `useTrackScrollY` 140 | - 10/04/2019 141 | - Update to support the latest Framer library (1.1.3)! Yay! 142 | - You can now control the speed, rotation, scale and opacity of a layer WITHOUT CODE! 143 | - React Hook based API for more advanced control 144 | - 02/21/2019 145 | - Hide internal components 146 | - 02/03/2019 147 | - Add support for using object as op, instead of just an array 148 | - Fixed: onMove op function is always called when a data item is updated inside the function body 149 | - Now we can return `true` to ask the next onMove op function to run. If the return value is falsy (e.g. no return value is specified), the function will be only called once per scroll direction. 150 | - 01/29/2019 151 | - Fix id conflict issue. Now, as long as the ids are unique within a single `scrollOverrides` call, things should be fine. 152 | - 01/26/2019 153 | - Add support for horizontal scroll. Note: you'll get an error when the scroll direction is "both". 154 | - Add `speed`, `sticky` and `snap` functions, which work on both horizontal and vertical directions. 155 | - 01/23/2019 156 | - Fix issue in `speed` and `sticky` that causes layer to jump locations when crossing ranges 157 | - 01/17/2019 158 | - Add `snapY` function 159 | - 01/16/2019 160 | - Add support for advanced scroll interactions 161 | - 01/10/2019 162 | - Add override functions for sticky scrolls (Doc pending) 163 | - 10/09/2018 164 | - Support controlling positions with math expressions 165 | - 10/08/2018 166 | - Better performance - (dev note: no more cloning of children) 167 | - 10/07/2018 168 | - Better scrolling performance 169 | - We can now independently configure speed X and Y of a layer. 170 | - Pin in scroll direction 171 | - 10/02/2018 - Support horizontal scroll 172 | - 09/18/2018 - Use Scroll component instead of the hacky div 173 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0-beta.35": 6 | version "7.0.0" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" 8 | dependencies: 9 | "@babel/highlight" "^7.0.0" 10 | 11 | "@babel/highlight@^7.0.0": 12 | version "7.0.0" 13 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" 14 | dependencies: 15 | chalk "^2.0.0" 16 | esutils "^2.0.2" 17 | js-tokens "^4.0.0" 18 | 19 | "@emotion/is-prop-valid@^0.8.2": 20 | version "0.8.3" 21 | resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.3.tgz#cbe62ddbea08aa022cdf72da3971570a33190d29" 22 | dependencies: 23 | "@emotion/memoize" "0.7.3" 24 | 25 | "@emotion/memoize@0.7.3": 26 | version "0.7.3" 27 | resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.3.tgz#5b6b1c11d6a6dddf1f2fc996f74cf3b219644d78" 28 | 29 | "@popmotion/easing@^1.0.1", "@popmotion/easing@^1.0.2": 30 | version "1.0.2" 31 | resolved "https://registry.yarnpkg.com/@popmotion/easing/-/easing-1.0.2.tgz#17d925c45b4bf44189e5a38038d149df42d8c0b4" 32 | 33 | "@popmotion/popcorn@^0.4.2": 34 | version "0.4.2" 35 | resolved "https://registry.yarnpkg.com/@popmotion/popcorn/-/popcorn-0.4.2.tgz#ff9f5334e8e808ed02237b7b9c928619d1eb68ff" 36 | dependencies: 37 | "@popmotion/easing" "^1.0.1" 38 | framesync "^4.0.1" 39 | hey-listen "^1.0.8" 40 | style-value-types "^3.1.6" 41 | 42 | "@types/jest@^23.3.12": 43 | version "23.3.12" 44 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-23.3.12.tgz#7e0ced251fa94c3bc2d1023d4b84b2992fa06376" 45 | 46 | "@types/prop-types@*": 47 | version "15.7.3" 48 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" 49 | 50 | "@types/react@^16.8": 51 | version "16.9.5" 52 | resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.5.tgz#079dabd918b19b32118c25fd00a786bb6d0d5e51" 53 | dependencies: 54 | "@types/prop-types" "*" 55 | csstype "^2.2.0" 56 | 57 | "@types/react@^16.9.2": 58 | version "16.9.4" 59 | resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.4.tgz#de8cf5e5e2838659fb78fa93181078469eeb19fc" 60 | dependencies: 61 | "@types/prop-types" "*" 62 | csstype "^2.2.0" 63 | 64 | abab@^2.0.0: 65 | version "2.0.0" 66 | resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f" 67 | 68 | abbrev@1: 69 | version "1.1.1" 70 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 71 | 72 | acorn-globals@^4.1.0: 73 | version "4.3.0" 74 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.0.tgz#e3b6f8da3c1552a95ae627571f7dd6923bb54103" 75 | dependencies: 76 | acorn "^6.0.1" 77 | acorn-walk "^6.0.1" 78 | 79 | acorn-walk@^6.0.1: 80 | version "6.1.1" 81 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.1.tgz#d363b66f5fac5f018ff9c3a1e7b6f8e310cc3913" 82 | 83 | acorn@^5.5.3: 84 | version "5.7.3" 85 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" 86 | 87 | acorn@^6.0.1: 88 | version "6.0.5" 89 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.0.5.tgz#81730c0815f3f3b34d8efa95cb7430965f4d887a" 90 | 91 | ajv@^6.5.5: 92 | version "6.6.2" 93 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.6.2.tgz#caceccf474bf3fc3ce3b147443711a24063cc30d" 94 | dependencies: 95 | fast-deep-equal "^2.0.1" 96 | fast-json-stable-stringify "^2.0.0" 97 | json-schema-traverse "^0.4.1" 98 | uri-js "^4.2.2" 99 | 100 | ansi-escapes@^3.0.0: 101 | version "3.1.0" 102 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 103 | 104 | ansi-regex@^2.0.0: 105 | version "2.1.1" 106 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 107 | 108 | ansi-regex@^3.0.0: 109 | version "3.0.0" 110 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 111 | 112 | ansi-styles@^2.2.1: 113 | version "2.2.1" 114 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 115 | 116 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 117 | version "3.2.1" 118 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 119 | dependencies: 120 | color-convert "^1.9.0" 121 | 122 | anymatch@^2.0.0: 123 | version "2.0.0" 124 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 125 | dependencies: 126 | micromatch "^3.1.4" 127 | normalize-path "^2.1.1" 128 | 129 | append-transform@^0.4.0: 130 | version "0.4.0" 131 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 132 | dependencies: 133 | default-require-extensions "^1.0.0" 134 | 135 | aproba@^1.0.3: 136 | version "1.2.0" 137 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 138 | 139 | are-we-there-yet@~1.1.2: 140 | version "1.1.5" 141 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 142 | dependencies: 143 | delegates "^1.0.0" 144 | readable-stream "^2.0.6" 145 | 146 | argparse@^1.0.7: 147 | version "1.0.10" 148 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 149 | dependencies: 150 | sprintf-js "~1.0.2" 151 | 152 | arr-diff@^2.0.0: 153 | version "2.0.0" 154 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 155 | dependencies: 156 | arr-flatten "^1.0.1" 157 | 158 | arr-diff@^4.0.0: 159 | version "4.0.0" 160 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 161 | 162 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 163 | version "1.1.0" 164 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 165 | 166 | arr-union@^3.1.0: 167 | version "3.1.0" 168 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 169 | 170 | array-equal@^1.0.0: 171 | version "1.0.0" 172 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 173 | 174 | array-unique@^0.2.1: 175 | version "0.2.1" 176 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 177 | 178 | array-unique@^0.3.2: 179 | version "0.3.2" 180 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 181 | 182 | arrify@^1.0.1: 183 | version "1.0.1" 184 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 185 | 186 | asn1@~0.2.3: 187 | version "0.2.4" 188 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 189 | dependencies: 190 | safer-buffer "~2.1.0" 191 | 192 | assert-plus@1.0.0, assert-plus@^1.0.0: 193 | version "1.0.0" 194 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 195 | 196 | assign-symbols@^1.0.0: 197 | version "1.0.0" 198 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 199 | 200 | astral-regex@^1.0.0: 201 | version "1.0.0" 202 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 203 | 204 | async-limiter@~1.0.0: 205 | version "1.0.0" 206 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 207 | 208 | async@^2.1.4, async@^2.5.0: 209 | version "2.6.1" 210 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" 211 | dependencies: 212 | lodash "^4.17.10" 213 | 214 | asynckit@^0.4.0: 215 | version "0.4.0" 216 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 217 | 218 | atob@^2.1.1: 219 | version "2.1.2" 220 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 221 | 222 | aws-sign2@~0.7.0: 223 | version "0.7.0" 224 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 225 | 226 | aws4@^1.8.0: 227 | version "1.8.0" 228 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" 229 | 230 | babel-code-frame@^6.26.0: 231 | version "6.26.0" 232 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 233 | dependencies: 234 | chalk "^1.1.3" 235 | esutils "^2.0.2" 236 | js-tokens "^3.0.2" 237 | 238 | babel-core@^6.0.0, babel-core@^6.26.0: 239 | version "6.26.3" 240 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 241 | dependencies: 242 | babel-code-frame "^6.26.0" 243 | babel-generator "^6.26.0" 244 | babel-helpers "^6.24.1" 245 | babel-messages "^6.23.0" 246 | babel-register "^6.26.0" 247 | babel-runtime "^6.26.0" 248 | babel-template "^6.26.0" 249 | babel-traverse "^6.26.0" 250 | babel-types "^6.26.0" 251 | babylon "^6.18.0" 252 | convert-source-map "^1.5.1" 253 | debug "^2.6.9" 254 | json5 "^0.5.1" 255 | lodash "^4.17.4" 256 | minimatch "^3.0.4" 257 | path-is-absolute "^1.0.1" 258 | private "^0.1.8" 259 | slash "^1.0.0" 260 | source-map "^0.5.7" 261 | 262 | babel-generator@^6.18.0, babel-generator@^6.26.0: 263 | version "6.26.1" 264 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 265 | dependencies: 266 | babel-messages "^6.23.0" 267 | babel-runtime "^6.26.0" 268 | babel-types "^6.26.0" 269 | detect-indent "^4.0.0" 270 | jsesc "^1.3.0" 271 | lodash "^4.17.4" 272 | source-map "^0.5.7" 273 | trim-right "^1.0.1" 274 | 275 | babel-helpers@^6.24.1: 276 | version "6.24.1" 277 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 278 | dependencies: 279 | babel-runtime "^6.22.0" 280 | babel-template "^6.24.1" 281 | 282 | babel-jest@^23.6.0: 283 | version "23.6.0" 284 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-23.6.0.tgz#a644232366557a2240a0c083da6b25786185a2f1" 285 | dependencies: 286 | babel-plugin-istanbul "^4.1.6" 287 | babel-preset-jest "^23.2.0" 288 | 289 | babel-messages@^6.23.0: 290 | version "6.23.0" 291 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 292 | dependencies: 293 | babel-runtime "^6.22.0" 294 | 295 | babel-plugin-istanbul@^4.1.6: 296 | version "4.1.6" 297 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" 298 | dependencies: 299 | babel-plugin-syntax-object-rest-spread "^6.13.0" 300 | find-up "^2.1.0" 301 | istanbul-lib-instrument "^1.10.1" 302 | test-exclude "^4.2.1" 303 | 304 | babel-plugin-jest-hoist@^23.2.0: 305 | version "23.2.0" 306 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.2.0.tgz#e61fae05a1ca8801aadee57a6d66b8cefaf44167" 307 | 308 | babel-plugin-syntax-object-rest-spread@^6.13.0: 309 | version "6.13.0" 310 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 311 | 312 | babel-preset-jest@^23.2.0: 313 | version "23.2.0" 314 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-23.2.0.tgz#8ec7a03a138f001a1a8fb1e8113652bf1a55da46" 315 | dependencies: 316 | babel-plugin-jest-hoist "^23.2.0" 317 | babel-plugin-syntax-object-rest-spread "^6.13.0" 318 | 319 | babel-register@^6.26.0: 320 | version "6.26.0" 321 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 322 | dependencies: 323 | babel-core "^6.26.0" 324 | babel-runtime "^6.26.0" 325 | core-js "^2.5.0" 326 | home-or-tmp "^2.0.0" 327 | lodash "^4.17.4" 328 | mkdirp "^0.5.1" 329 | source-map-support "^0.4.15" 330 | 331 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 332 | version "6.26.0" 333 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 334 | dependencies: 335 | core-js "^2.4.0" 336 | regenerator-runtime "^0.11.0" 337 | 338 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 339 | version "6.26.0" 340 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 341 | dependencies: 342 | babel-runtime "^6.26.0" 343 | babel-traverse "^6.26.0" 344 | babel-types "^6.26.0" 345 | babylon "^6.18.0" 346 | lodash "^4.17.4" 347 | 348 | babel-traverse@^6.0.0, babel-traverse@^6.18.0, babel-traverse@^6.26.0: 349 | version "6.26.0" 350 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 351 | dependencies: 352 | babel-code-frame "^6.26.0" 353 | babel-messages "^6.23.0" 354 | babel-runtime "^6.26.0" 355 | babel-types "^6.26.0" 356 | babylon "^6.18.0" 357 | debug "^2.6.8" 358 | globals "^9.18.0" 359 | invariant "^2.2.2" 360 | lodash "^4.17.4" 361 | 362 | babel-types@^6.0.0, babel-types@^6.18.0, babel-types@^6.26.0: 363 | version "6.26.0" 364 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 365 | dependencies: 366 | babel-runtime "^6.26.0" 367 | esutils "^2.0.2" 368 | lodash "^4.17.4" 369 | to-fast-properties "^1.0.3" 370 | 371 | babylon@^6.18.0: 372 | version "6.18.0" 373 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 374 | 375 | balanced-match@^1.0.0: 376 | version "1.0.0" 377 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 378 | 379 | base@^0.11.1: 380 | version "0.11.2" 381 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 382 | dependencies: 383 | cache-base "^1.0.1" 384 | class-utils "^0.3.5" 385 | component-emitter "^1.2.1" 386 | define-property "^1.0.0" 387 | isobject "^3.0.1" 388 | mixin-deep "^1.2.0" 389 | pascalcase "^0.1.1" 390 | 391 | bcrypt-pbkdf@^1.0.0: 392 | version "1.0.2" 393 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 394 | dependencies: 395 | tweetnacl "^0.14.3" 396 | 397 | brace-expansion@^1.1.7: 398 | version "1.1.11" 399 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 400 | dependencies: 401 | balanced-match "^1.0.0" 402 | concat-map "0.0.1" 403 | 404 | braces@^1.8.2: 405 | version "1.8.5" 406 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 407 | dependencies: 408 | expand-range "^1.8.1" 409 | preserve "^0.2.0" 410 | repeat-element "^1.1.2" 411 | 412 | braces@^2.3.1: 413 | version "2.3.2" 414 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 415 | dependencies: 416 | arr-flatten "^1.1.0" 417 | array-unique "^0.3.2" 418 | extend-shallow "^2.0.1" 419 | fill-range "^4.0.0" 420 | isobject "^3.0.1" 421 | repeat-element "^1.1.2" 422 | snapdragon "^0.8.1" 423 | snapdragon-node "^2.0.1" 424 | split-string "^3.0.2" 425 | to-regex "^3.0.1" 426 | 427 | browser-process-hrtime@^0.1.2: 428 | version "0.1.3" 429 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" 430 | 431 | browser-resolve@^1.11.3: 432 | version "1.11.3" 433 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" 434 | dependencies: 435 | resolve "1.1.7" 436 | 437 | bs-logger@0.x: 438 | version "0.2.6" 439 | resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" 440 | dependencies: 441 | fast-json-stable-stringify "2.x" 442 | 443 | bser@^2.0.0: 444 | version "2.0.0" 445 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 446 | dependencies: 447 | node-int64 "^0.4.0" 448 | 449 | buffer-from@1.x, buffer-from@^1.0.0: 450 | version "1.1.1" 451 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 452 | 453 | builtin-modules@^1.0.0: 454 | version "1.1.1" 455 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 456 | 457 | cache-base@^1.0.1: 458 | version "1.0.1" 459 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 460 | dependencies: 461 | collection-visit "^1.0.0" 462 | component-emitter "^1.2.1" 463 | get-value "^2.0.6" 464 | has-value "^1.0.0" 465 | isobject "^3.0.1" 466 | set-value "^2.0.0" 467 | to-object-path "^0.3.0" 468 | union-value "^1.0.0" 469 | unset-value "^1.0.0" 470 | 471 | callsites@^2.0.0: 472 | version "2.0.0" 473 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 474 | 475 | camelcase@^4.1.0: 476 | version "4.1.0" 477 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 478 | 479 | capture-exit@^1.2.0: 480 | version "1.2.0" 481 | resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f" 482 | dependencies: 483 | rsvp "^3.3.3" 484 | 485 | caseless@~0.12.0: 486 | version "0.12.0" 487 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 488 | 489 | chalk@^1.1.3: 490 | version "1.1.3" 491 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 492 | dependencies: 493 | ansi-styles "^2.2.1" 494 | escape-string-regexp "^1.0.2" 495 | has-ansi "^2.0.0" 496 | strip-ansi "^3.0.0" 497 | supports-color "^2.0.0" 498 | 499 | chalk@^2.0.0, chalk@^2.0.1: 500 | version "2.4.2" 501 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 502 | dependencies: 503 | ansi-styles "^3.2.1" 504 | escape-string-regexp "^1.0.5" 505 | supports-color "^5.3.0" 506 | 507 | chownr@^1.1.1: 508 | version "1.1.1" 509 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" 510 | 511 | ci-info@^1.5.0: 512 | version "1.6.0" 513 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497" 514 | 515 | class-utils@^0.3.5: 516 | version "0.3.6" 517 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 518 | dependencies: 519 | arr-union "^3.1.0" 520 | define-property "^0.2.5" 521 | isobject "^3.0.0" 522 | static-extend "^0.1.1" 523 | 524 | cliui@^4.0.0: 525 | version "4.1.0" 526 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 527 | dependencies: 528 | string-width "^2.1.1" 529 | strip-ansi "^4.0.0" 530 | wrap-ansi "^2.0.0" 531 | 532 | co@^4.6.0: 533 | version "4.6.0" 534 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 535 | 536 | code-point-at@^1.0.0: 537 | version "1.1.0" 538 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 539 | 540 | collection-visit@^1.0.0: 541 | version "1.0.0" 542 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 543 | dependencies: 544 | map-visit "^1.0.0" 545 | object-visit "^1.0.0" 546 | 547 | color-convert@^1.9.0: 548 | version "1.9.3" 549 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 550 | dependencies: 551 | color-name "1.1.3" 552 | 553 | color-name@1.1.3: 554 | version "1.1.3" 555 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 556 | 557 | combined-stream@^1.0.6, combined-stream@~1.0.6: 558 | version "1.0.7" 559 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828" 560 | dependencies: 561 | delayed-stream "~1.0.0" 562 | 563 | commander@~2.17.1: 564 | version "2.17.1" 565 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" 566 | 567 | complex.js@2.0.11: 568 | version "2.0.11" 569 | resolved "https://registry.yarnpkg.com/complex.js/-/complex.js-2.0.11.tgz#09a873fbf15ffd8c18c9c2201ccef425c32b8bf1" 570 | 571 | component-emitter@^1.2.1: 572 | version "1.2.1" 573 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 574 | 575 | concat-map@0.0.1: 576 | version "0.0.1" 577 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 578 | 579 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 580 | version "1.1.0" 581 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 582 | 583 | convert-source-map@^1.4.0, convert-source-map@^1.5.1: 584 | version "1.6.0" 585 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" 586 | dependencies: 587 | safe-buffer "~5.1.1" 588 | 589 | copy-descriptor@^0.1.0: 590 | version "0.1.1" 591 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 592 | 593 | core-js@^2.4.0, core-js@^2.5.0: 594 | version "2.6.2" 595 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.2.tgz#267988d7268323b349e20b4588211655f0e83944" 596 | 597 | core-util-is@1.0.2, core-util-is@~1.0.0: 598 | version "1.0.2" 599 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 600 | 601 | cross-spawn@^5.0.1: 602 | version "5.1.0" 603 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 604 | dependencies: 605 | lru-cache "^4.0.1" 606 | shebang-command "^1.2.0" 607 | which "^1.2.9" 608 | 609 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 610 | version "0.3.4" 611 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.4.tgz#8cd52e8a3acfd68d3aed38ee0a640177d2f9d797" 612 | 613 | cssstyle@^1.0.0: 614 | version "1.1.1" 615 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.1.1.tgz#18b038a9c44d65f7a8e428a653b9f6fe42faf5fb" 616 | dependencies: 617 | cssom "0.3.x" 618 | 619 | csstype@^2.2.0: 620 | version "2.5.5" 621 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.5.5.tgz#4125484a3d42189a863943f23b9e4b80fedfa106" 622 | 623 | dashdash@^1.12.0: 624 | version "1.14.1" 625 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 626 | dependencies: 627 | assert-plus "^1.0.0" 628 | 629 | data-urls@^1.0.0: 630 | version "1.1.0" 631 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" 632 | dependencies: 633 | abab "^2.0.0" 634 | whatwg-mimetype "^2.2.0" 635 | whatwg-url "^7.0.0" 636 | 637 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 638 | version "2.6.9" 639 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 640 | dependencies: 641 | ms "2.0.0" 642 | 643 | debug@^3.1.0: 644 | version "3.2.6" 645 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 646 | dependencies: 647 | ms "^2.1.1" 648 | 649 | decamelize@^1.1.1: 650 | version "1.2.0" 651 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 652 | 653 | decimal.js@10.0.1: 654 | version "10.0.1" 655 | resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.0.1.tgz#d04b16b277f0f9af09671cee225c4882e8857c58" 656 | 657 | decode-uri-component@^0.2.0: 658 | version "0.2.0" 659 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 660 | 661 | deep-extend@^0.6.0: 662 | version "0.6.0" 663 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 664 | 665 | deep-is@~0.1.3: 666 | version "0.1.3" 667 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 668 | 669 | default-require-extensions@^1.0.0: 670 | version "1.0.0" 671 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 672 | dependencies: 673 | strip-bom "^2.0.0" 674 | 675 | define-properties@^1.1.2: 676 | version "1.1.3" 677 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 678 | dependencies: 679 | object-keys "^1.0.12" 680 | 681 | define-property@^0.2.5: 682 | version "0.2.5" 683 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 684 | dependencies: 685 | is-descriptor "^0.1.0" 686 | 687 | define-property@^1.0.0: 688 | version "1.0.0" 689 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 690 | dependencies: 691 | is-descriptor "^1.0.0" 692 | 693 | define-property@^2.0.2: 694 | version "2.0.2" 695 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 696 | dependencies: 697 | is-descriptor "^1.0.2" 698 | isobject "^3.0.1" 699 | 700 | delayed-stream@~1.0.0: 701 | version "1.0.0" 702 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 703 | 704 | delegates@^1.0.0: 705 | version "1.0.0" 706 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 707 | 708 | detect-indent@^4.0.0: 709 | version "4.0.0" 710 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 711 | dependencies: 712 | repeating "^2.0.0" 713 | 714 | detect-libc@^1.0.2: 715 | version "1.0.3" 716 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 717 | 718 | detect-newline@^2.1.0: 719 | version "2.1.0" 720 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 721 | 722 | diff@^3.2.0: 723 | version "3.5.0" 724 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 725 | 726 | domexception@^1.0.1: 727 | version "1.0.1" 728 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" 729 | dependencies: 730 | webidl-conversions "^4.0.2" 731 | 732 | ecc-jsbn@~0.1.1: 733 | version "0.1.2" 734 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 735 | dependencies: 736 | jsbn "~0.1.0" 737 | safer-buffer "^2.1.0" 738 | 739 | error-ex@^1.2.0: 740 | version "1.3.2" 741 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 742 | dependencies: 743 | is-arrayish "^0.2.1" 744 | 745 | es-abstract@^1.5.1: 746 | version "1.13.0" 747 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" 748 | dependencies: 749 | es-to-primitive "^1.2.0" 750 | function-bind "^1.1.1" 751 | has "^1.0.3" 752 | is-callable "^1.1.4" 753 | is-regex "^1.0.4" 754 | object-keys "^1.0.12" 755 | 756 | es-to-primitive@^1.2.0: 757 | version "1.2.0" 758 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" 759 | dependencies: 760 | is-callable "^1.1.4" 761 | is-date-object "^1.0.1" 762 | is-symbol "^1.0.2" 763 | 764 | escape-latex@1.1.1: 765 | version "1.1.1" 766 | resolved "https://registry.yarnpkg.com/escape-latex/-/escape-latex-1.1.1.tgz#657d8632af8849a5db8766778d4a43da9dec3376" 767 | 768 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 769 | version "1.0.5" 770 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 771 | 772 | escodegen@^1.9.1: 773 | version "1.11.0" 774 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.0.tgz#b27a9389481d5bfd5bec76f7bb1eb3f8f4556589" 775 | dependencies: 776 | esprima "^3.1.3" 777 | estraverse "^4.2.0" 778 | esutils "^2.0.2" 779 | optionator "^0.8.1" 780 | optionalDependencies: 781 | source-map "~0.6.1" 782 | 783 | esprima@^3.1.3: 784 | version "3.1.3" 785 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 786 | 787 | esprima@^4.0.0: 788 | version "4.0.1" 789 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 790 | 791 | estraverse@^4.2.0: 792 | version "4.2.0" 793 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 794 | 795 | esutils@^2.0.2: 796 | version "2.0.2" 797 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 798 | 799 | exec-sh@^0.2.0: 800 | version "0.2.2" 801 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.2.tgz#2a5e7ffcbd7d0ba2755bdecb16e5a427dfbdec36" 802 | dependencies: 803 | merge "^1.2.0" 804 | 805 | execa@^0.7.0: 806 | version "0.7.0" 807 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 808 | dependencies: 809 | cross-spawn "^5.0.1" 810 | get-stream "^3.0.0" 811 | is-stream "^1.1.0" 812 | npm-run-path "^2.0.0" 813 | p-finally "^1.0.0" 814 | signal-exit "^3.0.0" 815 | strip-eof "^1.0.0" 816 | 817 | exit@^0.1.2: 818 | version "0.1.2" 819 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 820 | 821 | expand-brackets@^0.1.4: 822 | version "0.1.5" 823 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 824 | dependencies: 825 | is-posix-bracket "^0.1.0" 826 | 827 | expand-brackets@^2.1.4: 828 | version "2.1.4" 829 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 830 | dependencies: 831 | debug "^2.3.3" 832 | define-property "^0.2.5" 833 | extend-shallow "^2.0.1" 834 | posix-character-classes "^0.1.0" 835 | regex-not "^1.0.0" 836 | snapdragon "^0.8.1" 837 | to-regex "^3.0.1" 838 | 839 | expand-range@^1.8.1: 840 | version "1.8.2" 841 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 842 | dependencies: 843 | fill-range "^2.1.0" 844 | 845 | expect@^23.6.0: 846 | version "23.6.0" 847 | resolved "https://registry.yarnpkg.com/expect/-/expect-23.6.0.tgz#1e0c8d3ba9a581c87bd71fb9bc8862d443425f98" 848 | dependencies: 849 | ansi-styles "^3.2.0" 850 | jest-diff "^23.6.0" 851 | jest-get-type "^22.1.0" 852 | jest-matcher-utils "^23.6.0" 853 | jest-message-util "^23.4.0" 854 | jest-regex-util "^23.3.0" 855 | 856 | extend-shallow@^2.0.1: 857 | version "2.0.1" 858 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 859 | dependencies: 860 | is-extendable "^0.1.0" 861 | 862 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 863 | version "3.0.2" 864 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 865 | dependencies: 866 | assign-symbols "^1.0.0" 867 | is-extendable "^1.0.1" 868 | 869 | extend@~3.0.2: 870 | version "3.0.2" 871 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 872 | 873 | extglob@^0.3.1: 874 | version "0.3.2" 875 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 876 | dependencies: 877 | is-extglob "^1.0.0" 878 | 879 | extglob@^2.0.4: 880 | version "2.0.4" 881 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 882 | dependencies: 883 | array-unique "^0.3.2" 884 | define-property "^1.0.0" 885 | expand-brackets "^2.1.4" 886 | extend-shallow "^2.0.1" 887 | fragment-cache "^0.2.1" 888 | regex-not "^1.0.0" 889 | snapdragon "^0.8.1" 890 | to-regex "^3.0.1" 891 | 892 | extsprintf@1.3.0: 893 | version "1.3.0" 894 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 895 | 896 | extsprintf@^1.2.0: 897 | version "1.4.0" 898 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 899 | 900 | fast-deep-equal@^2.0.1: 901 | version "2.0.1" 902 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 903 | 904 | fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: 905 | version "2.0.0" 906 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 907 | 908 | fast-levenshtein@~2.0.4: 909 | version "2.0.6" 910 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 911 | 912 | fb-watchman@^2.0.0: 913 | version "2.0.0" 914 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 915 | dependencies: 916 | bser "^2.0.0" 917 | 918 | filename-regex@^2.0.0: 919 | version "2.0.1" 920 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 921 | 922 | fileset@^2.0.2: 923 | version "2.0.3" 924 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 925 | dependencies: 926 | glob "^7.0.3" 927 | minimatch "^3.0.3" 928 | 929 | fill-range@^2.1.0: 930 | version "2.2.4" 931 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 932 | dependencies: 933 | is-number "^2.1.0" 934 | isobject "^2.0.0" 935 | randomatic "^3.0.0" 936 | repeat-element "^1.1.2" 937 | repeat-string "^1.5.2" 938 | 939 | fill-range@^4.0.0: 940 | version "4.0.0" 941 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 942 | dependencies: 943 | extend-shallow "^2.0.1" 944 | is-number "^3.0.0" 945 | repeat-string "^1.6.1" 946 | to-regex-range "^2.1.0" 947 | 948 | find-up@^1.0.0: 949 | version "1.1.2" 950 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 951 | dependencies: 952 | path-exists "^2.0.0" 953 | pinkie-promise "^2.0.0" 954 | 955 | find-up@^2.1.0: 956 | version "2.1.0" 957 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 958 | dependencies: 959 | locate-path "^2.0.0" 960 | 961 | for-in@^1.0.1, for-in@^1.0.2: 962 | version "1.0.2" 963 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 964 | 965 | for-own@^0.1.4: 966 | version "0.1.5" 967 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 968 | dependencies: 969 | for-in "^1.0.1" 970 | 971 | forever-agent@~0.6.1: 972 | version "0.6.1" 973 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 974 | 975 | form-data@~2.3.2: 976 | version "2.3.3" 977 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" 978 | dependencies: 979 | asynckit "^0.4.0" 980 | combined-stream "^1.0.6" 981 | mime-types "^2.1.12" 982 | 983 | fraction.js@4.0.9: 984 | version "4.0.9" 985 | resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.0.9.tgz#ef7aa1ad47ef600021ad7fa7991dfd56c3b5f7c8" 986 | 987 | fragment-cache@^0.2.1: 988 | version "0.2.1" 989 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 990 | dependencies: 991 | map-cache "^0.2.2" 992 | 993 | framer-motion@^1.6.2: 994 | version "1.6.8" 995 | resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-1.6.8.tgz#27cc80193a36476c6063dbfc2470cc4ff9fb00d6" 996 | dependencies: 997 | "@popmotion/easing" "^1.0.2" 998 | "@popmotion/popcorn" "^0.4.2" 999 | framesync "^4.0.4" 1000 | hey-listen "^1.0.8" 1001 | popmotion "9.0.0-beta-8" 1002 | style-value-types "^3.1.6" 1003 | stylefire "^6.0.10" 1004 | tslib "^1.10.0" 1005 | optionalDependencies: 1006 | "@emotion/is-prop-valid" "^0.8.2" 1007 | 1008 | framesync@^4.0.0, framesync@^4.0.1, framesync@^4.0.4: 1009 | version "4.0.4" 1010 | resolved "https://registry.yarnpkg.com/framesync/-/framesync-4.0.4.tgz#79c42c0118f26821c078570db0ff81fb863516a2" 1011 | dependencies: 1012 | hey-listen "^1.0.8" 1013 | tslib "^1.10.0" 1014 | 1015 | fs-minipass@^1.2.5: 1016 | version "1.2.5" 1017 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1018 | dependencies: 1019 | minipass "^2.2.1" 1020 | 1021 | fs.realpath@^1.0.0: 1022 | version "1.0.0" 1023 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1024 | 1025 | fsevents@^1.2.3: 1026 | version "1.2.4" 1027 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1028 | dependencies: 1029 | nan "^2.9.2" 1030 | node-pre-gyp "^0.10.0" 1031 | 1032 | function-bind@^1.1.1: 1033 | version "1.1.1" 1034 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1035 | 1036 | gauge@~2.7.3: 1037 | version "2.7.4" 1038 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1039 | dependencies: 1040 | aproba "^1.0.3" 1041 | console-control-strings "^1.0.0" 1042 | has-unicode "^2.0.0" 1043 | object-assign "^4.1.0" 1044 | signal-exit "^3.0.0" 1045 | string-width "^1.0.1" 1046 | strip-ansi "^3.0.1" 1047 | wide-align "^1.1.0" 1048 | 1049 | get-caller-file@^1.0.1: 1050 | version "1.0.3" 1051 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 1052 | 1053 | get-stream@^3.0.0: 1054 | version "3.0.0" 1055 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1056 | 1057 | get-value@^2.0.3, get-value@^2.0.6: 1058 | version "2.0.6" 1059 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1060 | 1061 | getpass@^0.1.1: 1062 | version "0.1.7" 1063 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1064 | dependencies: 1065 | assert-plus "^1.0.0" 1066 | 1067 | glob-base@^0.3.0: 1068 | version "0.3.0" 1069 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1070 | dependencies: 1071 | glob-parent "^2.0.0" 1072 | is-glob "^2.0.0" 1073 | 1074 | glob-parent@^2.0.0: 1075 | version "2.0.0" 1076 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1077 | dependencies: 1078 | is-glob "^2.0.0" 1079 | 1080 | glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3: 1081 | version "7.1.3" 1082 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 1083 | dependencies: 1084 | fs.realpath "^1.0.0" 1085 | inflight "^1.0.4" 1086 | inherits "2" 1087 | minimatch "^3.0.4" 1088 | once "^1.3.0" 1089 | path-is-absolute "^1.0.0" 1090 | 1091 | globals@^9.18.0: 1092 | version "9.18.0" 1093 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1094 | 1095 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1096 | version "4.1.15" 1097 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" 1098 | 1099 | growly@^1.3.0: 1100 | version "1.3.0" 1101 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1102 | 1103 | handlebars@^4.0.3: 1104 | version "4.0.12" 1105 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.12.tgz#2c15c8a96d46da5e266700518ba8cb8d919d5bc5" 1106 | dependencies: 1107 | async "^2.5.0" 1108 | optimist "^0.6.1" 1109 | source-map "^0.6.1" 1110 | optionalDependencies: 1111 | uglify-js "^3.1.4" 1112 | 1113 | har-schema@^2.0.0: 1114 | version "2.0.0" 1115 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1116 | 1117 | har-validator@~5.1.0: 1118 | version "5.1.3" 1119 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" 1120 | dependencies: 1121 | ajv "^6.5.5" 1122 | har-schema "^2.0.0" 1123 | 1124 | has-ansi@^2.0.0: 1125 | version "2.0.0" 1126 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1127 | dependencies: 1128 | ansi-regex "^2.0.0" 1129 | 1130 | has-flag@^1.0.0: 1131 | version "1.0.0" 1132 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1133 | 1134 | has-flag@^3.0.0: 1135 | version "3.0.0" 1136 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1137 | 1138 | has-symbols@^1.0.0: 1139 | version "1.0.0" 1140 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 1141 | 1142 | has-unicode@^2.0.0: 1143 | version "2.0.1" 1144 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1145 | 1146 | has-value@^0.3.1: 1147 | version "0.3.1" 1148 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1149 | dependencies: 1150 | get-value "^2.0.3" 1151 | has-values "^0.1.4" 1152 | isobject "^2.0.0" 1153 | 1154 | has-value@^1.0.0: 1155 | version "1.0.0" 1156 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1157 | dependencies: 1158 | get-value "^2.0.6" 1159 | has-values "^1.0.0" 1160 | isobject "^3.0.0" 1161 | 1162 | has-values@^0.1.4: 1163 | version "0.1.4" 1164 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1165 | 1166 | has-values@^1.0.0: 1167 | version "1.0.0" 1168 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1169 | dependencies: 1170 | is-number "^3.0.0" 1171 | kind-of "^4.0.0" 1172 | 1173 | has@^1.0.1, has@^1.0.3: 1174 | version "1.0.3" 1175 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1176 | dependencies: 1177 | function-bind "^1.1.1" 1178 | 1179 | hey-listen@^1.0.8: 1180 | version "1.0.8" 1181 | resolved "https://registry.yarnpkg.com/hey-listen/-/hey-listen-1.0.8.tgz#8e59561ff724908de1aa924ed6ecc84a56a9aa68" 1182 | 1183 | home-or-tmp@^2.0.0: 1184 | version "2.0.0" 1185 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1186 | dependencies: 1187 | os-homedir "^1.0.0" 1188 | os-tmpdir "^1.0.1" 1189 | 1190 | hosted-git-info@^2.1.4: 1191 | version "2.7.1" 1192 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" 1193 | 1194 | html-encoding-sniffer@^1.0.2: 1195 | version "1.0.2" 1196 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1197 | dependencies: 1198 | whatwg-encoding "^1.0.1" 1199 | 1200 | http-signature@~1.2.0: 1201 | version "1.2.0" 1202 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1203 | dependencies: 1204 | assert-plus "^1.0.0" 1205 | jsprim "^1.2.2" 1206 | sshpk "^1.7.0" 1207 | 1208 | iconv-lite@0.4.24, iconv-lite@^0.4.4: 1209 | version "0.4.24" 1210 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1211 | dependencies: 1212 | safer-buffer ">= 2.1.2 < 3" 1213 | 1214 | ignore-walk@^3.0.1: 1215 | version "3.0.1" 1216 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1217 | dependencies: 1218 | minimatch "^3.0.4" 1219 | 1220 | import-local@^1.0.0: 1221 | version "1.0.0" 1222 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc" 1223 | dependencies: 1224 | pkg-dir "^2.0.0" 1225 | resolve-cwd "^2.0.0" 1226 | 1227 | imurmurhash@^0.1.4: 1228 | version "0.1.4" 1229 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1230 | 1231 | inflight@^1.0.4: 1232 | version "1.0.6" 1233 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1234 | dependencies: 1235 | once "^1.3.0" 1236 | wrappy "1" 1237 | 1238 | inherits@2, inherits@~2.0.3: 1239 | version "2.0.3" 1240 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1241 | 1242 | ini@~1.3.0: 1243 | version "1.3.5" 1244 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1245 | 1246 | invariant@^2.2.2, invariant@^2.2.4: 1247 | version "2.2.4" 1248 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1249 | dependencies: 1250 | loose-envify "^1.0.0" 1251 | 1252 | invert-kv@^1.0.0: 1253 | version "1.0.0" 1254 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1255 | 1256 | ip-regex@^3.0.0: 1257 | version "3.0.0" 1258 | resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-3.0.0.tgz#0a934694b4066558c46294244a23cc33116bf732" 1259 | 1260 | is-accessor-descriptor@^0.1.6: 1261 | version "0.1.6" 1262 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1263 | dependencies: 1264 | kind-of "^3.0.2" 1265 | 1266 | is-accessor-descriptor@^1.0.0: 1267 | version "1.0.0" 1268 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1269 | dependencies: 1270 | kind-of "^6.0.0" 1271 | 1272 | is-arrayish@^0.2.1: 1273 | version "0.2.1" 1274 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1275 | 1276 | is-buffer@^1.1.5: 1277 | version "1.1.6" 1278 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1279 | 1280 | is-builtin-module@^1.0.0: 1281 | version "1.0.0" 1282 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1283 | dependencies: 1284 | builtin-modules "^1.0.0" 1285 | 1286 | is-callable@^1.1.4: 1287 | version "1.1.4" 1288 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 1289 | 1290 | is-ci@^1.0.10: 1291 | version "1.2.1" 1292 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c" 1293 | dependencies: 1294 | ci-info "^1.5.0" 1295 | 1296 | is-data-descriptor@^0.1.4: 1297 | version "0.1.4" 1298 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1299 | dependencies: 1300 | kind-of "^3.0.2" 1301 | 1302 | is-data-descriptor@^1.0.0: 1303 | version "1.0.0" 1304 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1305 | dependencies: 1306 | kind-of "^6.0.0" 1307 | 1308 | is-date-object@^1.0.1: 1309 | version "1.0.1" 1310 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1311 | 1312 | is-descriptor@^0.1.0: 1313 | version "0.1.6" 1314 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1315 | dependencies: 1316 | is-accessor-descriptor "^0.1.6" 1317 | is-data-descriptor "^0.1.4" 1318 | kind-of "^5.0.0" 1319 | 1320 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1321 | version "1.0.2" 1322 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1323 | dependencies: 1324 | is-accessor-descriptor "^1.0.0" 1325 | is-data-descriptor "^1.0.0" 1326 | kind-of "^6.0.2" 1327 | 1328 | is-dotfile@^1.0.0: 1329 | version "1.0.3" 1330 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1331 | 1332 | is-equal-shallow@^0.1.3: 1333 | version "0.1.3" 1334 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1335 | dependencies: 1336 | is-primitive "^2.0.0" 1337 | 1338 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1339 | version "0.1.1" 1340 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1341 | 1342 | is-extendable@^1.0.1: 1343 | version "1.0.1" 1344 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1345 | dependencies: 1346 | is-plain-object "^2.0.4" 1347 | 1348 | is-extglob@^1.0.0: 1349 | version "1.0.0" 1350 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1351 | 1352 | is-finite@^1.0.0: 1353 | version "1.0.2" 1354 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1355 | dependencies: 1356 | number-is-nan "^1.0.0" 1357 | 1358 | is-fullwidth-code-point@^1.0.0: 1359 | version "1.0.0" 1360 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1361 | dependencies: 1362 | number-is-nan "^1.0.0" 1363 | 1364 | is-fullwidth-code-point@^2.0.0: 1365 | version "2.0.0" 1366 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1367 | 1368 | is-generator-fn@^1.0.0: 1369 | version "1.0.0" 1370 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1371 | 1372 | is-glob@^2.0.0, is-glob@^2.0.1: 1373 | version "2.0.1" 1374 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1375 | dependencies: 1376 | is-extglob "^1.0.0" 1377 | 1378 | is-number@^2.1.0: 1379 | version "2.1.0" 1380 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1381 | dependencies: 1382 | kind-of "^3.0.2" 1383 | 1384 | is-number@^3.0.0: 1385 | version "3.0.0" 1386 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1387 | dependencies: 1388 | kind-of "^3.0.2" 1389 | 1390 | is-number@^4.0.0: 1391 | version "4.0.0" 1392 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1393 | 1394 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1395 | version "2.0.4" 1396 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1397 | dependencies: 1398 | isobject "^3.0.1" 1399 | 1400 | is-posix-bracket@^0.1.0: 1401 | version "0.1.1" 1402 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1403 | 1404 | is-primitive@^2.0.0: 1405 | version "2.0.0" 1406 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1407 | 1408 | is-regex@^1.0.4: 1409 | version "1.0.4" 1410 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1411 | dependencies: 1412 | has "^1.0.1" 1413 | 1414 | is-stream@^1.1.0: 1415 | version "1.1.0" 1416 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1417 | 1418 | is-symbol@^1.0.2: 1419 | version "1.0.2" 1420 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" 1421 | dependencies: 1422 | has-symbols "^1.0.0" 1423 | 1424 | is-typedarray@~1.0.0: 1425 | version "1.0.0" 1426 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1427 | 1428 | is-utf8@^0.2.0: 1429 | version "0.2.1" 1430 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1431 | 1432 | is-windows@^1.0.2: 1433 | version "1.0.2" 1434 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1435 | 1436 | isarray@1.0.0, isarray@~1.0.0: 1437 | version "1.0.0" 1438 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1439 | 1440 | isexe@^2.0.0: 1441 | version "2.0.0" 1442 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1443 | 1444 | isobject@^2.0.0: 1445 | version "2.1.0" 1446 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1447 | dependencies: 1448 | isarray "1.0.0" 1449 | 1450 | isobject@^3.0.0, isobject@^3.0.1: 1451 | version "3.0.1" 1452 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1453 | 1454 | isstream@~0.1.2: 1455 | version "0.1.2" 1456 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1457 | 1458 | istanbul-api@^1.3.1: 1459 | version "1.3.7" 1460 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.7.tgz#a86c770d2b03e11e3f778cd7aedd82d2722092aa" 1461 | dependencies: 1462 | async "^2.1.4" 1463 | fileset "^2.0.2" 1464 | istanbul-lib-coverage "^1.2.1" 1465 | istanbul-lib-hook "^1.2.2" 1466 | istanbul-lib-instrument "^1.10.2" 1467 | istanbul-lib-report "^1.1.5" 1468 | istanbul-lib-source-maps "^1.2.6" 1469 | istanbul-reports "^1.5.1" 1470 | js-yaml "^3.7.0" 1471 | mkdirp "^0.5.1" 1472 | once "^1.4.0" 1473 | 1474 | istanbul-lib-coverage@^1.2.0, istanbul-lib-coverage@^1.2.1: 1475 | version "1.2.1" 1476 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz#ccf7edcd0a0bb9b8f729feeb0930470f9af664f0" 1477 | 1478 | istanbul-lib-hook@^1.2.2: 1479 | version "1.2.2" 1480 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz#bc6bf07f12a641fbf1c85391d0daa8f0aea6bf86" 1481 | dependencies: 1482 | append-transform "^0.4.0" 1483 | 1484 | istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.10.2: 1485 | version "1.10.2" 1486 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz#1f55ed10ac3c47f2bdddd5307935126754d0a9ca" 1487 | dependencies: 1488 | babel-generator "^6.18.0" 1489 | babel-template "^6.16.0" 1490 | babel-traverse "^6.18.0" 1491 | babel-types "^6.18.0" 1492 | babylon "^6.18.0" 1493 | istanbul-lib-coverage "^1.2.1" 1494 | semver "^5.3.0" 1495 | 1496 | istanbul-lib-report@^1.1.5: 1497 | version "1.1.5" 1498 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz#f2a657fc6282f96170aaf281eb30a458f7f4170c" 1499 | dependencies: 1500 | istanbul-lib-coverage "^1.2.1" 1501 | mkdirp "^0.5.1" 1502 | path-parse "^1.0.5" 1503 | supports-color "^3.1.2" 1504 | 1505 | istanbul-lib-source-maps@^1.2.4, istanbul-lib-source-maps@^1.2.6: 1506 | version "1.2.6" 1507 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz#37b9ff661580f8fca11232752ee42e08c6675d8f" 1508 | dependencies: 1509 | debug "^3.1.0" 1510 | istanbul-lib-coverage "^1.2.1" 1511 | mkdirp "^0.5.1" 1512 | rimraf "^2.6.1" 1513 | source-map "^0.5.3" 1514 | 1515 | istanbul-reports@^1.5.1: 1516 | version "1.5.1" 1517 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.5.1.tgz#97e4dbf3b515e8c484caea15d6524eebd3ff4e1a" 1518 | dependencies: 1519 | handlebars "^4.0.3" 1520 | 1521 | javascript-natural-sort@0.7.1: 1522 | version "0.7.1" 1523 | resolved "https://registry.yarnpkg.com/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz#f9e2303d4507f6d74355a73664d1440fb5a0ef59" 1524 | 1525 | jest-changed-files@^23.4.2: 1526 | version "23.4.2" 1527 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-23.4.2.tgz#1eed688370cd5eebafe4ae93d34bb3b64968fe83" 1528 | dependencies: 1529 | throat "^4.0.0" 1530 | 1531 | jest-cli@^23.6.0: 1532 | version "23.6.0" 1533 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-23.6.0.tgz#61ab917744338f443ef2baa282ddffdd658a5da4" 1534 | dependencies: 1535 | ansi-escapes "^3.0.0" 1536 | chalk "^2.0.1" 1537 | exit "^0.1.2" 1538 | glob "^7.1.2" 1539 | graceful-fs "^4.1.11" 1540 | import-local "^1.0.0" 1541 | is-ci "^1.0.10" 1542 | istanbul-api "^1.3.1" 1543 | istanbul-lib-coverage "^1.2.0" 1544 | istanbul-lib-instrument "^1.10.1" 1545 | istanbul-lib-source-maps "^1.2.4" 1546 | jest-changed-files "^23.4.2" 1547 | jest-config "^23.6.0" 1548 | jest-environment-jsdom "^23.4.0" 1549 | jest-get-type "^22.1.0" 1550 | jest-haste-map "^23.6.0" 1551 | jest-message-util "^23.4.0" 1552 | jest-regex-util "^23.3.0" 1553 | jest-resolve-dependencies "^23.6.0" 1554 | jest-runner "^23.6.0" 1555 | jest-runtime "^23.6.0" 1556 | jest-snapshot "^23.6.0" 1557 | jest-util "^23.4.0" 1558 | jest-validate "^23.6.0" 1559 | jest-watcher "^23.4.0" 1560 | jest-worker "^23.2.0" 1561 | micromatch "^2.3.11" 1562 | node-notifier "^5.2.1" 1563 | prompts "^0.1.9" 1564 | realpath-native "^1.0.0" 1565 | rimraf "^2.5.4" 1566 | slash "^1.0.0" 1567 | string-length "^2.0.0" 1568 | strip-ansi "^4.0.0" 1569 | which "^1.2.12" 1570 | yargs "^11.0.0" 1571 | 1572 | jest-config@^23.6.0: 1573 | version "23.6.0" 1574 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-23.6.0.tgz#f82546a90ade2d8c7026fbf6ac5207fc22f8eb1d" 1575 | dependencies: 1576 | babel-core "^6.0.0" 1577 | babel-jest "^23.6.0" 1578 | chalk "^2.0.1" 1579 | glob "^7.1.1" 1580 | jest-environment-jsdom "^23.4.0" 1581 | jest-environment-node "^23.4.0" 1582 | jest-get-type "^22.1.0" 1583 | jest-jasmine2 "^23.6.0" 1584 | jest-regex-util "^23.3.0" 1585 | jest-resolve "^23.6.0" 1586 | jest-util "^23.4.0" 1587 | jest-validate "^23.6.0" 1588 | micromatch "^2.3.11" 1589 | pretty-format "^23.6.0" 1590 | 1591 | jest-diff@^23.6.0: 1592 | version "23.6.0" 1593 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-23.6.0.tgz#1500f3f16e850bb3d71233408089be099f610c7d" 1594 | dependencies: 1595 | chalk "^2.0.1" 1596 | diff "^3.2.0" 1597 | jest-get-type "^22.1.0" 1598 | pretty-format "^23.6.0" 1599 | 1600 | jest-docblock@^23.2.0: 1601 | version "23.2.0" 1602 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-23.2.0.tgz#f085e1f18548d99fdd69b20207e6fd55d91383a7" 1603 | dependencies: 1604 | detect-newline "^2.1.0" 1605 | 1606 | jest-each@^23.6.0: 1607 | version "23.6.0" 1608 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-23.6.0.tgz#ba0c3a82a8054387016139c733a05242d3d71575" 1609 | dependencies: 1610 | chalk "^2.0.1" 1611 | pretty-format "^23.6.0" 1612 | 1613 | jest-environment-jsdom@^23.4.0: 1614 | version "23.4.0" 1615 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-23.4.0.tgz#056a7952b3fea513ac62a140a2c368c79d9e6023" 1616 | dependencies: 1617 | jest-mock "^23.2.0" 1618 | jest-util "^23.4.0" 1619 | jsdom "^11.5.1" 1620 | 1621 | jest-environment-node@^23.4.0: 1622 | version "23.4.0" 1623 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-23.4.0.tgz#57e80ed0841dea303167cce8cd79521debafde10" 1624 | dependencies: 1625 | jest-mock "^23.2.0" 1626 | jest-util "^23.4.0" 1627 | 1628 | jest-get-type@^22.1.0: 1629 | version "22.4.3" 1630 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" 1631 | 1632 | jest-haste-map@^23.6.0: 1633 | version "23.6.0" 1634 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-23.6.0.tgz#2e3eb997814ca696d62afdb3f2529f5bbc935e16" 1635 | dependencies: 1636 | fb-watchman "^2.0.0" 1637 | graceful-fs "^4.1.11" 1638 | invariant "^2.2.4" 1639 | jest-docblock "^23.2.0" 1640 | jest-serializer "^23.0.1" 1641 | jest-worker "^23.2.0" 1642 | micromatch "^2.3.11" 1643 | sane "^2.0.0" 1644 | 1645 | jest-jasmine2@^23.6.0: 1646 | version "23.6.0" 1647 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-23.6.0.tgz#840e937f848a6c8638df24360ab869cc718592e0" 1648 | dependencies: 1649 | babel-traverse "^6.0.0" 1650 | chalk "^2.0.1" 1651 | co "^4.6.0" 1652 | expect "^23.6.0" 1653 | is-generator-fn "^1.0.0" 1654 | jest-diff "^23.6.0" 1655 | jest-each "^23.6.0" 1656 | jest-matcher-utils "^23.6.0" 1657 | jest-message-util "^23.4.0" 1658 | jest-snapshot "^23.6.0" 1659 | jest-util "^23.4.0" 1660 | pretty-format "^23.6.0" 1661 | 1662 | jest-leak-detector@^23.6.0: 1663 | version "23.6.0" 1664 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-23.6.0.tgz#e4230fd42cf381a1a1971237ad56897de7e171de" 1665 | dependencies: 1666 | pretty-format "^23.6.0" 1667 | 1668 | jest-matcher-utils@^23.6.0: 1669 | version "23.6.0" 1670 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-23.6.0.tgz#726bcea0c5294261a7417afb6da3186b4b8cac80" 1671 | dependencies: 1672 | chalk "^2.0.1" 1673 | jest-get-type "^22.1.0" 1674 | pretty-format "^23.6.0" 1675 | 1676 | jest-message-util@^23.4.0: 1677 | version "23.4.0" 1678 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-23.4.0.tgz#17610c50942349508d01a3d1e0bda2c079086a9f" 1679 | dependencies: 1680 | "@babel/code-frame" "^7.0.0-beta.35" 1681 | chalk "^2.0.1" 1682 | micromatch "^2.3.11" 1683 | slash "^1.0.0" 1684 | stack-utils "^1.0.1" 1685 | 1686 | jest-mock@^23.2.0: 1687 | version "23.2.0" 1688 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-23.2.0.tgz#ad1c60f29e8719d47c26e1138098b6d18b261134" 1689 | 1690 | jest-regex-util@^23.3.0: 1691 | version "23.3.0" 1692 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-23.3.0.tgz#5f86729547c2785c4002ceaa8f849fe8ca471bc5" 1693 | 1694 | jest-resolve-dependencies@^23.6.0: 1695 | version "23.6.0" 1696 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-23.6.0.tgz#b4526af24c8540d9a3fab102c15081cf509b723d" 1697 | dependencies: 1698 | jest-regex-util "^23.3.0" 1699 | jest-snapshot "^23.6.0" 1700 | 1701 | jest-resolve@^23.6.0: 1702 | version "23.6.0" 1703 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-23.6.0.tgz#cf1d1a24ce7ee7b23d661c33ba2150f3aebfa0ae" 1704 | dependencies: 1705 | browser-resolve "^1.11.3" 1706 | chalk "^2.0.1" 1707 | realpath-native "^1.0.0" 1708 | 1709 | jest-runner@^23.6.0: 1710 | version "23.6.0" 1711 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-23.6.0.tgz#3894bd219ffc3f3cb94dc48a4170a2e6f23a5a38" 1712 | dependencies: 1713 | exit "^0.1.2" 1714 | graceful-fs "^4.1.11" 1715 | jest-config "^23.6.0" 1716 | jest-docblock "^23.2.0" 1717 | jest-haste-map "^23.6.0" 1718 | jest-jasmine2 "^23.6.0" 1719 | jest-leak-detector "^23.6.0" 1720 | jest-message-util "^23.4.0" 1721 | jest-runtime "^23.6.0" 1722 | jest-util "^23.4.0" 1723 | jest-worker "^23.2.0" 1724 | source-map-support "^0.5.6" 1725 | throat "^4.0.0" 1726 | 1727 | jest-runtime@^23.6.0: 1728 | version "23.6.0" 1729 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-23.6.0.tgz#059e58c8ab445917cd0e0d84ac2ba68de8f23082" 1730 | dependencies: 1731 | babel-core "^6.0.0" 1732 | babel-plugin-istanbul "^4.1.6" 1733 | chalk "^2.0.1" 1734 | convert-source-map "^1.4.0" 1735 | exit "^0.1.2" 1736 | fast-json-stable-stringify "^2.0.0" 1737 | graceful-fs "^4.1.11" 1738 | jest-config "^23.6.0" 1739 | jest-haste-map "^23.6.0" 1740 | jest-message-util "^23.4.0" 1741 | jest-regex-util "^23.3.0" 1742 | jest-resolve "^23.6.0" 1743 | jest-snapshot "^23.6.0" 1744 | jest-util "^23.4.0" 1745 | jest-validate "^23.6.0" 1746 | micromatch "^2.3.11" 1747 | realpath-native "^1.0.0" 1748 | slash "^1.0.0" 1749 | strip-bom "3.0.0" 1750 | write-file-atomic "^2.1.0" 1751 | yargs "^11.0.0" 1752 | 1753 | jest-serializer@^23.0.1: 1754 | version "23.0.1" 1755 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165" 1756 | 1757 | jest-snapshot@^23.6.0: 1758 | version "23.6.0" 1759 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-23.6.0.tgz#f9c2625d1b18acda01ec2d2b826c0ce58a5aa17a" 1760 | dependencies: 1761 | babel-types "^6.0.0" 1762 | chalk "^2.0.1" 1763 | jest-diff "^23.6.0" 1764 | jest-matcher-utils "^23.6.0" 1765 | jest-message-util "^23.4.0" 1766 | jest-resolve "^23.6.0" 1767 | mkdirp "^0.5.1" 1768 | natural-compare "^1.4.0" 1769 | pretty-format "^23.6.0" 1770 | semver "^5.5.0" 1771 | 1772 | jest-util@^23.4.0: 1773 | version "23.4.0" 1774 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-23.4.0.tgz#4d063cb927baf0a23831ff61bec2cbbf49793561" 1775 | dependencies: 1776 | callsites "^2.0.0" 1777 | chalk "^2.0.1" 1778 | graceful-fs "^4.1.11" 1779 | is-ci "^1.0.10" 1780 | jest-message-util "^23.4.0" 1781 | mkdirp "^0.5.1" 1782 | slash "^1.0.0" 1783 | source-map "^0.6.0" 1784 | 1785 | jest-validate@^23.6.0: 1786 | version "23.6.0" 1787 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.6.0.tgz#36761f99d1ed33fcd425b4e4c5595d62b6597474" 1788 | dependencies: 1789 | chalk "^2.0.1" 1790 | jest-get-type "^22.1.0" 1791 | leven "^2.1.0" 1792 | pretty-format "^23.6.0" 1793 | 1794 | jest-watcher@^23.4.0: 1795 | version "23.4.0" 1796 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-23.4.0.tgz#d2e28ce74f8dad6c6afc922b92cabef6ed05c91c" 1797 | dependencies: 1798 | ansi-escapes "^3.0.0" 1799 | chalk "^2.0.1" 1800 | string-length "^2.0.0" 1801 | 1802 | jest-worker@^23.2.0: 1803 | version "23.2.0" 1804 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-23.2.0.tgz#faf706a8da36fae60eb26957257fa7b5d8ea02b9" 1805 | dependencies: 1806 | merge-stream "^1.0.1" 1807 | 1808 | jest@^23.6.0: 1809 | version "23.6.0" 1810 | resolved "https://registry.yarnpkg.com/jest/-/jest-23.6.0.tgz#ad5835e923ebf6e19e7a1d7529a432edfee7813d" 1811 | dependencies: 1812 | import-local "^1.0.0" 1813 | jest-cli "^23.6.0" 1814 | 1815 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1816 | version "4.0.0" 1817 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1818 | 1819 | js-tokens@^3.0.2: 1820 | version "3.0.2" 1821 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1822 | 1823 | js-yaml@^3.7.0: 1824 | version "3.12.1" 1825 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.1.tgz#295c8632a18a23e054cf5c9d3cecafe678167600" 1826 | dependencies: 1827 | argparse "^1.0.7" 1828 | esprima "^4.0.0" 1829 | 1830 | jsbn@~0.1.0: 1831 | version "0.1.1" 1832 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1833 | 1834 | jsdom@^11.5.1: 1835 | version "11.12.0" 1836 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" 1837 | dependencies: 1838 | abab "^2.0.0" 1839 | acorn "^5.5.3" 1840 | acorn-globals "^4.1.0" 1841 | array-equal "^1.0.0" 1842 | cssom ">= 0.3.2 < 0.4.0" 1843 | cssstyle "^1.0.0" 1844 | data-urls "^1.0.0" 1845 | domexception "^1.0.1" 1846 | escodegen "^1.9.1" 1847 | html-encoding-sniffer "^1.0.2" 1848 | left-pad "^1.3.0" 1849 | nwsapi "^2.0.7" 1850 | parse5 "4.0.0" 1851 | pn "^1.1.0" 1852 | request "^2.87.0" 1853 | request-promise-native "^1.0.5" 1854 | sax "^1.2.4" 1855 | symbol-tree "^3.2.2" 1856 | tough-cookie "^2.3.4" 1857 | w3c-hr-time "^1.0.1" 1858 | webidl-conversions "^4.0.2" 1859 | whatwg-encoding "^1.0.3" 1860 | whatwg-mimetype "^2.1.0" 1861 | whatwg-url "^6.4.1" 1862 | ws "^5.2.0" 1863 | xml-name-validator "^3.0.0" 1864 | 1865 | jsesc@^1.3.0: 1866 | version "1.3.0" 1867 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1868 | 1869 | json-schema-traverse@^0.4.1: 1870 | version "0.4.1" 1871 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1872 | 1873 | json-schema@0.2.3: 1874 | version "0.2.3" 1875 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1876 | 1877 | json-stringify-safe@~5.0.1: 1878 | version "5.0.1" 1879 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1880 | 1881 | json5@2.x: 1882 | version "2.1.0" 1883 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" 1884 | dependencies: 1885 | minimist "^1.2.0" 1886 | 1887 | json5@^0.5.1: 1888 | version "0.5.1" 1889 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1890 | 1891 | jsprim@^1.2.2: 1892 | version "1.4.1" 1893 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1894 | dependencies: 1895 | assert-plus "1.0.0" 1896 | extsprintf "1.3.0" 1897 | json-schema "0.2.3" 1898 | verror "1.10.0" 1899 | 1900 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1901 | version "3.2.2" 1902 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1903 | dependencies: 1904 | is-buffer "^1.1.5" 1905 | 1906 | kind-of@^4.0.0: 1907 | version "4.0.0" 1908 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1909 | dependencies: 1910 | is-buffer "^1.1.5" 1911 | 1912 | kind-of@^5.0.0: 1913 | version "5.1.0" 1914 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1915 | 1916 | kind-of@^6.0.0, kind-of@^6.0.2: 1917 | version "6.0.2" 1918 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1919 | 1920 | kleur@^2.0.1: 1921 | version "2.0.2" 1922 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-2.0.2.tgz#b704f4944d95e255d038f0cb05fb8a602c55a300" 1923 | 1924 | lcid@^1.0.0: 1925 | version "1.0.0" 1926 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1927 | dependencies: 1928 | invert-kv "^1.0.0" 1929 | 1930 | left-pad@^1.3.0: 1931 | version "1.3.0" 1932 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" 1933 | 1934 | leven@^2.1.0: 1935 | version "2.1.0" 1936 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1937 | 1938 | levn@~0.3.0: 1939 | version "0.3.0" 1940 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1941 | dependencies: 1942 | prelude-ls "~1.1.2" 1943 | type-check "~0.3.2" 1944 | 1945 | load-json-file@^1.0.0: 1946 | version "1.1.0" 1947 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1948 | dependencies: 1949 | graceful-fs "^4.1.2" 1950 | parse-json "^2.2.0" 1951 | pify "^2.0.0" 1952 | pinkie-promise "^2.0.0" 1953 | strip-bom "^2.0.0" 1954 | 1955 | locate-path@^2.0.0: 1956 | version "2.0.0" 1957 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1958 | dependencies: 1959 | p-locate "^2.0.0" 1960 | path-exists "^3.0.0" 1961 | 1962 | lodash.sortby@^4.7.0: 1963 | version "4.7.0" 1964 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 1965 | 1966 | lodash@^4.13.1, lodash@^4.17.10, lodash@^4.17.4: 1967 | version "4.17.11" 1968 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 1969 | 1970 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: 1971 | version "1.4.0" 1972 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1973 | dependencies: 1974 | js-tokens "^3.0.0 || ^4.0.0" 1975 | 1976 | lru-cache@^4.0.1: 1977 | version "4.1.5" 1978 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 1979 | dependencies: 1980 | pseudomap "^1.0.2" 1981 | yallist "^2.1.2" 1982 | 1983 | make-error@1.x: 1984 | version "1.3.5" 1985 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.5.tgz#efe4e81f6db28cadd605c70f29c831b58ef776c8" 1986 | 1987 | makeerror@1.0.x: 1988 | version "1.0.11" 1989 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1990 | dependencies: 1991 | tmpl "1.0.x" 1992 | 1993 | map-cache@^0.2.2: 1994 | version "0.2.2" 1995 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1996 | 1997 | map-visit@^1.0.0: 1998 | version "1.0.0" 1999 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2000 | dependencies: 2001 | object-visit "^1.0.0" 2002 | 2003 | math-random@^1.0.1: 2004 | version "1.0.1" 2005 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 2006 | 2007 | mathjs@^5.2.0: 2008 | version "5.2.0" 2009 | resolved "https://registry.yarnpkg.com/mathjs/-/mathjs-5.2.0.tgz#229de7b08ba2fdab5f5b9ec4470061c4123d3bc4" 2010 | dependencies: 2011 | complex.js "2.0.11" 2012 | decimal.js "10.0.1" 2013 | escape-latex "1.1.1" 2014 | fraction.js "4.0.9" 2015 | javascript-natural-sort "0.7.1" 2016 | seed-random "2.2.0" 2017 | tiny-emitter "2.0.2" 2018 | typed-function "1.1.0" 2019 | 2020 | mem@^1.1.0: 2021 | version "1.1.0" 2022 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2023 | dependencies: 2024 | mimic-fn "^1.0.0" 2025 | 2026 | merge-stream@^1.0.1: 2027 | version "1.0.1" 2028 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 2029 | dependencies: 2030 | readable-stream "^2.0.1" 2031 | 2032 | merge@^1.2.0: 2033 | version "1.2.1" 2034 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" 2035 | 2036 | micromatch@^2.3.11: 2037 | version "2.3.11" 2038 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2039 | dependencies: 2040 | arr-diff "^2.0.0" 2041 | array-unique "^0.2.1" 2042 | braces "^1.8.2" 2043 | expand-brackets "^0.1.4" 2044 | extglob "^0.3.1" 2045 | filename-regex "^2.0.0" 2046 | is-extglob "^1.0.0" 2047 | is-glob "^2.0.1" 2048 | kind-of "^3.0.2" 2049 | normalize-path "^2.0.1" 2050 | object.omit "^2.0.0" 2051 | parse-glob "^3.0.4" 2052 | regex-cache "^0.4.2" 2053 | 2054 | micromatch@^3.1.4: 2055 | version "3.1.10" 2056 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2057 | dependencies: 2058 | arr-diff "^4.0.0" 2059 | array-unique "^0.3.2" 2060 | braces "^2.3.1" 2061 | define-property "^2.0.2" 2062 | extend-shallow "^3.0.2" 2063 | extglob "^2.0.4" 2064 | fragment-cache "^0.2.1" 2065 | kind-of "^6.0.2" 2066 | nanomatch "^1.2.9" 2067 | object.pick "^1.3.0" 2068 | regex-not "^1.0.0" 2069 | snapdragon "^0.8.1" 2070 | to-regex "^3.0.2" 2071 | 2072 | mime-db@~1.37.0: 2073 | version "1.37.0" 2074 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.37.0.tgz#0b6a0ce6fdbe9576e25f1f2d2fde8830dc0ad0d8" 2075 | 2076 | mime-types@^2.1.12, mime-types@~2.1.19: 2077 | version "2.1.21" 2078 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.21.tgz#28995aa1ecb770742fe6ae7e58f9181c744b3f96" 2079 | dependencies: 2080 | mime-db "~1.37.0" 2081 | 2082 | mimic-fn@^1.0.0: 2083 | version "1.2.0" 2084 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2085 | 2086 | minimatch@^3.0.3, minimatch@^3.0.4: 2087 | version "3.0.4" 2088 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2089 | dependencies: 2090 | brace-expansion "^1.1.7" 2091 | 2092 | minimist@0.0.8: 2093 | version "0.0.8" 2094 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2095 | 2096 | minimist@^1.1.1, minimist@^1.2.0: 2097 | version "1.2.0" 2098 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2099 | 2100 | minimist@~0.0.1: 2101 | version "0.0.10" 2102 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2103 | 2104 | minipass@^2.2.1, minipass@^2.3.4: 2105 | version "2.3.5" 2106 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" 2107 | dependencies: 2108 | safe-buffer "^5.1.2" 2109 | yallist "^3.0.0" 2110 | 2111 | minizlib@^1.1.1: 2112 | version "1.2.1" 2113 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" 2114 | dependencies: 2115 | minipass "^2.2.1" 2116 | 2117 | mixin-deep@^1.2.0: 2118 | version "1.3.1" 2119 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 2120 | dependencies: 2121 | for-in "^1.0.2" 2122 | is-extendable "^1.0.1" 2123 | 2124 | mkdirp@0.x, mkdirp@^0.5.0, mkdirp@^0.5.1: 2125 | version "0.5.1" 2126 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2127 | dependencies: 2128 | minimist "0.0.8" 2129 | 2130 | ms@2.0.0: 2131 | version "2.0.0" 2132 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2133 | 2134 | ms@^2.1.1: 2135 | version "2.1.1" 2136 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 2137 | 2138 | nan@^2.9.2: 2139 | version "2.12.1" 2140 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.12.1.tgz#7b1aa193e9aa86057e3c7bbd0ac448e770925552" 2141 | 2142 | nanomatch@^1.2.9: 2143 | version "1.2.13" 2144 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2145 | dependencies: 2146 | arr-diff "^4.0.0" 2147 | array-unique "^0.3.2" 2148 | define-property "^2.0.2" 2149 | extend-shallow "^3.0.2" 2150 | fragment-cache "^0.2.1" 2151 | is-windows "^1.0.2" 2152 | kind-of "^6.0.2" 2153 | object.pick "^1.3.0" 2154 | regex-not "^1.0.0" 2155 | snapdragon "^0.8.1" 2156 | to-regex "^3.0.1" 2157 | 2158 | natural-compare@^1.4.0: 2159 | version "1.4.0" 2160 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2161 | 2162 | needle@^2.2.1: 2163 | version "2.2.4" 2164 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e" 2165 | dependencies: 2166 | debug "^2.1.2" 2167 | iconv-lite "^0.4.4" 2168 | sax "^1.2.4" 2169 | 2170 | node-int64@^0.4.0: 2171 | version "0.4.0" 2172 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2173 | 2174 | node-notifier@^5.2.1: 2175 | version "5.3.0" 2176 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.3.0.tgz#c77a4a7b84038733d5fb351aafd8a268bfe19a01" 2177 | dependencies: 2178 | growly "^1.3.0" 2179 | semver "^5.5.0" 2180 | shellwords "^0.1.1" 2181 | which "^1.3.0" 2182 | 2183 | node-pre-gyp@^0.10.0: 2184 | version "0.10.3" 2185 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" 2186 | dependencies: 2187 | detect-libc "^1.0.2" 2188 | mkdirp "^0.5.1" 2189 | needle "^2.2.1" 2190 | nopt "^4.0.1" 2191 | npm-packlist "^1.1.6" 2192 | npmlog "^4.0.2" 2193 | rc "^1.2.7" 2194 | rimraf "^2.6.1" 2195 | semver "^5.3.0" 2196 | tar "^4" 2197 | 2198 | nopt@^4.0.1: 2199 | version "4.0.1" 2200 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2201 | dependencies: 2202 | abbrev "1" 2203 | osenv "^0.1.4" 2204 | 2205 | normalize-package-data@^2.3.2: 2206 | version "2.4.0" 2207 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2208 | dependencies: 2209 | hosted-git-info "^2.1.4" 2210 | is-builtin-module "^1.0.0" 2211 | semver "2 || 3 || 4 || 5" 2212 | validate-npm-package-license "^3.0.1" 2213 | 2214 | normalize-path@^2.0.1, normalize-path@^2.1.1: 2215 | version "2.1.1" 2216 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2217 | dependencies: 2218 | remove-trailing-separator "^1.0.1" 2219 | 2220 | npm-bundled@^1.0.1: 2221 | version "1.0.5" 2222 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979" 2223 | 2224 | npm-packlist@^1.1.6: 2225 | version "1.2.0" 2226 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.2.0.tgz#55a60e793e272f00862c7089274439a4cc31fc7f" 2227 | dependencies: 2228 | ignore-walk "^3.0.1" 2229 | npm-bundled "^1.0.1" 2230 | 2231 | npm-run-path@^2.0.0: 2232 | version "2.0.2" 2233 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2234 | dependencies: 2235 | path-key "^2.0.0" 2236 | 2237 | npmlog@^4.0.2: 2238 | version "4.1.2" 2239 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2240 | dependencies: 2241 | are-we-there-yet "~1.1.2" 2242 | console-control-strings "~1.1.0" 2243 | gauge "~2.7.3" 2244 | set-blocking "~2.0.0" 2245 | 2246 | number-is-nan@^1.0.0: 2247 | version "1.0.1" 2248 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2249 | 2250 | nwsapi@^2.0.7: 2251 | version "2.0.9" 2252 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.0.9.tgz#77ac0cdfdcad52b6a1151a84e73254edc33ed016" 2253 | 2254 | oauth-sign@~0.9.0: 2255 | version "0.9.0" 2256 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 2257 | 2258 | object-assign@^4.1.0, object-assign@^4.1.1: 2259 | version "4.1.1" 2260 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2261 | 2262 | object-copy@^0.1.0: 2263 | version "0.1.0" 2264 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2265 | dependencies: 2266 | copy-descriptor "^0.1.0" 2267 | define-property "^0.2.5" 2268 | kind-of "^3.0.3" 2269 | 2270 | object-keys@^1.0.12: 2271 | version "1.0.12" 2272 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" 2273 | 2274 | object-visit@^1.0.0: 2275 | version "1.0.1" 2276 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2277 | dependencies: 2278 | isobject "^3.0.0" 2279 | 2280 | object.getownpropertydescriptors@^2.0.3: 2281 | version "2.0.3" 2282 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 2283 | dependencies: 2284 | define-properties "^1.1.2" 2285 | es-abstract "^1.5.1" 2286 | 2287 | object.omit@^2.0.0: 2288 | version "2.0.1" 2289 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2290 | dependencies: 2291 | for-own "^0.1.4" 2292 | is-extendable "^0.1.1" 2293 | 2294 | object.pick@^1.3.0: 2295 | version "1.3.0" 2296 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2297 | dependencies: 2298 | isobject "^3.0.1" 2299 | 2300 | once@^1.3.0, once@^1.4.0: 2301 | version "1.4.0" 2302 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2303 | dependencies: 2304 | wrappy "1" 2305 | 2306 | optimist@^0.6.1: 2307 | version "0.6.1" 2308 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2309 | dependencies: 2310 | minimist "~0.0.1" 2311 | wordwrap "~0.0.2" 2312 | 2313 | optionator@^0.8.1: 2314 | version "0.8.2" 2315 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2316 | dependencies: 2317 | deep-is "~0.1.3" 2318 | fast-levenshtein "~2.0.4" 2319 | levn "~0.3.0" 2320 | prelude-ls "~1.1.2" 2321 | type-check "~0.3.2" 2322 | wordwrap "~1.0.0" 2323 | 2324 | os-homedir@^1.0.0: 2325 | version "1.0.2" 2326 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2327 | 2328 | os-locale@^2.0.0: 2329 | version "2.1.0" 2330 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2331 | dependencies: 2332 | execa "^0.7.0" 2333 | lcid "^1.0.0" 2334 | mem "^1.1.0" 2335 | 2336 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2337 | version "1.0.2" 2338 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2339 | 2340 | osenv@^0.1.4: 2341 | version "0.1.5" 2342 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2343 | dependencies: 2344 | os-homedir "^1.0.0" 2345 | os-tmpdir "^1.0.0" 2346 | 2347 | p-finally@^1.0.0: 2348 | version "1.0.0" 2349 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2350 | 2351 | p-limit@^1.1.0: 2352 | version "1.3.0" 2353 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 2354 | dependencies: 2355 | p-try "^1.0.0" 2356 | 2357 | p-locate@^2.0.0: 2358 | version "2.0.0" 2359 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2360 | dependencies: 2361 | p-limit "^1.1.0" 2362 | 2363 | p-try@^1.0.0: 2364 | version "1.0.0" 2365 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2366 | 2367 | parse-glob@^3.0.4: 2368 | version "3.0.4" 2369 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2370 | dependencies: 2371 | glob-base "^0.3.0" 2372 | is-dotfile "^1.0.0" 2373 | is-extglob "^1.0.0" 2374 | is-glob "^2.0.0" 2375 | 2376 | parse-json@^2.2.0: 2377 | version "2.2.0" 2378 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2379 | dependencies: 2380 | error-ex "^1.2.0" 2381 | 2382 | parse5@4.0.0: 2383 | version "4.0.0" 2384 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" 2385 | 2386 | pascalcase@^0.1.1: 2387 | version "0.1.1" 2388 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2389 | 2390 | path-exists@^2.0.0: 2391 | version "2.1.0" 2392 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2393 | dependencies: 2394 | pinkie-promise "^2.0.0" 2395 | 2396 | path-exists@^3.0.0: 2397 | version "3.0.0" 2398 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2399 | 2400 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2401 | version "1.0.1" 2402 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2403 | 2404 | path-key@^2.0.0: 2405 | version "2.0.1" 2406 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2407 | 2408 | path-parse@^1.0.5, path-parse@^1.0.6: 2409 | version "1.0.6" 2410 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2411 | 2412 | path-type@^1.0.0: 2413 | version "1.1.0" 2414 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2415 | dependencies: 2416 | graceful-fs "^4.1.2" 2417 | pify "^2.0.0" 2418 | pinkie-promise "^2.0.0" 2419 | 2420 | performance-now@^2.1.0: 2421 | version "2.1.0" 2422 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2423 | 2424 | pify@^2.0.0: 2425 | version "2.3.0" 2426 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2427 | 2428 | pinkie-promise@^2.0.0: 2429 | version "2.0.1" 2430 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2431 | dependencies: 2432 | pinkie "^2.0.0" 2433 | 2434 | pinkie@^2.0.0: 2435 | version "2.0.4" 2436 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2437 | 2438 | pkg-dir@^2.0.0: 2439 | version "2.0.0" 2440 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2441 | dependencies: 2442 | find-up "^2.1.0" 2443 | 2444 | pn@^1.1.0: 2445 | version "1.1.0" 2446 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" 2447 | 2448 | popmotion@9.0.0-beta-8: 2449 | version "9.0.0-beta-8" 2450 | resolved "https://registry.yarnpkg.com/popmotion/-/popmotion-9.0.0-beta-8.tgz#f5a709f11737734e84f2a6b73f9bcf25ee30c388" 2451 | dependencies: 2452 | "@popmotion/easing" "^1.0.1" 2453 | "@popmotion/popcorn" "^0.4.2" 2454 | framesync "^4.0.4" 2455 | hey-listen "^1.0.8" 2456 | style-value-types "^3.1.6" 2457 | tslib "^1.10.0" 2458 | 2459 | posix-character-classes@^0.1.0: 2460 | version "0.1.1" 2461 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2462 | 2463 | prelude-ls@~1.1.2: 2464 | version "1.1.2" 2465 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2466 | 2467 | preserve@^0.2.0: 2468 | version "0.2.0" 2469 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2470 | 2471 | pretty-format@^23.6.0: 2472 | version "23.6.0" 2473 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.6.0.tgz#5eaac8eeb6b33b987b7fe6097ea6a8a146ab5760" 2474 | dependencies: 2475 | ansi-regex "^3.0.0" 2476 | ansi-styles "^3.2.0" 2477 | 2478 | private@^0.1.8: 2479 | version "0.1.8" 2480 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2481 | 2482 | process-nextick-args@~2.0.0: 2483 | version "2.0.0" 2484 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2485 | 2486 | prompts@^0.1.9: 2487 | version "0.1.14" 2488 | resolved "https://registry.yarnpkg.com/prompts/-/prompts-0.1.14.tgz#a8e15c612c5c9ec8f8111847df3337c9cbd443b2" 2489 | dependencies: 2490 | kleur "^2.0.1" 2491 | sisteransi "^0.1.1" 2492 | 2493 | prop-types@^15.6.2: 2494 | version "15.6.2" 2495 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.2.tgz#05d5ca77b4453e985d60fc7ff8c859094a497102" 2496 | dependencies: 2497 | loose-envify "^1.3.1" 2498 | object-assign "^4.1.1" 2499 | 2500 | pseudomap@^1.0.2: 2501 | version "1.0.2" 2502 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2503 | 2504 | psl@^1.1.24, psl@^1.1.28: 2505 | version "1.1.31" 2506 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.31.tgz#e9aa86d0101b5b105cbe93ac6b784cd547276184" 2507 | 2508 | punycode@^1.4.1: 2509 | version "1.4.1" 2510 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2511 | 2512 | punycode@^2.1.0, punycode@^2.1.1: 2513 | version "2.1.1" 2514 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2515 | 2516 | qs@~6.5.2: 2517 | version "6.5.2" 2518 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 2519 | 2520 | randomatic@^3.0.0: 2521 | version "3.1.1" 2522 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed" 2523 | dependencies: 2524 | is-number "^4.0.0" 2525 | kind-of "^6.0.0" 2526 | math-random "^1.0.1" 2527 | 2528 | rc@^1.2.7: 2529 | version "1.2.8" 2530 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2531 | dependencies: 2532 | deep-extend "^0.6.0" 2533 | ini "~1.3.0" 2534 | minimist "^1.2.0" 2535 | strip-json-comments "~2.0.1" 2536 | 2537 | react-dom@^16.8: 2538 | version "16.10.2" 2539 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.10.2.tgz#4840bce5409176bc3a1f2bd8cb10b92db452fda6" 2540 | dependencies: 2541 | loose-envify "^1.1.0" 2542 | object-assign "^4.1.1" 2543 | prop-types "^15.6.2" 2544 | scheduler "^0.16.2" 2545 | 2546 | react@^16.8: 2547 | version "16.10.2" 2548 | resolved "https://registry.yarnpkg.com/react/-/react-16.10.2.tgz#a5ede5cdd5c536f745173c8da47bda64797a4cf0" 2549 | dependencies: 2550 | loose-envify "^1.1.0" 2551 | object-assign "^4.1.1" 2552 | prop-types "^15.6.2" 2553 | 2554 | read-pkg-up@^1.0.1: 2555 | version "1.0.1" 2556 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2557 | dependencies: 2558 | find-up "^1.0.0" 2559 | read-pkg "^1.0.0" 2560 | 2561 | read-pkg@^1.0.0: 2562 | version "1.1.0" 2563 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2564 | dependencies: 2565 | load-json-file "^1.0.0" 2566 | normalize-package-data "^2.3.2" 2567 | path-type "^1.0.0" 2568 | 2569 | readable-stream@^2.0.1, readable-stream@^2.0.6: 2570 | version "2.3.6" 2571 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2572 | dependencies: 2573 | core-util-is "~1.0.0" 2574 | inherits "~2.0.3" 2575 | isarray "~1.0.0" 2576 | process-nextick-args "~2.0.0" 2577 | safe-buffer "~5.1.1" 2578 | string_decoder "~1.1.1" 2579 | util-deprecate "~1.0.1" 2580 | 2581 | realpath-native@^1.0.0: 2582 | version "1.0.2" 2583 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.2.tgz#cd51ce089b513b45cf9b1516c82989b51ccc6560" 2584 | dependencies: 2585 | util.promisify "^1.0.0" 2586 | 2587 | regenerator-runtime@^0.11.0: 2588 | version "0.11.1" 2589 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2590 | 2591 | regex-cache@^0.4.2: 2592 | version "0.4.4" 2593 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2594 | dependencies: 2595 | is-equal-shallow "^0.1.3" 2596 | 2597 | regex-not@^1.0.0, regex-not@^1.0.2: 2598 | version "1.0.2" 2599 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2600 | dependencies: 2601 | extend-shallow "^3.0.2" 2602 | safe-regex "^1.1.0" 2603 | 2604 | remove-trailing-separator@^1.0.1: 2605 | version "1.1.0" 2606 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2607 | 2608 | repeat-element@^1.1.2: 2609 | version "1.1.3" 2610 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 2611 | 2612 | repeat-string@^1.5.2, repeat-string@^1.6.1: 2613 | version "1.6.1" 2614 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2615 | 2616 | repeating@^2.0.0: 2617 | version "2.0.1" 2618 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2619 | dependencies: 2620 | is-finite "^1.0.0" 2621 | 2622 | request-promise-core@1.1.1: 2623 | version "1.1.1" 2624 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 2625 | dependencies: 2626 | lodash "^4.13.1" 2627 | 2628 | request-promise-native@^1.0.5: 2629 | version "1.0.5" 2630 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" 2631 | dependencies: 2632 | request-promise-core "1.1.1" 2633 | stealthy-require "^1.1.0" 2634 | tough-cookie ">=2.3.3" 2635 | 2636 | request@^2.87.0: 2637 | version "2.88.0" 2638 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" 2639 | dependencies: 2640 | aws-sign2 "~0.7.0" 2641 | aws4 "^1.8.0" 2642 | caseless "~0.12.0" 2643 | combined-stream "~1.0.6" 2644 | extend "~3.0.2" 2645 | forever-agent "~0.6.1" 2646 | form-data "~2.3.2" 2647 | har-validator "~5.1.0" 2648 | http-signature "~1.2.0" 2649 | is-typedarray "~1.0.0" 2650 | isstream "~0.1.2" 2651 | json-stringify-safe "~5.0.1" 2652 | mime-types "~2.1.19" 2653 | oauth-sign "~0.9.0" 2654 | performance-now "^2.1.0" 2655 | qs "~6.5.2" 2656 | safe-buffer "^5.1.2" 2657 | tough-cookie "~2.4.3" 2658 | tunnel-agent "^0.6.0" 2659 | uuid "^3.3.2" 2660 | 2661 | require-directory@^2.1.1: 2662 | version "2.1.1" 2663 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2664 | 2665 | require-main-filename@^1.0.1: 2666 | version "1.0.1" 2667 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2668 | 2669 | resolve-cwd@^2.0.0: 2670 | version "2.0.0" 2671 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 2672 | dependencies: 2673 | resolve-from "^3.0.0" 2674 | 2675 | resolve-from@^3.0.0: 2676 | version "3.0.0" 2677 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2678 | 2679 | resolve-url@^0.2.1: 2680 | version "0.2.1" 2681 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2682 | 2683 | resolve@1.1.7: 2684 | version "1.1.7" 2685 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2686 | 2687 | resolve@1.x: 2688 | version "1.9.0" 2689 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.9.0.tgz#a14c6fdfa8f92a7df1d996cb7105fa744658ea06" 2690 | dependencies: 2691 | path-parse "^1.0.6" 2692 | 2693 | ret@~0.1.10: 2694 | version "0.1.15" 2695 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2696 | 2697 | rimraf@^2.5.4, rimraf@^2.6.1: 2698 | version "2.6.3" 2699 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 2700 | dependencies: 2701 | glob "^7.1.3" 2702 | 2703 | rsvp@^3.3.3: 2704 | version "3.6.2" 2705 | resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a" 2706 | 2707 | safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2708 | version "5.1.2" 2709 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2710 | 2711 | safe-regex@^1.1.0: 2712 | version "1.1.0" 2713 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2714 | dependencies: 2715 | ret "~0.1.10" 2716 | 2717 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 2718 | version "2.1.2" 2719 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2720 | 2721 | sane@^2.0.0: 2722 | version "2.5.2" 2723 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.5.2.tgz#b4dc1861c21b427e929507a3e751e2a2cb8ab3fa" 2724 | dependencies: 2725 | anymatch "^2.0.0" 2726 | capture-exit "^1.2.0" 2727 | exec-sh "^0.2.0" 2728 | fb-watchman "^2.0.0" 2729 | micromatch "^3.1.4" 2730 | minimist "^1.1.1" 2731 | walker "~1.0.5" 2732 | watch "~0.18.0" 2733 | optionalDependencies: 2734 | fsevents "^1.2.3" 2735 | 2736 | sax@^1.2.4: 2737 | version "1.2.4" 2738 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2739 | 2740 | scheduler@^0.16.2: 2741 | version "0.16.2" 2742 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.16.2.tgz#f74cd9d33eff6fc554edfb79864868e4819132c1" 2743 | dependencies: 2744 | loose-envify "^1.1.0" 2745 | object-assign "^4.1.1" 2746 | 2747 | seed-random@2.2.0: 2748 | version "2.2.0" 2749 | resolved "https://registry.yarnpkg.com/seed-random/-/seed-random-2.2.0.tgz#2a9b19e250a817099231a5b99a4daf80b7fbed54" 2750 | 2751 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.5, semver@^5.5.0: 2752 | version "5.6.0" 2753 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" 2754 | 2755 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2756 | version "2.0.0" 2757 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2758 | 2759 | set-value@^0.4.3: 2760 | version "0.4.3" 2761 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 2762 | dependencies: 2763 | extend-shallow "^2.0.1" 2764 | is-extendable "^0.1.1" 2765 | is-plain-object "^2.0.1" 2766 | to-object-path "^0.3.0" 2767 | 2768 | set-value@^2.0.0: 2769 | version "2.0.0" 2770 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 2771 | dependencies: 2772 | extend-shallow "^2.0.1" 2773 | is-extendable "^0.1.1" 2774 | is-plain-object "^2.0.3" 2775 | split-string "^3.0.1" 2776 | 2777 | shebang-command@^1.2.0: 2778 | version "1.2.0" 2779 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2780 | dependencies: 2781 | shebang-regex "^1.0.0" 2782 | 2783 | shebang-regex@^1.0.0: 2784 | version "1.0.0" 2785 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2786 | 2787 | shellwords@^0.1.1: 2788 | version "0.1.1" 2789 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 2790 | 2791 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2792 | version "3.0.2" 2793 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2794 | 2795 | sisteransi@^0.1.1: 2796 | version "0.1.1" 2797 | resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-0.1.1.tgz#5431447d5f7d1675aac667ccd0b865a4994cb3ce" 2798 | 2799 | slash@^1.0.0: 2800 | version "1.0.0" 2801 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2802 | 2803 | snapdragon-node@^2.0.1: 2804 | version "2.1.1" 2805 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 2806 | dependencies: 2807 | define-property "^1.0.0" 2808 | isobject "^3.0.0" 2809 | snapdragon-util "^3.0.1" 2810 | 2811 | snapdragon-util@^3.0.1: 2812 | version "3.0.1" 2813 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 2814 | dependencies: 2815 | kind-of "^3.2.0" 2816 | 2817 | snapdragon@^0.8.1: 2818 | version "0.8.2" 2819 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 2820 | dependencies: 2821 | base "^0.11.1" 2822 | debug "^2.2.0" 2823 | define-property "^0.2.5" 2824 | extend-shallow "^2.0.1" 2825 | map-cache "^0.2.2" 2826 | source-map "^0.5.6" 2827 | source-map-resolve "^0.5.0" 2828 | use "^3.1.0" 2829 | 2830 | source-map-resolve@^0.5.0: 2831 | version "0.5.2" 2832 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 2833 | dependencies: 2834 | atob "^2.1.1" 2835 | decode-uri-component "^0.2.0" 2836 | resolve-url "^0.2.1" 2837 | source-map-url "^0.4.0" 2838 | urix "^0.1.0" 2839 | 2840 | source-map-support@^0.4.15: 2841 | version "0.4.18" 2842 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2843 | dependencies: 2844 | source-map "^0.5.6" 2845 | 2846 | source-map-support@^0.5.6: 2847 | version "0.5.10" 2848 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.10.tgz#2214080bc9d51832511ee2bab96e3c2f9353120c" 2849 | dependencies: 2850 | buffer-from "^1.0.0" 2851 | source-map "^0.6.0" 2852 | 2853 | source-map-url@^0.4.0: 2854 | version "0.4.0" 2855 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 2856 | 2857 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7: 2858 | version "0.5.7" 2859 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2860 | 2861 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 2862 | version "0.6.1" 2863 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2864 | 2865 | spdx-correct@^3.0.0: 2866 | version "3.1.0" 2867 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" 2868 | dependencies: 2869 | spdx-expression-parse "^3.0.0" 2870 | spdx-license-ids "^3.0.0" 2871 | 2872 | spdx-exceptions@^2.1.0: 2873 | version "2.2.0" 2874 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" 2875 | 2876 | spdx-expression-parse@^3.0.0: 2877 | version "3.0.0" 2878 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 2879 | dependencies: 2880 | spdx-exceptions "^2.1.0" 2881 | spdx-license-ids "^3.0.0" 2882 | 2883 | spdx-license-ids@^3.0.0: 2884 | version "3.0.3" 2885 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.3.tgz#81c0ce8f21474756148bbb5f3bfc0f36bf15d76e" 2886 | 2887 | split-string@^3.0.1, split-string@^3.0.2: 2888 | version "3.1.0" 2889 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 2890 | dependencies: 2891 | extend-shallow "^3.0.0" 2892 | 2893 | sprintf-js@~1.0.2: 2894 | version "1.0.3" 2895 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2896 | 2897 | sshpk@^1.7.0: 2898 | version "1.16.0" 2899 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.0.tgz#1d4963a2fbffe58050aa9084ca20be81741c07de" 2900 | dependencies: 2901 | asn1 "~0.2.3" 2902 | assert-plus "^1.0.0" 2903 | bcrypt-pbkdf "^1.0.0" 2904 | dashdash "^1.12.0" 2905 | ecc-jsbn "~0.1.1" 2906 | getpass "^0.1.1" 2907 | jsbn "~0.1.0" 2908 | safer-buffer "^2.0.2" 2909 | tweetnacl "~0.14.0" 2910 | 2911 | stack-utils@^1.0.1: 2912 | version "1.0.2" 2913 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8" 2914 | 2915 | static-extend@^0.1.1: 2916 | version "0.1.2" 2917 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 2918 | dependencies: 2919 | define-property "^0.2.5" 2920 | object-copy "^0.1.0" 2921 | 2922 | stealthy-require@^1.1.0: 2923 | version "1.1.1" 2924 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 2925 | 2926 | string-length@^2.0.0: 2927 | version "2.0.0" 2928 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 2929 | dependencies: 2930 | astral-regex "^1.0.0" 2931 | strip-ansi "^4.0.0" 2932 | 2933 | string-width@^1.0.1: 2934 | version "1.0.2" 2935 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2936 | dependencies: 2937 | code-point-at "^1.0.0" 2938 | is-fullwidth-code-point "^1.0.0" 2939 | strip-ansi "^3.0.0" 2940 | 2941 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: 2942 | version "2.1.1" 2943 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2944 | dependencies: 2945 | is-fullwidth-code-point "^2.0.0" 2946 | strip-ansi "^4.0.0" 2947 | 2948 | string_decoder@~1.1.1: 2949 | version "1.1.1" 2950 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2951 | dependencies: 2952 | safe-buffer "~5.1.0" 2953 | 2954 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2955 | version "3.0.1" 2956 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2957 | dependencies: 2958 | ansi-regex "^2.0.0" 2959 | 2960 | strip-ansi@^4.0.0: 2961 | version "4.0.0" 2962 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2963 | dependencies: 2964 | ansi-regex "^3.0.0" 2965 | 2966 | strip-bom@3.0.0: 2967 | version "3.0.0" 2968 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2969 | 2970 | strip-bom@^2.0.0: 2971 | version "2.0.0" 2972 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2973 | dependencies: 2974 | is-utf8 "^0.2.0" 2975 | 2976 | strip-eof@^1.0.0: 2977 | version "1.0.0" 2978 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2979 | 2980 | strip-json-comments@~2.0.1: 2981 | version "2.0.1" 2982 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2983 | 2984 | style-value-types@^3.1.6: 2985 | version "3.1.6" 2986 | resolved "https://registry.yarnpkg.com/style-value-types/-/style-value-types-3.1.6.tgz#6b1da918214d92c74dc7fc2d074013f372b47d76" 2987 | dependencies: 2988 | hey-listen "^1.0.8" 2989 | 2990 | stylefire@^6.0.10: 2991 | version "6.0.12" 2992 | resolved "https://registry.yarnpkg.com/stylefire/-/stylefire-6.0.12.tgz#0564551eae9f8569802a20362bc6a60497d04752" 2993 | dependencies: 2994 | "@popmotion/popcorn" "^0.4.2" 2995 | framesync "^4.0.0" 2996 | hey-listen "^1.0.8" 2997 | style-value-types "^3.1.6" 2998 | 2999 | supports-color@^2.0.0: 3000 | version "2.0.0" 3001 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3002 | 3003 | supports-color@^3.1.2: 3004 | version "3.2.3" 3005 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3006 | dependencies: 3007 | has-flag "^1.0.0" 3008 | 3009 | supports-color@^5.3.0: 3010 | version "5.5.0" 3011 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3012 | dependencies: 3013 | has-flag "^3.0.0" 3014 | 3015 | symbol-tree@^3.2.2: 3016 | version "3.2.2" 3017 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3018 | 3019 | tar@^4: 3020 | version "4.4.8" 3021 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d" 3022 | dependencies: 3023 | chownr "^1.1.1" 3024 | fs-minipass "^1.2.5" 3025 | minipass "^2.3.4" 3026 | minizlib "^1.1.1" 3027 | mkdirp "^0.5.0" 3028 | safe-buffer "^5.1.2" 3029 | yallist "^3.0.2" 3030 | 3031 | test-exclude@^4.2.1: 3032 | version "4.2.3" 3033 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.3.tgz#a9a5e64474e4398339245a0a769ad7c2f4a97c20" 3034 | dependencies: 3035 | arrify "^1.0.1" 3036 | micromatch "^2.3.11" 3037 | object-assign "^4.1.0" 3038 | read-pkg-up "^1.0.1" 3039 | require-main-filename "^1.0.1" 3040 | 3041 | throat@^4.0.0: 3042 | version "4.1.0" 3043 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3044 | 3045 | tiny-emitter@2.0.2: 3046 | version "2.0.2" 3047 | resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.0.2.tgz#82d27468aca5ade8e5fd1e6d22b57dd43ebdfb7c" 3048 | 3049 | tmpl@1.0.x: 3050 | version "1.0.4" 3051 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3052 | 3053 | to-fast-properties@^1.0.3: 3054 | version "1.0.3" 3055 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3056 | 3057 | to-object-path@^0.3.0: 3058 | version "0.3.0" 3059 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3060 | dependencies: 3061 | kind-of "^3.0.2" 3062 | 3063 | to-regex-range@^2.1.0: 3064 | version "2.1.1" 3065 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3066 | dependencies: 3067 | is-number "^3.0.0" 3068 | repeat-string "^1.6.1" 3069 | 3070 | to-regex@^3.0.1, to-regex@^3.0.2: 3071 | version "3.0.2" 3072 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3073 | dependencies: 3074 | define-property "^2.0.2" 3075 | extend-shallow "^3.0.2" 3076 | regex-not "^1.0.2" 3077 | safe-regex "^1.1.0" 3078 | 3079 | tough-cookie@>=2.3.3: 3080 | version "3.0.0" 3081 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.0.tgz#d2bceddebde633153ff20a52fa844a0dc71dacef" 3082 | dependencies: 3083 | ip-regex "^3.0.0" 3084 | psl "^1.1.28" 3085 | punycode "^2.1.1" 3086 | 3087 | tough-cookie@^2.3.4: 3088 | version "2.5.0" 3089 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" 3090 | dependencies: 3091 | psl "^1.1.28" 3092 | punycode "^2.1.1" 3093 | 3094 | tough-cookie@~2.4.3: 3095 | version "2.4.3" 3096 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" 3097 | dependencies: 3098 | psl "^1.1.24" 3099 | punycode "^1.4.1" 3100 | 3101 | tr46@^1.0.1: 3102 | version "1.0.1" 3103 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 3104 | dependencies: 3105 | punycode "^2.1.0" 3106 | 3107 | trim-right@^1.0.1: 3108 | version "1.0.1" 3109 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3110 | 3111 | ts-jest@^23.10.5: 3112 | version "23.10.5" 3113 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-23.10.5.tgz#cdb550df4466a30489bf70ba867615799f388dd5" 3114 | dependencies: 3115 | bs-logger "0.x" 3116 | buffer-from "1.x" 3117 | fast-json-stable-stringify "2.x" 3118 | json5 "2.x" 3119 | make-error "1.x" 3120 | mkdirp "0.x" 3121 | resolve "1.x" 3122 | semver "^5.5" 3123 | yargs-parser "10.x" 3124 | 3125 | tslib@^1.10.0: 3126 | version "1.10.0" 3127 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" 3128 | 3129 | tunnel-agent@^0.6.0: 3130 | version "0.6.0" 3131 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3132 | dependencies: 3133 | safe-buffer "^5.0.1" 3134 | 3135 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3136 | version "0.14.5" 3137 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3138 | 3139 | type-check@~0.3.2: 3140 | version "0.3.2" 3141 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3142 | dependencies: 3143 | prelude-ls "~1.1.2" 3144 | 3145 | typed-function@1.1.0: 3146 | version "1.1.0" 3147 | resolved "https://registry.yarnpkg.com/typed-function/-/typed-function-1.1.0.tgz#ea149706e0fb42aca1791c053a6d94ccd6c4fdcb" 3148 | 3149 | typescript@^3.2.2: 3150 | version "3.2.2" 3151 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.2.2.tgz#fe8101c46aa123f8353523ebdcf5730c2ae493e5" 3152 | 3153 | uglify-js@^3.1.4: 3154 | version "3.4.9" 3155 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.9.tgz#af02f180c1207d76432e473ed24a28f4a782bae3" 3156 | dependencies: 3157 | commander "~2.17.1" 3158 | source-map "~0.6.1" 3159 | 3160 | union-value@^1.0.0: 3161 | version "1.0.0" 3162 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3163 | dependencies: 3164 | arr-union "^3.1.0" 3165 | get-value "^2.0.6" 3166 | is-extendable "^0.1.1" 3167 | set-value "^0.4.3" 3168 | 3169 | unset-value@^1.0.0: 3170 | version "1.0.0" 3171 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3172 | dependencies: 3173 | has-value "^0.3.1" 3174 | isobject "^3.0.0" 3175 | 3176 | uri-js@^4.2.2: 3177 | version "4.2.2" 3178 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 3179 | dependencies: 3180 | punycode "^2.1.0" 3181 | 3182 | urix@^0.1.0: 3183 | version "0.1.0" 3184 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3185 | 3186 | use-parallax@^0.0.6: 3187 | version "0.0.6" 3188 | resolved "https://registry.yarnpkg.com/use-parallax/-/use-parallax-0.0.6.tgz#53e4c0f72c751558fe54f1866bca52eab6a69938" 3189 | dependencies: 3190 | "@types/react" "^16.9.2" 3191 | framer-motion "^1.6.2" 3192 | 3193 | use@^3.1.0: 3194 | version "3.1.1" 3195 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 3196 | 3197 | util-deprecate@~1.0.1: 3198 | version "1.0.2" 3199 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3200 | 3201 | util.promisify@^1.0.0: 3202 | version "1.0.0" 3203 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 3204 | dependencies: 3205 | define-properties "^1.1.2" 3206 | object.getownpropertydescriptors "^2.0.3" 3207 | 3208 | uuid@^3.3.2: 3209 | version "3.3.2" 3210 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" 3211 | 3212 | validate-npm-package-license@^3.0.1: 3213 | version "3.0.4" 3214 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 3215 | dependencies: 3216 | spdx-correct "^3.0.0" 3217 | spdx-expression-parse "^3.0.0" 3218 | 3219 | verror@1.10.0: 3220 | version "1.10.0" 3221 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3222 | dependencies: 3223 | assert-plus "^1.0.0" 3224 | core-util-is "1.0.2" 3225 | extsprintf "^1.2.0" 3226 | 3227 | w3c-hr-time@^1.0.1: 3228 | version "1.0.1" 3229 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" 3230 | dependencies: 3231 | browser-process-hrtime "^0.1.2" 3232 | 3233 | walker@~1.0.5: 3234 | version "1.0.7" 3235 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3236 | dependencies: 3237 | makeerror "1.0.x" 3238 | 3239 | watch@~0.18.0: 3240 | version "0.18.0" 3241 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 3242 | dependencies: 3243 | exec-sh "^0.2.0" 3244 | minimist "^1.2.0" 3245 | 3246 | webidl-conversions@^4.0.2: 3247 | version "4.0.2" 3248 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 3249 | 3250 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: 3251 | version "1.0.5" 3252 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" 3253 | dependencies: 3254 | iconv-lite "0.4.24" 3255 | 3256 | whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0: 3257 | version "2.3.0" 3258 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" 3259 | 3260 | whatwg-url@^6.4.1: 3261 | version "6.5.0" 3262 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" 3263 | dependencies: 3264 | lodash.sortby "^4.7.0" 3265 | tr46 "^1.0.1" 3266 | webidl-conversions "^4.0.2" 3267 | 3268 | whatwg-url@^7.0.0: 3269 | version "7.0.0" 3270 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd" 3271 | dependencies: 3272 | lodash.sortby "^4.7.0" 3273 | tr46 "^1.0.1" 3274 | webidl-conversions "^4.0.2" 3275 | 3276 | which-module@^2.0.0: 3277 | version "2.0.0" 3278 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3279 | 3280 | which@^1.2.12, which@^1.2.9, which@^1.3.0: 3281 | version "1.3.1" 3282 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3283 | dependencies: 3284 | isexe "^2.0.0" 3285 | 3286 | wide-align@^1.1.0: 3287 | version "1.1.3" 3288 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 3289 | dependencies: 3290 | string-width "^1.0.2 || 2" 3291 | 3292 | wordwrap@~0.0.2: 3293 | version "0.0.3" 3294 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3295 | 3296 | wordwrap@~1.0.0: 3297 | version "1.0.0" 3298 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3299 | 3300 | wrap-ansi@^2.0.0: 3301 | version "2.1.0" 3302 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3303 | dependencies: 3304 | string-width "^1.0.1" 3305 | strip-ansi "^3.0.1" 3306 | 3307 | wrappy@1: 3308 | version "1.0.2" 3309 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3310 | 3311 | write-file-atomic@^2.1.0: 3312 | version "2.3.0" 3313 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3314 | dependencies: 3315 | graceful-fs "^4.1.11" 3316 | imurmurhash "^0.1.4" 3317 | signal-exit "^3.0.2" 3318 | 3319 | ws@^5.2.0: 3320 | version "5.2.2" 3321 | resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" 3322 | dependencies: 3323 | async-limiter "~1.0.0" 3324 | 3325 | xml-name-validator@^3.0.0: 3326 | version "3.0.0" 3327 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 3328 | 3329 | y18n@^3.2.1: 3330 | version "3.2.1" 3331 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3332 | 3333 | yallist@^2.1.2: 3334 | version "2.1.2" 3335 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3336 | 3337 | yallist@^3.0.0, yallist@^3.0.2: 3338 | version "3.0.3" 3339 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" 3340 | 3341 | yargs-parser@10.x: 3342 | version "10.1.0" 3343 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" 3344 | dependencies: 3345 | camelcase "^4.1.0" 3346 | 3347 | yargs-parser@^9.0.2: 3348 | version "9.0.2" 3349 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 3350 | dependencies: 3351 | camelcase "^4.1.0" 3352 | 3353 | yargs@^11.0.0: 3354 | version "11.1.0" 3355 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.1.0.tgz#90b869934ed6e871115ea2ff58b03f4724ed2d77" 3356 | dependencies: 3357 | cliui "^4.0.0" 3358 | decamelize "^1.1.1" 3359 | find-up "^2.1.0" 3360 | get-caller-file "^1.0.1" 3361 | os-locale "^2.0.0" 3362 | require-directory "^2.1.1" 3363 | require-main-filename "^1.0.1" 3364 | set-blocking "^2.0.0" 3365 | string-width "^2.0.0" 3366 | which-module "^2.0.0" 3367 | y18n "^3.2.1" 3368 | yargs-parser "^9.0.2" 3369 | --------------------------------------------------------------------------------