├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE.md ├── README.md ├── package.json ├── src ├── assets │ └── img │ │ ├── square_object.jpg │ │ └── vertical_default.jpg ├── components │ ├── Color │ │ ├── color-swatch.js │ │ └── index.js │ ├── Picture │ │ ├── component.js │ │ ├── index.js │ │ └── symbol.js │ ├── Shadow │ │ ├── ShadowSwatch.js │ │ └── index.js │ ├── Typography │ │ ├── TypographyItem.js │ │ ├── index.js │ │ ├── types.js │ │ └── typography-styles.js │ └── UI │ │ ├── Category │ │ └── index.js │ │ ├── Theme │ │ └── index.js │ │ ├── Typo │ │ └── index.js │ │ ├── UILabel │ │ └── index.js │ │ └── index.js ├── main.js ├── manifest.json ├── theme │ ├── app │ │ ├── color.js │ │ ├── image.js │ │ ├── index.js │ │ ├── shadow.js │ │ ├── spacing.js │ │ ├── typo.js │ │ └── typography.js │ ├── ids.js │ ├── theme-light.js │ ├── ui │ │ ├── color.js │ │ ├── index.js │ │ ├── shadow.js │ │ ├── spacing.js │ │ └── typography.js │ └── utils.js └── util │ └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # IntelliJ project files 2 | .idea 3 | gen 4 | 5 | styled-components.sketchplugin/ 6 | 7 | ### Node ### 8 | # Logs 9 | logs 10 | *.log 11 | npm-debug.log* 12 | yarn-debug.log* 13 | yarn-error.log* 14 | 15 | # Dependency directories 16 | node_modules/ -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | Contributors (sorted alphabetically) 2 | ============================================ 3 | 4 | * **[Ludwig Frank](https://github.com/ludwigfrank)** 5 | * Main author and contributor -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | 2 | MIT License 3 | 4 | Copyright (c) 2018 PhotoEditorSDK 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in all 14 | copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | SOFTWARE. 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Design-System-Generator 2 | 3 | ## How to use 4 | Download the example or [clone the repo](https://github.com/LFra/design-system-generator.git): 5 | 6 | Install the dependencies 7 | ``` 8 | npm install 9 | ``` 10 | 11 | Then, open Sketch and navigate to `Plugins → react-sketchapp: Design-System-Generator` 12 | 13 | ### Run it in Sketch 14 | Run with live reloading in Sketch 15 | ``` 16 | npm run render 17 | ``` 18 | 19 | ## Todos 20 | - [ ] Add Documentation to README 21 | - [ ] Create sketch plugin with visual interface 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ui-design-system-generator", 3 | "version": "0.0.1", 4 | "description": "Design & Develop System. Kickstart your project with supported theming and automatic naming.", 5 | "author": "Team PhotoEditorSDK ", 6 | "private": false, 7 | "license": "MIT", 8 | "skpm": { 9 | "main": "design-system.sketchplugin", 10 | "manifest": "src/manifest.json" 11 | }, 12 | "scripts": { 13 | "build": "skpm-build", 14 | "watch": "skpm-build --watch", 15 | "render": "skpm-build --watch --run", 16 | "render:once": "skpm-build --run" 17 | }, 18 | "devDependencies": { 19 | "@skpm/builder": "^0.2.0" 20 | }, 21 | "dependencies": { 22 | "chroma-js": "^1.2.2", 23 | "prop-types": "^15.5.8", 24 | "react": "^15.4.2", 25 | "react-primitives": "^0.4.2", 26 | "react-sketchapp": "git+https://github.com/LFra/react-sketchapp.git", 27 | "react-test-renderer": "^15.4.2", 28 | "styled-components": "^2.1.0" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/assets/img/square_object.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgly/ui-design-system-generator/14f33bcca0e36ccc9fe757691cba66fe0b9468e7/src/assets/img/square_object.jpg -------------------------------------------------------------------------------- /src/assets/img/vertical_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgly/ui-design-system-generator/14f33bcca0e36ccc9fe757691cba66fe0b9468e7/src/assets/img/vertical_default.jpg -------------------------------------------------------------------------------- /src/components/Color/color-swatch.js: -------------------------------------------------------------------------------- 1 | // Modules 2 | import React from 'react' 3 | import chroma from 'chroma-js' 4 | import { View } from 'react-sketchapp' 5 | import { generateSymbol } from '../../util/index' 6 | 7 | // Constants 8 | import { BORDER_RADII, BORDER_WIDTH, STATE_FILL_OPACITY } from '../../theme/ids' 9 | 10 | // Imports 11 | import UILabel from '../UI/UILabel' 12 | import shadow from '../../theme/ui/shadow' 13 | 14 | const getLabels = ( color, name) => { 15 | return { 16 | name: `${name}`, 17 | rgba: `${chroma(color).rgba()}`, 18 | hex: `${chroma(color).hex()}`.toUpperCase(), 19 | } 20 | } 21 | 22 | // Components 23 | 24 | const WrapperStyle = (index) => { 25 | return { 26 | width: '22%', 27 | marginBottom: 24, 28 | marginLeft: index % 4 === 0 || index === 0 ? 0 : '4%', 29 | display: 'flex', 30 | flexWrap: 'wrap', 31 | flexDirection: 'row', 32 | boxSizing: 'border-box' 33 | } 34 | } 35 | 36 | const SwatchOutlineStyle = (borderColor, borderRadius) => { 37 | return { 38 | width: 40, 39 | height: 40, 40 | borderWidth: BORDER_WIDTH, 41 | borderStyle: 'solid', 42 | borderColor: borderColor, 43 | borderRadius: borderRadius 44 | } 45 | } 46 | 47 | // TODO: Add 0 4px 8px rgba(0,0,0, ${props => 0.1 + 0.2 - (chroma(props.color).luminance() * 0.19) to shadowGroup 48 | const SwatchSymbolMaskStyle = (color) => { 49 | return { 50 | width: '100%', 51 | height: 24, 52 | position: 'relative', 53 | overflow: 'hidden', 54 | borderRadius: 4, 55 | backgroundColor: color, 56 | boxSizing: 'border-box', 57 | } 58 | } 59 | 60 | const DescriptionItemStyle = () => { 61 | return { 62 | width: 140, 63 | display: 'flex', 64 | flexDirection: 'row', 65 | } 66 | } 67 | 68 | const DescriptionItem = ({ label, value, themeID }) => ( 69 | 70 | {value.replace(/\b\w/g, l => l.toUpperCase()).replace(/,/g, ', ')} 71 | 72 | ) 73 | 74 | // Render 75 | const ColorSwatch = ({ color, name, width, groupName, index, themeID, shouldRenderOutline, shouldRenderStates }) => { 76 | const labels = getLabels(color, name, groupName) 77 | let SwatchSymbol 78 | 79 | // If the 'state' option is set, render the fill at a lower alpha than the corresponding outline 80 | if (shouldRenderStates) { 81 | SwatchSymbol = generateSymbol(() => 82 | , ['Fill', groupName, name], themeID) 85 | 86 | // Else, render it at the default color 87 | } else { 88 | SwatchSymbol = generateSymbol(() => 89 | , ['Fill', groupName, name], themeID) 92 | } 93 | 94 | // If the 'outline' option is set, create a symbol for each outline radius 95 | if (shouldRenderOutline) { 96 | BORDER_RADII.map(borderRadius => { 97 | generateSymbol(() => , ['Outline', `Radius ${borderRadius.name}`, groupName, name], themeID) 101 | }) 102 | } 103 | 104 | return ( 105 | 106 | 110 | 111 | 112 | 113 | {Object.keys(labels).map(name => )} 114 | 115 | 116 | ) 117 | } 118 | 119 | export default ColorSwatch 120 | -------------------------------------------------------------------------------- /src/components/Color/index.js: -------------------------------------------------------------------------------- 1 | // Modules 2 | import React from 'react' 3 | import { View } from 'react-sketchapp' 4 | 5 | // Imports 6 | import ColorSwatch from './color-swatch' 7 | import Category from '../UI/Category' 8 | import UITypo from '../UI/Typo/index' 9 | 10 | import { GLOBAL_WIDTH } from '../../theme/ids' 11 | 12 | // Constants 13 | const SWATCH_PER_COLUMN = 4 14 | 15 | 16 | const ColorSwatchWrapperStyle = { 17 | width: GLOBAL_WIDTH, 18 | marginBottom: 16, 19 | display: 'flex', 20 | flexDirection: 'row', 21 | flexWrap: 'wrap', 22 | justifyContent: 'flex-start' 23 | } 24 | 25 | // Render 26 | const Color = ({ colorGroups, themeID }) => ( 27 | 28 | 29 | {Object.keys(colorGroups).map(colorGroup => 30 | 31 | {colorGroup.replace(/\b\w/g, l => l.toUpperCase())} 32 | 33 | {Object.keys(colorGroups[colorGroup]).map((color, index) => 34 | )} 45 | 46 | 47 | )} 48 | 49 | 50 | ) 51 | 52 | export default Color 53 | -------------------------------------------------------------------------------- /src/components/Picture/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgly/ui-design-system-generator/14f33bcca0e36ccc9fe757691cba66fe0b9468e7/src/components/Picture/component.js -------------------------------------------------------------------------------- /src/components/Picture/index.js: -------------------------------------------------------------------------------- 1 | import Category from '../UI/Category' 2 | import { Image, View } from 'react-sketchapp' 3 | import React from 'react' 4 | import { generateSymbol } from '../../util' 5 | import { symbol } from './symbol' 6 | 7 | const Picture = ({ images, themeID }) => { 8 | symbol(images, themeID) 9 | return ( 10 | 11 | 12 | 13 | ) 14 | } 15 | 16 | export default Picture -------------------------------------------------------------------------------- /src/components/Picture/symbol.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { Image, View } from 'react-sketchapp' 3 | import { generateSymbol } from '../../util' 4 | 5 | const stylesPicture = { 6 | width: 80, 7 | height: 80, 8 | resizeMode: 'contain' 9 | } 10 | 11 | export const symbol = (images, themeID) => { 12 | images.map(image => { 13 | generateSymbol(() => 14 | 17 | 20 | 21 | , ['Image', image.name], themeID) 22 | }) 23 | } -------------------------------------------------------------------------------- /src/components/Shadow/ShadowSwatch.js: -------------------------------------------------------------------------------- 1 | // Modules 2 | import React from 'react' 3 | import { View } from 'react-sketchapp' 4 | import { generateSymbol } from '../../util/index' 5 | 6 | // Constants 7 | import { BORDER_RADII, BORDER_WIDTH } from '../../theme/ids' 8 | 9 | // Imports 10 | import UILabel from '../UI/UILabel' 11 | 12 | const getLabels = (name, uiShadows, themeID) => { 13 | const shadows = uiShadows[themeID] 14 | const shadowValues = (index) => { 15 | return `X: ${shadows[index].shadowOffset.width}, Y: ${shadows[index].shadowOffset.height}, B: ${shadows[index].shadowRadius}, S: ${shadows[index].shadowSpread}` 16 | } 17 | return { 18 | name: `Elevation ${name}`, 19 | penumbra: shadowValues(0), 20 | umbra: shadowValues(1), 21 | ambient: shadowValues(2) 22 | } 23 | } 24 | 25 | // Components 26 | const WrapperStyle = (index) => { 27 | return { 28 | width: '22%', 29 | marginBottom: 24, 30 | marginLeft: index % 4 === 0 || index === 0 ? 0 : '4%', 31 | display: 'flex', 32 | flexWrap: 'wrap', 33 | flexDirection: 'row', 34 | boxSizing: 'border-box' 35 | } 36 | } 37 | 38 | const SwatchSymbolStyle = (borderRadius, width = 40, height = 40, backgroundColor = 'rgba(0,0,0,0)') => { 39 | return { 40 | width: width, 41 | height: height, 42 | backgroundColor: backgroundColor, 43 | position: 'absolute', 44 | borderRadius: borderRadius, 45 | } 46 | } 47 | 48 | const DescriptionItemStyle = () => { 49 | return { 50 | width: 140, 51 | display: 'flex', 52 | flexDirection: 'row', 53 | } 54 | } 55 | 56 | const DescriptionItem = ({ label, value, themeID }) => ( 57 | 58 | {value.replace(/\b\w/g, l => l.toUpperCase()).replace(/,/g, ', ')} 59 | 60 | ) 61 | 62 | // Render 63 | const ShadowSwatch = ({ shadows, uiShadows, name, width, index, themeID }) => { 64 | const labels = getLabels(name, uiShadows, themeID) 65 | 66 | // Create a shadow symbol for each radius 67 | BORDER_RADII.map(borderRadius => { 68 | generateSymbol(() => 69 | 70 | 71 | 72 | , ['Shadow', `Border ${borderRadius.name}`, `Elevation ${parseInt(name)}`], themeID) 73 | }) 74 | 75 | return ( 76 | 77 | 78 | 79 | 80 | 81 | {Object.keys(labels).map(name => )} 82 | 83 | 84 | ) 85 | } 86 | 87 | export default ShadowSwatch 88 | -------------------------------------------------------------------------------- /src/components/Shadow/index.js: -------------------------------------------------------------------------------- 1 | // Modules 2 | import React from 'react' 3 | import { View } from 'react-sketchapp' 4 | 5 | // Imports 6 | import Category from '../UI/Category' 7 | import ShadowSwatch from './ShadowSwatch' 8 | 9 | import { GLOBAL_WIDTH } from '../../theme/ids' 10 | import shadows from '../../theme/app/shadow' 11 | import uiShadows from '../../theme/ui/shadow' 12 | 13 | 14 | // Constants 15 | const SWATCH_PER_COLUMN = 4 16 | 17 | 18 | const ColorSwatchWrapperStyle = { 19 | width: GLOBAL_WIDTH, 20 | marginBottom: 16, 21 | display: 'flex', 22 | flexDirection: 'row', 23 | flexWrap: 'wrap', 24 | justifyContent: 'flex-start' 25 | } 26 | 27 | // Render 28 | const Shadow = ({ themeID }) => { 29 | const shadowKeys = Object.keys(shadows) 30 | const uiShadowKeys = Object.keys(shadows) 31 | 32 | return ( 33 | 34 | 35 | 36 | {shadowKeys.map((shadow, index) => 37 | )} 46 | 47 | 48 | )} 49 | 50 | ) 51 | } 52 | 53 | export default Shadow 54 | -------------------------------------------------------------------------------- /src/components/Typography/TypographyItem.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { View, Text } from 'react-sketchapp' 3 | 4 | import AppTheme from '../../theme/app' 5 | import UITheme from '../../theme/ui' 6 | 7 | import UILabel from '../UI/UILabel' 8 | 9 | import { generateSymbol } from '../../util/index' 10 | import { ACTIVE_THEME } from '../../theme/ids' 11 | 12 | const WrapperStyle = { 13 | display: 'flex', 14 | flexDirection: 'row', 15 | alignItems: 'center', 16 | paddingBottom: '32px', 17 | paddingTop: '30px' 18 | } 19 | 20 | const SeparatorStyle = (themeID) => { 21 | return { 22 | backgroundColor: UITheme.color.interface.separator[themeID], 23 | width: '100%', 24 | height: '1px', 25 | position: 'absolute', 26 | bottom: 0 27 | } 28 | } 29 | 30 | const TypographyItem = ({ name, themeID, styles }) => { 31 | const styleName = name.split('/')[1] 32 | const styleVariation = name.split('/')[2] 33 | 34 | return ( 35 | 36 | 37 | {styles.fontSize.toString()} / {styles.lineHeight.toString()} 38 | 39 | 40 | {styleName} 41 | 42 | 43 | 44 | {styleVariation} 45 | {styles.fontFamily + ' ' + styles.fontWeight} 46 | 47 | 48 | 49 | 50 | ) 51 | } 52 | 53 | export default TypographyItem -------------------------------------------------------------------------------- /src/components/Typography/index.js: -------------------------------------------------------------------------------- 1 | // Modules 2 | import React from 'react' 3 | import { View, Text } from 'react-sketchapp' 4 | 5 | import TypographyItem from './TypographyItem' 6 | import Category from '../UI/Category/index' 7 | import { generateSymbol } from "../../util"; 8 | import { ACTIVE_THEME } from "../../theme/ids"; 9 | 10 | const Typography = ({ themeID = 'light', typographyStyles }) => { 11 | const typographyStylesArray = Object.keys(typographyStyles) 12 | return ( 13 | 14 | 15 | ${typographyStylesArray.map((type, index) => { 16 | if (themeID === ACTIVE_THEME) { 17 | generateSymbol(() => {type.split('/')[1]}, 18 | ['Typography', type], 19 | themeID 20 | ) 21 | } 22 | 23 | // only render the variations that are left aligned 24 | if (!type.includes('left')) { return } 25 | return ( 26 | )} 32 | ) 33 | } 34 | 35 | 36 | ) 37 | } 38 | 39 | export default Typography -------------------------------------------------------------------------------- /src/components/Typography/types.js: -------------------------------------------------------------------------------- 1 | const types = [ 2 | 'h1', 3 | 'h2', 4 | 'h3', 5 | 'h4', 6 | 'paragraph', 7 | 'caption' 8 | ] 9 | 10 | export default types 11 | -------------------------------------------------------------------------------- /src/components/Typography/typography-styles.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import styled, { css } from 'styled-components/primitives' 3 | import { baseCSS, tagCSS } from '../../theme/app/typography' 4 | 5 | const Typo = ({ 6 | type, 7 | align, 8 | children, 9 | themeID, 10 | secondary, 11 | }) => { 12 | const Component = styled.Text` 13 | ${baseCSS(align)}; 14 | ${tagCSS({type, themeID})}; 15 | opacity: ${secondary ? 0.65 : 1}; 16 | ` 17 | 18 | return ( 19 | {children} 20 | ) 21 | } 22 | 23 | export default Typo 24 | 25 | -------------------------------------------------------------------------------- /src/components/UI/Category/index.js: -------------------------------------------------------------------------------- 1 | // Modules 2 | import React from 'react' 3 | import { View } from 'react-sketchapp' 4 | 5 | import UITypo from '../Typo/index' 6 | 7 | const WrapperStyles = { 8 | paddingTop: 40 9 | } 10 | 11 | // Render 12 | const Category = ({ category, children, themeID }) => ( 13 | 14 | {category} 15 | 16 | {children} 17 | 18 | 19 | ) 20 | 21 | export default Category 22 | -------------------------------------------------------------------------------- /src/components/UI/Theme/index.js: -------------------------------------------------------------------------------- 1 | // Modules 2 | import React from 'react' 3 | import { Artboard, View} from 'react-sketchapp' 4 | 5 | import { default as uiColor } from '../../../theme/ui/color' 6 | import { color as appColor } from '../../../theme/app/color' 7 | import { default as appTypography } from '../../../theme/app/typo' 8 | import { images as appImages } from '../../../theme/app/image' 9 | 10 | // Components 11 | import Color from '../../Color' 12 | import Shadow from '../../Shadow' 13 | import Picture from '../../Picture' 14 | import Typography from "../../Typography" 15 | import { ACTIVE_THEME } from "../../../theme/ids" 16 | 17 | const WrapperStyles = (backgroundColor) => { 18 | return { 19 | backgroundColor, 20 | paddingBottom: 120, 21 | paddingLeft: 120, 22 | paddingRight: 120, 23 | paddingTop: 80 24 | } 25 | } 26 | 27 | const ActiveBorderStyles = (themeId, activeThemeId) => { 28 | return themeId === activeThemeId 29 | ? { 30 | width: '100%', 31 | height: '100%', 32 | borderColor: 'blue', 33 | borderWidth: 2, 34 | } 35 | : {} 36 | } 37 | 38 | // Render 39 | const UITheme = ({ themeID = 'light', index }) => { 40 | return ( 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | ) 51 | } 52 | 53 | export default UITheme 54 | -------------------------------------------------------------------------------- /src/components/UI/Typo/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import styled, { css } from 'styled-components/primitives' 3 | import { baseCSS, tagCSS } from '../../../theme/ui/typography' 4 | 5 | const UITypo = ({ 6 | type, 7 | align, 8 | children, 9 | themeID, 10 | secondary 11 | }) => { 12 | const Component = styled.Text` 13 | ${baseCSS(align)}; 14 | ${tagCSS({type, themeID})}; 15 | opacity: ${secondary ? 0.65 : 1}; 16 | ` 17 | 18 | return ( 19 | {children} 20 | ) 21 | } 22 | 23 | export default UITypo 24 | 25 | -------------------------------------------------------------------------------- /src/components/UI/UILabel/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { Text } from 'react-sketchapp' 3 | 4 | import color from '../../../theme/ui/color' 5 | import { fontFamily } from '../../../theme/ui/typography' 6 | 7 | const UILabel = ({ children, themeId, align = 'left', secondary = false }) => { 8 | const styles = { 9 | textAlign: align, 10 | color: color.text.hint[themeId], 11 | opacity: secondary ? 0.7 : 1, 12 | fontFamily: fontFamily, 13 | lineHeight: 20 , 14 | letterSpacing: 0.2 15 | } 16 | 17 | return ( 18 | {children} 19 | ) 20 | } 21 | 22 | export default UILabel -------------------------------------------------------------------------------- /src/components/UI/index.js: -------------------------------------------------------------------------------- 1 | import styled from 'styled-components/primitives' 2 | 3 | export const Label = styled.Text` 4 | font-family: 'Roboto'; 5 | font-size: 13px; 6 | letter-spacing: 0.2px; 7 | line-height: 22px; 8 | height: 20px; 9 | text-transform: capitalize; 10 | vertical-align: middle; 11 | display: inline-block; 12 | opacity: ${props => props.primary ? 1 : 0.6}; 13 | ` 14 | 15 | export const H3 = styled.Text` 16 | font-family: 'Roboto'; 17 | font-size: 16px; 18 | color: #1B2733; 19 | display: inline-block; 20 | float: left; 21 | margin-bottom: 24px; 22 | ` 23 | 24 | export const H2 = styled.Text` 25 | font-family: 'Roboto'; 26 | font-size: 24px; 27 | color: #1B2733; 28 | display: inline-block; 29 | float: left; 30 | margin-bottom: 40px; 31 | ` -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable react/jsx-filename-extension, import/no-named-as-default-member */ 2 | import React from 'react' 3 | import { render, Page, Document, TextStyles } from 'react-sketchapp' 4 | 5 | import UITheme from './components/UI/Theme' 6 | import { LIGHT_THEME, DARK_THEME } from './theme/ids' 7 | import appTheme from './theme/app' 8 | 9 | const themes = [ 10 | LIGHT_THEME, 11 | DARK_THEME 12 | ] 13 | 14 | const Doc = () => ( 15 | 16 | 17 | {themes.map((theme, index) => )} 18 | 19 | 20 | ) 21 | 22 | export default (context) => { 23 | TextStyles.create({ 24 | context: context, 25 | clearExistingStyles: true, 26 | }, appTheme.typography) 27 | 28 | render(); 29 | } 30 | -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "compatibleVersion": 1, 3 | "bundleVersion": 1, 4 | "commands": [ 5 | { 6 | "name": "design-system-generator", 7 | "identifier": "main", 8 | "script": "./main.js" 9 | } 10 | ], 11 | "menu": { 12 | "isRoot": true, 13 | "items": [ 14 | "main" 15 | ] 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/theme/app/color.js: -------------------------------------------------------------------------------- 1 | import chroma from 'chroma-js' 2 | import { DARK_THEME, LIGHT_THEME } from '../ids' 3 | 4 | // The base defines the hue inside interface elements e.g. so greys get a shift of blue 5 | const UI_BASE = '#1E47FB' 6 | 7 | const UI_BASE_DARK = '#232326' 8 | const UI_PRIMARY_DARK = UI_BASE 9 | 10 | const UI_BASE_LIGHT = '#FDFDFD' 11 | const UI_PRIMARY_LIGHT = UI_BASE 12 | 13 | const getColorHue = (color) => { 14 | // const baseColor = UI_BASE 15 | // const colorLuminance = chroma(color).luminance() 16 | // const mixedColor = chroma.mix(color, chroma(baseColor).set('hcl.l', colorLuminance).rgb(), 0.04 - 0.04 * colorLuminance * colorLuminance, 'rgb') 17 | return color.hex() 18 | } 19 | 20 | export const color = { 21 | // Text Colors are used for text throughout the application, no opacity may be applied 22 | text: { 23 | primary: { 24 | [DARK_THEME]: '#fffdfd', 25 | [LIGHT_THEME]: '#1B2733', 26 | }, 27 | 28 | secondary: { 29 | [DARK_THEME]: '#dedfe0', 30 | [LIGHT_THEME]: '#646E75', 31 | }, 32 | 33 | hint: { 34 | [DARK_THEME]: '#a9b0b4', 35 | [LIGHT_THEME]: '#848d94', 36 | }, 37 | 38 | white: { 39 | [DARK_THEME]: '#ffffff', 40 | [LIGHT_THEME]: '#ffffff', 41 | } 42 | }, 43 | 44 | accent: { 45 | primary: { 46 | [DARK_THEME]: UI_PRIMARY_DARK, 47 | [LIGHT_THEME]: UI_PRIMARY_LIGHT, 48 | outline: true 49 | }, 50 | 51 | danger: { 52 | [DARK_THEME]: '#ffb045', 53 | [LIGHT_THEME]: '#ff3d80', 54 | outline: true 55 | }, 56 | }, 57 | 58 | state: { 59 | disabled: { 60 | [DARK_THEME]: getColorHue(chroma(UI_BASE_DARK).brighten(0.4)), 61 | [LIGHT_THEME]: getColorHue(chroma(UI_BASE_LIGHT).darken(0.2)), 62 | outline: true, 63 | state: true 64 | }, 65 | 66 | standard: { 67 | [DARK_THEME]: getColorHue(chroma(UI_BASE_DARK).brighten(0.6)), 68 | [LIGHT_THEME]: getColorHue(chroma(UI_BASE_LIGHT).darken(0.6)), 69 | outline: true, 70 | state: true 71 | }, 72 | 73 | hover: { 74 | [DARK_THEME]: getColorHue(chroma(UI_BASE_DARK).brighten(0.8)), 75 | [LIGHT_THEME]: getColorHue(chroma(UI_BASE_LIGHT).darken(0.7)), 76 | outline: true, 77 | state: true 78 | }, 79 | 80 | pressed: { 81 | [DARK_THEME]: getColorHue(chroma(UI_BASE_DARK).brighten(1)), 82 | [LIGHT_THEME]: getColorHue(chroma(UI_BASE_LIGHT).darken(0.9)), 83 | outline: true, 84 | state: true 85 | }, 86 | 87 | // Note the active state in most cases is the primary color 88 | active: { 89 | [DARK_THEME]: UI_PRIMARY_DARK, 90 | [LIGHT_THEME]: UI_PRIMARY_LIGHT, 91 | outline: true 92 | }, 93 | }, 94 | 95 | 96 | // These colors are used throughout the UI for backgrounds 97 | interface: { 98 | // Used to clearly separate two ui components or make edges appear harder. 99 | separator: { 100 | [DARK_THEME]: 'rgba(255,255,255,0.1)', 101 | [LIGHT_THEME]: 'rgba(0,0,0,0.1)', 102 | }, 103 | 104 | // Slider 105 | sliderHandle: { 106 | [DARK_THEME]: getColorHue(chroma(UI_BASE_DARK).brighten(5)), 107 | [LIGHT_THEME]: chroma(UI_BASE_LIGHT).brighten(4.5).hex(), 108 | }, 109 | 110 | sliderBackground: { 111 | [DARK_THEME]: getColorHue(chroma(UI_BASE_DARK).darken(0.6)), 112 | [LIGHT_THEME]: '#E2E1E6', 113 | }, 114 | 115 | // Navigation Bar 116 | navigation: { 117 | [DARK_THEME]: getColorHue(chroma(UI_BASE_DARK).brighten(0.2)), 118 | [LIGHT_THEME]: '#FFFFFF', 119 | }, 120 | 121 | // Tool Bar 122 | tool: { 123 | [DARK_THEME]: getColorHue(chroma(UI_BASE_DARK)), 124 | [LIGHT_THEME]: '#FBFBFB', 125 | }, 126 | 127 | // Canvas 128 | canvas: { 129 | [DARK_THEME]: getColorHue(chroma(UI_BASE_DARK).darken(0.5)), 130 | [LIGHT_THEME]: '#EFF0F0', 131 | }, 132 | } 133 | } 134 | 135 | -------------------------------------------------------------------------------- /src/theme/app/image.js: -------------------------------------------------------------------------------- 1 | export const images = [ 2 | { 3 | name: 'Square Object', 4 | source: 'https://raw.githubusercontent.com/ludwigfrank/design-system-generator/master/src/assets/img/square_object.jpg' 5 | }, 6 | { 7 | name: 'Vertical Default', 8 | source: 'https://raw.githubusercontent.com/ludwigfrank/design-system-generator/master/src/assets/img/vertical_default.jpg' 9 | }, 10 | ] 11 | 12 | -------------------------------------------------------------------------------- /src/theme/app/index.js: -------------------------------------------------------------------------------- 1 | import color from './color' 2 | import typography from './typo' 3 | import spacing from './spacing' 4 | import shadow from './shadow' 5 | 6 | export default { 7 | color, 8 | typography, 9 | spacing, 10 | shadow 11 | } 12 | -------------------------------------------------------------------------------- /src/theme/app/shadow.js: -------------------------------------------------------------------------------- 1 | import { LIGHT_THEME, DARK_THEME, ACTIVE_THEME } from '../ids' 2 | 3 | const shadowKeyUmbraOpacity = { 4 | [LIGHT_THEME]: 0.2, 5 | [DARK_THEME]: 0.3 6 | } 7 | 8 | const shadowKeyPenumbraOpacity = { 9 | [LIGHT_THEME]: 0.14, 10 | [DARK_THEME]: 0.2 11 | } 12 | 13 | const shadowAmbientShadowOpacity = { 14 | [LIGHT_THEME]: 0.12, 15 | [DARK_THEME]: 0.18 16 | } 17 | 18 | const shadows = { 19 | 0: [ 20 | [0, 0, 0, 0], // KeyUmbra 21 | [0, 0, 0, 0], // PenUmbra 22 | [0, 0, 0, 0] // Ambient 23 | ], 24 | 1: [ 25 | [0, 1, 3, 0], 26 | [0, 1, 1, 0], 27 | [0, 2, 1, -1] 28 | ], 29 | 2: [ 30 | [0, 1, 5, 0], 31 | [0, 2, 2, 0], 32 | [0, 3, 1, -2] 33 | ], 34 | 3: [ 35 | [0, 1, 8, 0], 36 | [0, 3, 4, 0], 37 | [0, 3, 3, -2] 38 | ], 39 | 4: [ 40 | [0, 2, 4, -1], 41 | [0, 4, 5, 0], 42 | [0, 1, 10, 0] 43 | ], 44 | 6: [ 45 | [0, 3, 5, -1], 46 | [0, 6, 10, 0], 47 | [0, 1, 16, 0] 48 | ] 49 | } 50 | 51 | const createSketchAppShadowStyles = (shadows = shadows) => { 52 | const shadowStyles = {} 53 | 54 | for (let k in shadows) { 55 | const currentShadowStyles = shadows[k] 56 | const key = currentShadowStyles[0] 57 | const pen = currentShadowStyles[1] 58 | const amb = currentShadowStyles[2] 59 | 60 | const shadowStyle = ({xOffset, yOffset, spread, opacity, radius, shadowColor = 'black'}) => { 61 | return { 62 | shadowColor, 63 | shadowOffset: { width: xOffset, height: yOffset }, 64 | shadowSpread: spread, 65 | shadowOpacity: opacity, 66 | shadowRadius: radius 67 | } 68 | } 69 | 70 | shadowStyles[k] = [ 71 | shadowStyle({ 72 | xOffset: key[0], 73 | yOffset: key[1], 74 | radius: key[2], 75 | spread: key[3], 76 | opacity: shadowKeyUmbraOpacity[ACTIVE_THEME], 77 | }), 78 | shadowStyle({ 79 | xOffset: pen[0], 80 | yOffset: pen[1], 81 | radius: pen[2], 82 | spread: pen[3], 83 | opacity: shadowKeyPenumbraOpacity[ACTIVE_THEME], 84 | }), 85 | shadowStyle({ 86 | xOffset: amb[0], 87 | yOffset: amb[1], 88 | radius: amb[2], 89 | spread: amb[3], 90 | opacity: shadowAmbientShadowOpacity[ACTIVE_THEME], 91 | }) 92 | ] 93 | } 94 | 95 | return shadowStyles 96 | } 97 | 98 | const createShadowStyles = (shadows = shadows) => { 99 | const shadowStyles = {} 100 | 101 | for (let k in shadows) { 102 | const currentShadowStyles = shadows[k] 103 | const key = currentShadowStyles[0] 104 | const pen = currentShadowStyles[1] 105 | const amb = currentShadowStyles[2] 106 | 107 | shadowStyles[k] = [ 108 | `${key[0]}px ${key[1]}px ${key[2]}px ${key[3]}px rgba(0, 0, 0, ${shadowKeyUmbraOpacity[ACTIVE_THEME]})`, 109 | `${pen[0]}px ${pen[1]}px ${pen[2]}px ${pen[3]}px rgba(0, 0, 0, ${shadowKeyPenumbraOpacity[ACTIVE_THEME]})`, 110 | `${amb[0]}px ${amb[1]}px ${amb[2]}px ${amb[3]}px rgba(0, 0, 0, ${shadowAmbientShadowOpacity[ACTIVE_THEME]})`, 111 | ] 112 | } 113 | 114 | return shadowStyles 115 | } 116 | 117 | export default createSketchAppShadowStyles(shadows) -------------------------------------------------------------------------------- /src/theme/app/spacing.js: -------------------------------------------------------------------------------- 1 | const spacing = { 2 | xxs: 4, 3 | xs: 8, 4 | s: 16, 5 | m: 24, 6 | l: 48, 7 | xl: 64, 8 | xxl: 128 9 | } 10 | 11 | export default spacing -------------------------------------------------------------------------------- /src/theme/app/typo.js: -------------------------------------------------------------------------------- 1 | import { TYPOGRAPHY_ALIGNMENTS } from '../ids' 2 | import { color } from './color' 3 | const textColor = color.text 4 | 5 | const fontFamily = { 6 | primary: 'IBMPlexSansCond-Medium' 7 | } 8 | 9 | const baseStyles = { 10 | fontSize: 14, 11 | lineHeight: 24, 12 | fontFamily: fontFamily.primary, 13 | fontWeight: '400', 14 | color: textColor.primary, 15 | marginBottom: '0px', 16 | } 17 | 18 | export const typographyStyles = { 19 | 'Headline 1': { 20 | style: { 21 | fontSize: 32, 22 | lineHeight: 32, 23 | color: textColor.primary 24 | } 25 | }, 26 | 27 | 'Headline 2': { 28 | style: { 29 | fontSize: 24, 30 | lineHeight: 28, 31 | color: textColor.primary 32 | } 33 | }, 34 | 35 | 'Label': { 36 | style: { 37 | color: color.text.hint, 38 | fontSize: 13, 39 | lineHeight: 16 40 | } 41 | }, 42 | 43 | 'Body': { 44 | style: { 45 | fontSize: 14, 46 | lineHeight: 18, 47 | color: textColor.secondary 48 | } 49 | }, 50 | 51 | 'Button Text': { 52 | style: { 53 | letterSpacing: 1.5, 54 | lineHeight: 16, 55 | fontSize: 12, 56 | fontFamily: "IBM Plex Sans Condensed Medium", 57 | textTransform: 'uppercase', 58 | color: textColor.secondary, 59 | width: 108 60 | }, 61 | styleVariations: { 62 | 'Disabled': { 63 | opacity: 0.5 64 | }, 65 | 'White': { 66 | color: textColor.white 67 | }, 68 | 'OnImage': { 69 | color: textColor.white, 70 | shadowColor: '#000000', 71 | shadowOffset: { width: 0, height: 1 }, 72 | shadowSpread: 3, 73 | shadowOpacity: 0.5, 74 | shadowRadius: 4 75 | } 76 | } 77 | }, 78 | } 79 | 80 | const mergedStyles = (themeId) => Object.keys(typographyStyles).reduce((acc, cur, ind, arr) => { 81 | TYPOGRAPHY_ALIGNMENTS.map((alignment, index) => { 82 | const defaultStyle = { 83 | ...baseStyles, 84 | ...typographyStyles[cur].style, 85 | color: typographyStyles[cur].style.color[themeId], 86 | textAlign: alignment, 87 | } 88 | 89 | // if the style contains variations 90 | if (typographyStyles[cur].styleVariations) { 91 | Object.keys(typographyStyles[cur].styleVariations).forEach(variation => { 92 | const variationStyles = typographyStyles[cur].styleVariations[variation] 93 | 94 | acc[alignment + '/' + cur + '/' + variation] = { 95 | ...defaultStyle, 96 | ...variationStyles, 97 | color: variationStyles.color 98 | ? variationStyles.color[themeId] 99 | : defaultStyle.color, 100 | } 101 | }) 102 | } 103 | 104 | acc[alignment + '/' + cur + '/Standard' ] = { 105 | ...defaultStyle 106 | } 107 | 108 | }) 109 | 110 | return acc 111 | }, {}) 112 | 113 | export default mergedStyles -------------------------------------------------------------------------------- /src/theme/app/typography.js: -------------------------------------------------------------------------------- 1 | import { css } from 'styled-components' 2 | import themeColors from './color' 3 | import * as React from 'react' 4 | 5 | export const fontFamily = "Acumin Pro SemiCondensed" 6 | 7 | /** 8 | * Generate the base css for each typography styles. 9 | * 10 | * @param {String} align 11 | * @return {Function} 12 | */ 13 | 14 | export const baseCSS = ( 15 | align = 'left' 16 | ) => css` 17 | text-align: ${align}; 18 | color: ${themeColors.light.text.primary}; 19 | font-family: ${fontFamily}; 20 | font-size: 16px; 21 | line-height: 24px; 22 | letter-spacing: 0; 23 | display: inline; 24 | ` 25 | 26 | /** 27 | * Transforms that will be generated as symbols. 28 | * Each key needs to be added to the baseCSS function as a parameter and the corresponding css. 29 | * The generated symbols will NOT appear in the stylesheet. 30 | */ 31 | 32 | export const transforms = { 33 | align: [ 34 | 'left', 35 | 'center', 36 | 'right' 37 | ] 38 | } 39 | 40 | /** 41 | * Generate the tag css for the given tag. 42 | * 43 | * @param {String} tag 44 | * @param {String} themeID 45 | * @return {Function} 46 | */ 47 | 48 | export const tagCSS = ({type = 'paragraph', themeID = 'light'}) => { 49 | return generateCSS({...typography[type].style, themeID}) 50 | } 51 | 52 | 53 | const generateCSS = ( 54 | { 55 | fontSize = '14px', 56 | lineHeight = '24px', 57 | fontFamily = 'Roboto', 58 | color = 'primary', 59 | marginBottom = '0px', 60 | themeID 61 | } 62 | ) => { 63 | return css` 64 | font-size: ${fontSize}; 65 | font-family: ${fontFamily}; 66 | line-height: ${lineHeight}; 67 | color: ${themeColors[themeID].text[color]}; 68 | margin-bottom: ${marginBottom}; 69 | ` 70 | } 71 | 72 | 73 | const typography = { 74 | 75 | 'h1': { 76 | name: 'H1', 77 | style: { 78 | fontSize: '32px', 79 | lineHeight: '32px', 80 | color: 'primary' 81 | } 82 | }, 83 | 84 | 'h2': { 85 | name: 'H2', 86 | style: { 87 | fontSize: '24px', 88 | lineHeight: '28px', 89 | color: 'primary' 90 | } 91 | }, 92 | 93 | 'h3': { 94 | name: 'H3', 95 | style: { 96 | fontSize: '20px', 97 | lineHeight: '24px', 98 | color: 'primary' 99 | } 100 | }, 101 | 102 | 'h4': { 103 | name: 'H4', 104 | style: { 105 | fontSize: '20px', 106 | lineHeight: '24px', 107 | color: 'primary' 108 | } 109 | }, 110 | 111 | 'paragraph': { 112 | name: 'Paragraph', 113 | style: { 114 | fontSize: '14px', 115 | lineHeight: '24px', 116 | color: 'secondary' 117 | } 118 | }, 119 | 120 | 'caption': { 121 | name: 'Caption', 122 | style: { 123 | fontSize: '12px', 124 | lineHeight: '13px', 125 | color: 'hint' 126 | } 127 | }, 128 | } 129 | 130 | 131 | export default typography -------------------------------------------------------------------------------- /src/theme/ids.js: -------------------------------------------------------------------------------- 1 | export const LIGHT_THEME = 'light' 2 | export const DARK_THEME = 'dark' 3 | 4 | export const ACTIVE_THEME = DARK_THEME 5 | export const THEME_NAME = 'PESDK' 6 | 7 | // When the state prop is defined to render state fills at a lower opacity than borders 8 | export const STATE_FILL_OPACITY = 0.4 9 | 10 | // Define the border radii that will be crated as color symbols 11 | // Important: only the colors that have outline set to true in ./color get outline symbols 12 | export const BORDER_RADII = [ 13 | { 14 | name: 'S', 15 | value: 2 16 | }, 17 | { 18 | name: 'M', 19 | value: 4 20 | }, 21 | { 22 | name: 'L', 23 | value: 8 24 | }, 25 | { 26 | name: 'Max', 27 | value: 100 28 | } 29 | ] 30 | 31 | export const BORDER_WIDTH = 1 32 | 33 | export const GLOBAL_WIDTH = 720 34 | 35 | export const TYPOGRAPHY_ALIGNMENTS = ['left', 'center', 'right'] -------------------------------------------------------------------------------- /src/theme/theme-light.js: -------------------------------------------------------------------------------- 1 | /* @module */ 2 | /* 3 | * This file is part of PhotoEditorSDK. 4 | * 5 | * Copyright (C) 2016-2017 9elements GmbH 6 | * All rights reserved. 7 | * 8 | * Redistribution and use in source and binary forms, without 9 | * modification, are permitted provided that the following license agreement 10 | * is approved and a legal/financial contract was signed by the user. 11 | * The license agreement can be found under following link: 12 | * 13 | * https://www.photoeditorsdk.com/LICENSE.txt 14 | */ 15 | 16 | const fonts = { 17 | sourcesansproregular: { 18 | fontFamily: 'sourcesansproregular', 19 | fontWeight: '400', 20 | fontStyle: 'normal', 21 | src: 'fonts/SourceSansPro-Regular.woff' 22 | }, 23 | sourcesansprobold: { 24 | fontFamily: 'sourcesansprobold', 25 | fontWeight: 'bolder', 26 | fontStyle: 'normal', 27 | src: 'fonts/SourceSansPro-Bold.woff' 28 | }, 29 | sourcesansprosemibold: { 30 | fontFamily: 'sourcesansprosemibold', 31 | fontWeight: 'bold', 32 | fontStyle: 'normal', 33 | src: 'fonts/SourceSansPro-Semibold.woff' 34 | } 35 | } 36 | 37 | module.exports = { 38 | primaryColor: '#2D7BFF', 39 | primaryColorRGB: '45, 123, 255', 40 | backgroundColor: '#EEEEEE', 41 | backgroundColorRGB: '238, 238, 238', 42 | controlsKnobColor: 'white', 43 | controlsBackgroundColor: '#FAFAFA', 44 | controlsBackgroundColorRGB: '250, 250, 250', 45 | controlsLightBackgroundColor: '#FFFFFF', 46 | controlsOutlineColor: 'rgba(255, 255, 255, 0.6)', 47 | controlsSeparatorColor: '#E2E1E6', 48 | navigationBackgroundColor: '#FFFFFF', 49 | navigationBackgroundColorRGB: '255, 255, 255', 50 | textColor: '#1B2733', 51 | dimmedTextColor: '#464F56', 52 | dimmedTextColorRGB: '80, 79, 86', 53 | filterItemBackgroundColor: '#4b4b4c', 54 | secondaryControlsBackgroundColor: '#EEEEEE', 55 | secondaryControlsBackgroundColorRGB: '250, 250, 250', 56 | focusItemBackgroundColor: '#343437', 57 | sliderBackgroundColor: '#E2E1E6', 58 | darkSliderBackgroundColor: '#E2E1E6', 59 | sliderKnobColor: '#FFFFFF', 60 | sliderCircleKnobColor: '#c8c8d2', 61 | highlightColor: '#2675F8', 62 | highlightColorRGB: '38, 117, 253', 63 | darkHighlightColorRGB: '15, 47, 101', 64 | buttonBorderColor: '#E8E0E0', 65 | defaultShadow: '0 1px 2px 0 rgba(0, 0, 0, 0.20)', 66 | 67 | modalErrorColor: '#C23A3A', 68 | modalWarningColor: '#C18226', 69 | modalLoadingColor: '#2D7BFF', 70 | 71 | zIndex (layer) { 72 | const layers = ['background', 'controls', 'controlsOverlays', 'overlays', 'navigation'] 73 | const stride = 5 74 | return layers.indexOf(layer) * stride 75 | }, 76 | 77 | transitionDuration: 0.3, 78 | listItemSlideInDelay: 100, 79 | 80 | scrollbarGradientSize: 64, 81 | 82 | uppercaseBoldFontFamily: 'sourcesansprosemibold', 83 | uppercaseSemiBoldFontFamily: 'sourcesansprosemibold', 84 | 85 | regularFontFamily: 'sourcesansproregular', 86 | mediumFontFamily: 'sourcesansprosemibold', 87 | fonts 88 | } -------------------------------------------------------------------------------- /src/theme/ui/color.js: -------------------------------------------------------------------------------- 1 | import chroma from 'chroma-js' 2 | import { DARK_THEME, LIGHT_THEME } from '../ids' 3 | 4 | const UI_BASE_DARK = '#141415' 5 | const UI_BASE_LIGHT = '#FDFDFD' 6 | 7 | 8 | export default { 9 | // Text Colors are used for text throughout the application, no opacity may be applied 10 | text: { 11 | primary: { 12 | [DARK_THEME]: '#fffdfd', 13 | [LIGHT_THEME]: '#1B2733', 14 | }, 15 | 16 | secondary: { 17 | [DARK_THEME]: '#dedfe0', 18 | [LIGHT_THEME]: '#464F56', 19 | }, 20 | 21 | hint: { 22 | [DARK_THEME]: '#949a9e', 23 | [LIGHT_THEME]: '#768087', 24 | }, 25 | }, 26 | 27 | // Accent Colors are used for active states and call to action buttons 28 | accent: { 29 | primary: { 30 | [DARK_THEME]: '#1E47FB', 31 | [LIGHT_THEME]: '#1E47FB', 32 | outline: true 33 | }, 34 | 35 | danger: { 36 | [DARK_THEME]: '#ff3d80', 37 | [LIGHT_THEME]: '#ff3d80', 38 | outline: true 39 | }, 40 | }, 41 | 42 | // These colors are used throughout the UI for backgrounds 43 | background: { 44 | // Used to clearly separate two ui components or make edges appear harder. 45 | standard: { 46 | [DARK_THEME]: chroma(UI_BASE_DARK).hex(), 47 | [LIGHT_THEME]: chroma(UI_BASE_LIGHT).brighten(1).hex(), 48 | }, 49 | 50 | shadow: { 51 | [DARK_THEME]: chroma(UI_BASE_DARK).hex(), 52 | [LIGHT_THEME]: chroma(UI_BASE_LIGHT).brighten(1).hex(), 53 | } 54 | }, 55 | 56 | interface: { 57 | // Used to clearly separate two ui components or make edges appear harder. 58 | separator: { 59 | [DARK_THEME]: chroma(UI_BASE_DARK).brighten(0.5).hex(), 60 | [LIGHT_THEME]: chroma(UI_BASE_LIGHT).darken(0.4).hex(), 61 | }, 62 | } 63 | } -------------------------------------------------------------------------------- /src/theme/ui/index.js: -------------------------------------------------------------------------------- 1 | import color from './color' 2 | import typography from './typography' 3 | import spacing from './spacing' 4 | import shadow from './shadow' 5 | 6 | export default { 7 | color, 8 | typography, 9 | size: { 10 | width: 760 11 | }, 12 | spacing, 13 | } 14 | -------------------------------------------------------------------------------- /src/theme/ui/shadow.js: -------------------------------------------------------------------------------- 1 | import { LIGHT_THEME, DARK_THEME, ACTIVE_THEME } from '../ids' 2 | const themes = [LIGHT_THEME, DARK_THEME] 3 | 4 | const shadowKeyUmbraOpacity = { 5 | [LIGHT_THEME]: 0.2, 6 | [DARK_THEME]: 0.3 7 | } 8 | 9 | const shadowKeyPenumbraOpacity = { 10 | [LIGHT_THEME]: 0.14, 11 | [DARK_THEME]: 0.2 12 | } 13 | 14 | const shadowAmbientShadowOpacity = { 15 | [LIGHT_THEME]: 0.12, 16 | [DARK_THEME]: 0.18 17 | } 18 | 19 | const shadows = { 20 | 0: [ 21 | [0, 0, 0, 0], // KeyUmbra 22 | [0, 0, 0, 0], // PenUmbra 23 | [0, 0, 0, 0] // Ambient 24 | ], 25 | 1: [ 26 | [0, 1, 3, 0], 27 | [0, 1, 1, 0], 28 | [0, 2, 1, -1] 29 | ], 30 | 2: [ 31 | [0, 1, 5, 0], 32 | [0, 2, 2, 0], 33 | [0, 3, 1, -2] 34 | ], 35 | 3: [ 36 | [0, 1, 8, 0], 37 | [0, 3, 4, 0], 38 | [0, 3, 3, -2] 39 | ], 40 | 4: [ 41 | [0, 2, 4, -1], 42 | [0, 4, 5, 0], 43 | [0, 1, 10, 0] 44 | ], 45 | 6: [ 46 | [0, 3, 5, -1], 47 | [0, 6, 10, 0], 48 | [0, 1, 16, 0] 49 | ] 50 | } 51 | 52 | const createSketchAppShadowStyles = (shadows = shadows) => { 53 | const shadowStyles = {} 54 | 55 | const shadowStyle = ({xOffset, yOffset, spread, opacity, radius, shadowColor = 'black'}) => { 56 | return { 57 | shadowColor, 58 | shadowOffset: { width: xOffset, height: yOffset }, 59 | shadowSpread: spread, 60 | shadowOpacity: opacity, 61 | shadowRadius: radius 62 | } 63 | } 64 | 65 | for (let k in shadows) { 66 | shadowStyles[k] = {} 67 | 68 | const currentShadowStyles = shadows[k] 69 | const key = currentShadowStyles[0] 70 | const pen = currentShadowStyles[1] 71 | const amb = currentShadowStyles[2] 72 | 73 | themes.map(theme => { 74 | shadowStyles[k][theme] = [ 75 | shadowStyle({ 76 | xOffset: key[0], 77 | yOffset: key[1], 78 | radius: key[2], 79 | spread: key[3], 80 | opacity: shadowKeyUmbraOpacity[theme], 81 | }), 82 | shadowStyle({ 83 | xOffset: pen[0], 84 | yOffset: pen[1], 85 | radius: pen[2], 86 | spread: pen[3], 87 | opacity: shadowKeyPenumbraOpacity[theme], 88 | }), 89 | shadowStyle({ 90 | xOffset: amb[0], 91 | yOffset: amb[1], 92 | radius: amb[2], 93 | spread: amb[3], 94 | opacity: shadowAmbientShadowOpacity[theme], 95 | }) 96 | ] 97 | }) 98 | } 99 | 100 | return shadowStyles 101 | } 102 | 103 | export default createSketchAppShadowStyles(shadows) -------------------------------------------------------------------------------- /src/theme/ui/spacing.js: -------------------------------------------------------------------------------- 1 | const spacing = { 2 | xxs: 4, 3 | xs: 8, 4 | s: 16, 5 | m: 24, 6 | l: 48, 7 | xl: 64, 8 | xxl: 128 9 | } 10 | 11 | export default spacing -------------------------------------------------------------------------------- /src/theme/ui/typography.js: -------------------------------------------------------------------------------- 1 | import { css } from 'styled-components' 2 | import uiColor from './color' 3 | import { LIGHT_THEME, DARK_THEME } from '../ids' 4 | 5 | export const fontFamily = 'IBM Plex Sans Condensed' 6 | 7 | /** 8 | * Generate the base css for each typography styles. 9 | * 10 | * @param {String} align 11 | * @return {Function} 12 | */ 13 | 14 | export const baseCSS = ( 15 | align = 'left' 16 | ) => css` 17 | text-align: ${align}; 18 | color: ${uiColor.text.primary[LIGHT_THEME]}; 19 | font-family: ${fontFamily}; 20 | font-size: 16px; 21 | line-height: 24px; 22 | letter-spacing: 0; 23 | display: inline; 24 | ` 25 | 26 | /** 27 | * Transforms that will be generated as symbols. 28 | * Each key needs to be added to the baseCSS function as a parameter and the corresponding css. 29 | * The generated symbols will NOT appear in the stylesheet. 30 | */ 31 | 32 | export const transforms = { 33 | align: [ 34 | 'left', 35 | 'center', 36 | 'right' 37 | ] 38 | } 39 | 40 | /** 41 | * Generate the tag css for the given tag. 42 | * 43 | * @param {String} tag 44 | * @param {String} themeID 45 | * @return {Function} 46 | */ 47 | 48 | export const tagCSS = ({type = 'paragraph', themeID = 'light'}) => { 49 | return generateCSS({...typography[type].style, themeID}) 50 | } 51 | 52 | 53 | const generateCSS = ( 54 | { 55 | fontSize = '14px', 56 | lineHeight = '24px', 57 | fontFamily = 'IBM Plex Sans Condensed', 58 | color = 'primary', 59 | marginBottom = '0px', 60 | themeID 61 | } 62 | ) => { 63 | return css` 64 | font-size: ${fontSize}; 65 | font-family: ${fontFamily}; 66 | line-height: ${lineHeight}; 67 | color: ${uiColor.text[color][themeID]}; 68 | margin-bottom: ${marginBottom}; 69 | ` 70 | } 71 | 72 | const typography = { 73 | 74 | 'h1': { 75 | name: 'Header 1', 76 | style: { 77 | fontSize: '48px', 78 | lineHeight: '48px', 79 | color: 'primary' 80 | } 81 | }, 82 | 83 | 'h2': { 84 | name: 'Header 2', 85 | style: { 86 | fontSize: '28px', 87 | lineHeight: '34px', 88 | color: 'primary', 89 | marginBottom: '32px' 90 | } 91 | }, 92 | 93 | 'h3': { 94 | name: 'Header 3', 95 | style: { 96 | fontSize: '20px', 97 | lineHeight: '32px', 98 | color: 'primary', 99 | marginBottom: '32px' 100 | } 101 | }, 102 | 103 | 'h4': { 104 | name: 'Header 4', 105 | style: { 106 | fontSize: '26px', 107 | lineHeight: '34px', 108 | color: 'secondary' 109 | } 110 | }, 111 | 112 | 'paragraph': { 113 | name: 'Paragraph', 114 | style: { 115 | fontSize: '16px', 116 | lineHeight: '24px', 117 | color: 'secondary' 118 | } 119 | }, 120 | 121 | 'caption': { 122 | name: 'Caption', 123 | style: { 124 | fontSize: '13px', 125 | lineHeight: '13px', 126 | color: 'hint' 127 | } 128 | }, 129 | } 130 | 131 | 132 | export default typography -------------------------------------------------------------------------------- /src/theme/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgly/ui-design-system-generator/14f33bcca0e36ccc9fe757691cba66fe0b9468e7/src/theme/utils.js -------------------------------------------------------------------------------- /src/util/index.js: -------------------------------------------------------------------------------- 1 | import { makeSymbol } from 'react-sketchapp' 2 | import { ACTIVE_THEME, THEME_NAME } from '../theme/ids' 3 | 4 | /** 5 | * Generate a Symbol and add it to the Symbols page. 6 | * If the theme is the active theme, overt the theme name. 7 | * @param {Function} component 8 | * @param {[String]} path 9 | * @param {String} themeID 10 | * @return {Function} 11 | */ 12 | 13 | export const generateSymbol = ( 14 | component, 15 | path, 16 | themeID 17 | ) => { 18 | // TODO: Make editable 19 | const withSpace = false 20 | const withCapitalize= true 21 | const withMultipleThemes = true 22 | 23 | const pathSeparation = withSpace ? ' / ' : '/' 24 | 25 | // Add the theme name and theme ID at the start of the symbol name 26 | // e.g ProjectName/Dark/Color/Text/Primary 27 | let pathArray = [themeID, ...path] 28 | 29 | // UpperCase the first letter in each path string 30 | if (withCapitalize) pathArray = pathArray.map(e => e.replace(/\b\w/g, firstLetter => firstLetter.toUpperCase())) 31 | 32 | // Create the symbol name 33 | const pathString = pathArray.join().replace(/[,]/g, pathSeparation) 34 | 35 | // If the symbol equals the active theme, create a symbol and remove the theme specific path section 36 | if (themeID === ACTIVE_THEME) { 37 | makeSymbol( 38 | component, 39 | pathString 40 | .replace( 41 | `${themeID.replace(/\b\w/g, firstLetter => firstLetter.toUpperCase())}${pathSeparation}` 42 | , '' 43 | ) 44 | ) 45 | } 46 | 47 | return component 48 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@skpm/builder@^0.2.0": 6 | version "0.2.12" 7 | resolved "https://registry.yarnpkg.com/@skpm/builder/-/builder-0.2.12.tgz#aceb92273c7c91e4bc8704bc22610418ea1444d5" 8 | dependencies: 9 | "@skpm/file-loader" "^1.0.0" 10 | "@skpm/utils" "^0.1.5" 11 | babel-core "^6.24.1" 12 | babel-loader "^7.1.0" 13 | babel-preset-airbnb "^2.4.0" 14 | chalk "^1.1.3" 15 | glob "^7.1.2" 16 | mkdirp "^0.5.1" 17 | parse-author "2.0.0" 18 | run-sketch-plugin "^1.0.0" 19 | semver "^5.3.0" 20 | sketch-polyfill-console "^0.5.2" 21 | sketch-polyfill-fetch "^0.1.4" 22 | sketch-polyfill-setinterval "^0.1.0" 23 | sketch-polyfill-settimeout "^0.2.0" 24 | uglifyjs-webpack-plugin "^1.0.1" 25 | webpack "^3.0.0" 26 | webpack-sources "^1.0.1" 27 | yargs "^9.0.1" 28 | yesno "^0.0.1" 29 | 30 | "@skpm/file-loader@^1.0.0": 31 | version "1.1.5" 32 | resolved "https://registry.yarnpkg.com/@skpm/file-loader/-/file-loader-1.1.5.tgz#4a575e3788f1203111b80bd91c72ebe385d220a7" 33 | dependencies: 34 | loader-utils "^1.0.2" 35 | schema-utils "^0.3.0" 36 | 37 | "@skpm/sketch-debugger@^0.4.1": 38 | version "0.4.3" 39 | resolved "https://registry.yarnpkg.com/@skpm/sketch-debugger/-/sketch-debugger-0.4.3.tgz#260cd563b62a3b4f5701173dd4ebd996ac8eab63" 40 | dependencies: 41 | sketch-module-web-view "^0.2.6" 42 | 43 | "@skpm/sketchapp-json-flow-types@^0.2.1": 44 | version "0.2.1" 45 | resolved "https://registry.yarnpkg.com/@skpm/sketchapp-json-flow-types/-/sketchapp-json-flow-types-0.2.1.tgz#95435d8a6cec4b81cd20672f7e162cded7922f94" 46 | 47 | "@skpm/utils@^0.1.5": 48 | version "0.1.6" 49 | resolved "https://registry.yarnpkg.com/@skpm/utils/-/utils-0.1.6.tgz#757a9657c68e13f51bee88e117fb679d621f891f" 50 | dependencies: 51 | js-yaml "^3.10.0" 52 | object-assign "*" 53 | 54 | abbrev@1: 55 | version "1.1.1" 56 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 57 | 58 | acorn-dynamic-import@^2.0.0: 59 | version "2.0.2" 60 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 61 | dependencies: 62 | acorn "^4.0.3" 63 | 64 | acorn@^4.0.3: 65 | version "4.0.13" 66 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 67 | 68 | acorn@^5.0.0: 69 | version "5.5.3" 70 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9" 71 | 72 | ajv-keywords@^3.1.0: 73 | version "3.1.0" 74 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.1.0.tgz#ac2b27939c543e95d2c06e7f7f5c27be4aa543be" 75 | 76 | ajv@^4.9.1: 77 | version "4.11.8" 78 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 79 | dependencies: 80 | co "^4.6.0" 81 | json-stable-stringify "^1.0.1" 82 | 83 | ajv@^5.0.0, ajv@^5.1.0: 84 | version "5.5.2" 85 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 86 | dependencies: 87 | co "^4.6.0" 88 | fast-deep-equal "^1.0.0" 89 | fast-json-stable-stringify "^2.0.0" 90 | json-schema-traverse "^0.3.0" 91 | 92 | ajv@^6.1.0: 93 | version "6.4.0" 94 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.4.0.tgz#d3aff78e9277549771daf0164cff48482b754fc6" 95 | dependencies: 96 | fast-deep-equal "^1.0.0" 97 | fast-json-stable-stringify "^2.0.0" 98 | json-schema-traverse "^0.3.0" 99 | uri-js "^3.0.2" 100 | 101 | align-text@^0.1.1, align-text@^0.1.3: 102 | version "0.1.4" 103 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 104 | dependencies: 105 | kind-of "^3.0.2" 106 | longest "^1.0.1" 107 | repeat-string "^1.5.2" 108 | 109 | animated@^0.1.5: 110 | version "0.1.5" 111 | resolved "https://registry.yarnpkg.com/animated/-/animated-0.1.5.tgz#83df8dc443d57abab7b0bb04818b0b655b31c9b9" 112 | dependencies: 113 | invariant "^2.2.0" 114 | normalize-css-color "^1.0.1" 115 | 116 | animated@^0.2.0: 117 | version "0.2.2" 118 | resolved "https://registry.yarnpkg.com/animated/-/animated-0.2.2.tgz#04af7846ad0b9b8d1f0472cc53d82b8efeb4a751" 119 | dependencies: 120 | invariant "^2.2.0" 121 | normalize-css-color "^1.0.1" 122 | 123 | ansi-regex@^2.0.0: 124 | version "2.1.1" 125 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 126 | 127 | ansi-regex@^3.0.0: 128 | version "3.0.0" 129 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 130 | 131 | ansi-styles@^2.2.1: 132 | version "2.2.1" 133 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 134 | 135 | anymatch@^2.0.0: 136 | version "2.0.0" 137 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 138 | dependencies: 139 | micromatch "^3.1.4" 140 | normalize-path "^2.1.1" 141 | 142 | aproba@^1.0.3, aproba@^1.1.1: 143 | version "1.2.0" 144 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 145 | 146 | are-we-there-yet@~1.1.2: 147 | version "1.1.4" 148 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 149 | dependencies: 150 | delegates "^1.0.0" 151 | readable-stream "^2.0.6" 152 | 153 | argparse@^1.0.7: 154 | version "1.0.10" 155 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 156 | dependencies: 157 | sprintf-js "~1.0.2" 158 | 159 | arr-diff@^4.0.0: 160 | version "4.0.0" 161 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 162 | 163 | arr-flatten@^1.1.0: 164 | version "1.1.0" 165 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 166 | 167 | arr-union@^3.1.0: 168 | version "3.1.0" 169 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 170 | 171 | array-find-index@^1.0.2: 172 | version "1.0.2" 173 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 174 | 175 | array-unique@^0.3.2: 176 | version "0.3.2" 177 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 178 | 179 | asap@^2.0.5, asap@~2.0.3: 180 | version "2.0.6" 181 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 182 | 183 | asn1.js@^4.0.0: 184 | version "4.10.1" 185 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" 186 | dependencies: 187 | bn.js "^4.0.0" 188 | inherits "^2.0.1" 189 | minimalistic-assert "^1.0.0" 190 | 191 | asn1@~0.2.3: 192 | version "0.2.3" 193 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 194 | 195 | assert-plus@1.0.0, assert-plus@^1.0.0: 196 | version "1.0.0" 197 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 198 | 199 | assert-plus@^0.2.0: 200 | version "0.2.0" 201 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 202 | 203 | assert@^1.1.1: 204 | version "1.4.1" 205 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 206 | dependencies: 207 | util "0.10.3" 208 | 209 | assign-symbols@^1.0.0: 210 | version "1.0.0" 211 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 212 | 213 | async-each@^1.0.0: 214 | version "1.0.1" 215 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 216 | 217 | async@^2.1.2: 218 | version "2.6.0" 219 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 220 | dependencies: 221 | lodash "^4.14.0" 222 | 223 | asynckit@^0.4.0: 224 | version "0.4.0" 225 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 226 | 227 | atob@^2.0.0: 228 | version "2.1.0" 229 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.0.tgz#ab2b150e51d7b122b9efc8d7340c06b6c41076bc" 230 | 231 | author-regex@^1.0.0: 232 | version "1.0.0" 233 | resolved "https://registry.yarnpkg.com/author-regex/-/author-regex-1.0.0.tgz#d08885be6b9bbf9439fe087c76287245f0a81450" 234 | 235 | autogypi@^0.2.2: 236 | version "0.2.2" 237 | resolved "https://registry.yarnpkg.com/autogypi/-/autogypi-0.2.2.tgz#258bab5f7857755b09beac6a641fea130ff4622d" 238 | dependencies: 239 | bluebird "^3.4.0" 240 | commander "~2.9.0" 241 | resolve "~1.1.7" 242 | 243 | aws-sign2@~0.6.0: 244 | version "0.6.0" 245 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 246 | 247 | aws-sign2@~0.7.0: 248 | version "0.7.0" 249 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 250 | 251 | aws4@^1.2.1, aws4@^1.6.0: 252 | version "1.7.0" 253 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289" 254 | 255 | babel-code-frame@^6.26.0: 256 | version "6.26.0" 257 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 258 | dependencies: 259 | chalk "^1.1.3" 260 | esutils "^2.0.2" 261 | js-tokens "^3.0.2" 262 | 263 | babel-core@^6.24.1, babel-core@^6.26.0: 264 | version "6.26.0" 265 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 266 | dependencies: 267 | babel-code-frame "^6.26.0" 268 | babel-generator "^6.26.0" 269 | babel-helpers "^6.24.1" 270 | babel-messages "^6.23.0" 271 | babel-register "^6.26.0" 272 | babel-runtime "^6.26.0" 273 | babel-template "^6.26.0" 274 | babel-traverse "^6.26.0" 275 | babel-types "^6.26.0" 276 | babylon "^6.18.0" 277 | convert-source-map "^1.5.0" 278 | debug "^2.6.8" 279 | json5 "^0.5.1" 280 | lodash "^4.17.4" 281 | minimatch "^3.0.4" 282 | path-is-absolute "^1.0.1" 283 | private "^0.1.7" 284 | slash "^1.0.0" 285 | source-map "^0.5.6" 286 | 287 | babel-generator@^6.26.0: 288 | version "6.26.1" 289 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 290 | dependencies: 291 | babel-messages "^6.23.0" 292 | babel-runtime "^6.26.0" 293 | babel-types "^6.26.0" 294 | detect-indent "^4.0.0" 295 | jsesc "^1.3.0" 296 | lodash "^4.17.4" 297 | source-map "^0.5.7" 298 | trim-right "^1.0.1" 299 | 300 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 301 | version "6.24.1" 302 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 303 | dependencies: 304 | babel-helper-explode-assignable-expression "^6.24.1" 305 | babel-runtime "^6.22.0" 306 | babel-types "^6.24.1" 307 | 308 | babel-helper-builder-react-jsx@^6.24.1: 309 | version "6.26.0" 310 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 311 | dependencies: 312 | babel-runtime "^6.26.0" 313 | babel-types "^6.26.0" 314 | esutils "^2.0.2" 315 | 316 | babel-helper-call-delegate@^6.24.1: 317 | version "6.24.1" 318 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 319 | dependencies: 320 | babel-helper-hoist-variables "^6.24.1" 321 | babel-runtime "^6.22.0" 322 | babel-traverse "^6.24.1" 323 | babel-types "^6.24.1" 324 | 325 | babel-helper-define-map@^6.24.1: 326 | version "6.26.0" 327 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 328 | dependencies: 329 | babel-helper-function-name "^6.24.1" 330 | babel-runtime "^6.26.0" 331 | babel-types "^6.26.0" 332 | lodash "^4.17.4" 333 | 334 | babel-helper-explode-assignable-expression@^6.24.1: 335 | version "6.24.1" 336 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 337 | dependencies: 338 | babel-runtime "^6.22.0" 339 | babel-traverse "^6.24.1" 340 | babel-types "^6.24.1" 341 | 342 | babel-helper-function-name@^6.24.1: 343 | version "6.24.1" 344 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 345 | dependencies: 346 | babel-helper-get-function-arity "^6.24.1" 347 | babel-runtime "^6.22.0" 348 | babel-template "^6.24.1" 349 | babel-traverse "^6.24.1" 350 | babel-types "^6.24.1" 351 | 352 | babel-helper-get-function-arity@^6.24.1: 353 | version "6.24.1" 354 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 355 | dependencies: 356 | babel-runtime "^6.22.0" 357 | babel-types "^6.24.1" 358 | 359 | babel-helper-hoist-variables@^6.24.1: 360 | version "6.24.1" 361 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 362 | dependencies: 363 | babel-runtime "^6.22.0" 364 | babel-types "^6.24.1" 365 | 366 | babel-helper-optimise-call-expression@^6.24.1: 367 | version "6.24.1" 368 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 369 | dependencies: 370 | babel-runtime "^6.22.0" 371 | babel-types "^6.24.1" 372 | 373 | babel-helper-regex@^6.24.1: 374 | version "6.26.0" 375 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 376 | dependencies: 377 | babel-runtime "^6.26.0" 378 | babel-types "^6.26.0" 379 | lodash "^4.17.4" 380 | 381 | babel-helper-remap-async-to-generator@^6.24.1: 382 | version "6.24.1" 383 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 384 | dependencies: 385 | babel-helper-function-name "^6.24.1" 386 | babel-runtime "^6.22.0" 387 | babel-template "^6.24.1" 388 | babel-traverse "^6.24.1" 389 | babel-types "^6.24.1" 390 | 391 | babel-helper-replace-supers@^6.24.1: 392 | version "6.24.1" 393 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 394 | dependencies: 395 | babel-helper-optimise-call-expression "^6.24.1" 396 | babel-messages "^6.23.0" 397 | babel-runtime "^6.22.0" 398 | babel-template "^6.24.1" 399 | babel-traverse "^6.24.1" 400 | babel-types "^6.24.1" 401 | 402 | babel-helpers@^6.24.1: 403 | version "6.24.1" 404 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 405 | dependencies: 406 | babel-runtime "^6.22.0" 407 | babel-template "^6.24.1" 408 | 409 | babel-loader@^7.1.0: 410 | version "7.1.4" 411 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.4.tgz#e3463938bd4e6d55d1c174c5485d406a188ed015" 412 | dependencies: 413 | find-cache-dir "^1.0.0" 414 | loader-utils "^1.0.2" 415 | mkdirp "^0.5.1" 416 | 417 | babel-messages@^6.23.0: 418 | version "6.23.0" 419 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 420 | dependencies: 421 | babel-runtime "^6.22.0" 422 | 423 | babel-plugin-check-es2015-constants@^6.22.0: 424 | version "6.22.0" 425 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 426 | dependencies: 427 | babel-runtime "^6.22.0" 428 | 429 | babel-plugin-syntax-async-functions@^6.8.0: 430 | version "6.13.0" 431 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 432 | 433 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 434 | version "6.13.0" 435 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 436 | 437 | babel-plugin-syntax-flow@^6.18.0: 438 | version "6.18.0" 439 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 440 | 441 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 442 | version "6.18.0" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 444 | 445 | babel-plugin-syntax-object-rest-spread@^6.8.0: 446 | version "6.13.0" 447 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 448 | 449 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 450 | version "6.22.0" 451 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 452 | 453 | babel-plugin-transform-async-to-generator@^6.22.0: 454 | version "6.24.1" 455 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 456 | dependencies: 457 | babel-helper-remap-async-to-generator "^6.24.1" 458 | babel-plugin-syntax-async-functions "^6.8.0" 459 | babel-runtime "^6.22.0" 460 | 461 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 462 | version "6.22.0" 463 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 464 | dependencies: 465 | babel-runtime "^6.22.0" 466 | 467 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 468 | version "6.22.0" 469 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 470 | dependencies: 471 | babel-runtime "^6.22.0" 472 | 473 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 474 | version "6.26.0" 475 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 476 | dependencies: 477 | babel-runtime "^6.26.0" 478 | babel-template "^6.26.0" 479 | babel-traverse "^6.26.0" 480 | babel-types "^6.26.0" 481 | lodash "^4.17.4" 482 | 483 | babel-plugin-transform-es2015-classes@^6.23.0: 484 | version "6.24.1" 485 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 486 | dependencies: 487 | babel-helper-define-map "^6.24.1" 488 | babel-helper-function-name "^6.24.1" 489 | babel-helper-optimise-call-expression "^6.24.1" 490 | babel-helper-replace-supers "^6.24.1" 491 | babel-messages "^6.23.0" 492 | babel-runtime "^6.22.0" 493 | babel-template "^6.24.1" 494 | babel-traverse "^6.24.1" 495 | babel-types "^6.24.1" 496 | 497 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 498 | version "6.24.1" 499 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 500 | dependencies: 501 | babel-runtime "^6.22.0" 502 | babel-template "^6.24.1" 503 | 504 | babel-plugin-transform-es2015-destructuring@^6.23.0: 505 | version "6.23.0" 506 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 507 | dependencies: 508 | babel-runtime "^6.22.0" 509 | 510 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 511 | version "6.24.1" 512 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 513 | dependencies: 514 | babel-runtime "^6.22.0" 515 | babel-types "^6.24.1" 516 | 517 | babel-plugin-transform-es2015-for-of@^6.23.0: 518 | version "6.23.0" 519 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 520 | dependencies: 521 | babel-runtime "^6.22.0" 522 | 523 | babel-plugin-transform-es2015-function-name@^6.22.0: 524 | version "6.24.1" 525 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 526 | dependencies: 527 | babel-helper-function-name "^6.24.1" 528 | babel-runtime "^6.22.0" 529 | babel-types "^6.24.1" 530 | 531 | babel-plugin-transform-es2015-literals@^6.22.0: 532 | version "6.22.0" 533 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 534 | dependencies: 535 | babel-runtime "^6.22.0" 536 | 537 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 538 | version "6.24.1" 539 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 540 | dependencies: 541 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 542 | babel-runtime "^6.22.0" 543 | babel-template "^6.24.1" 544 | 545 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 546 | version "6.26.0" 547 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 548 | dependencies: 549 | babel-plugin-transform-strict-mode "^6.24.1" 550 | babel-runtime "^6.26.0" 551 | babel-template "^6.26.0" 552 | babel-types "^6.26.0" 553 | 554 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 555 | version "6.24.1" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 557 | dependencies: 558 | babel-helper-hoist-variables "^6.24.1" 559 | babel-runtime "^6.22.0" 560 | babel-template "^6.24.1" 561 | 562 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 563 | version "6.24.1" 564 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 565 | dependencies: 566 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 567 | babel-runtime "^6.22.0" 568 | babel-template "^6.24.1" 569 | 570 | babel-plugin-transform-es2015-object-super@^6.22.0: 571 | version "6.24.1" 572 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 573 | dependencies: 574 | babel-helper-replace-supers "^6.24.1" 575 | babel-runtime "^6.22.0" 576 | 577 | babel-plugin-transform-es2015-parameters@^6.23.0: 578 | version "6.24.1" 579 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 580 | dependencies: 581 | babel-helper-call-delegate "^6.24.1" 582 | babel-helper-get-function-arity "^6.24.1" 583 | babel-runtime "^6.22.0" 584 | babel-template "^6.24.1" 585 | babel-traverse "^6.24.1" 586 | babel-types "^6.24.1" 587 | 588 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 589 | version "6.24.1" 590 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 591 | dependencies: 592 | babel-runtime "^6.22.0" 593 | babel-types "^6.24.1" 594 | 595 | babel-plugin-transform-es2015-spread@^6.22.0: 596 | version "6.22.0" 597 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 598 | dependencies: 599 | babel-runtime "^6.22.0" 600 | 601 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 602 | version "6.24.1" 603 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 604 | dependencies: 605 | babel-helper-regex "^6.24.1" 606 | babel-runtime "^6.22.0" 607 | babel-types "^6.24.1" 608 | 609 | babel-plugin-transform-es2015-template-literals@^6.22.0: 610 | version "6.22.0" 611 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 612 | dependencies: 613 | babel-runtime "^6.22.0" 614 | 615 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 616 | version "6.23.0" 617 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 618 | dependencies: 619 | babel-runtime "^6.22.0" 620 | 621 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 622 | version "6.24.1" 623 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 624 | dependencies: 625 | babel-helper-regex "^6.24.1" 626 | babel-runtime "^6.22.0" 627 | regexpu-core "^2.0.0" 628 | 629 | babel-plugin-transform-es3-member-expression-literals@^6.22.0: 630 | version "6.22.0" 631 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es3-member-expression-literals/-/babel-plugin-transform-es3-member-expression-literals-6.22.0.tgz#733d3444f3ecc41bef8ed1a6a4e09657b8969ebb" 632 | dependencies: 633 | babel-runtime "^6.22.0" 634 | 635 | babel-plugin-transform-es3-property-literals@^6.22.0: 636 | version "6.22.0" 637 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es3-property-literals/-/babel-plugin-transform-es3-property-literals-6.22.0.tgz#b2078d5842e22abf40f73e8cde9cd3711abd5758" 638 | dependencies: 639 | babel-runtime "^6.22.0" 640 | 641 | babel-plugin-transform-exponentiation-operator@^6.22.0, babel-plugin-transform-exponentiation-operator@^6.24.1: 642 | version "6.24.1" 643 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 644 | dependencies: 645 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 646 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 647 | babel-runtime "^6.22.0" 648 | 649 | babel-plugin-transform-flow-strip-types@^6.22.0: 650 | version "6.22.0" 651 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 652 | dependencies: 653 | babel-plugin-syntax-flow "^6.18.0" 654 | babel-runtime "^6.22.0" 655 | 656 | babel-plugin-transform-jscript@^6.22.0: 657 | version "6.22.0" 658 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-jscript/-/babel-plugin-transform-jscript-6.22.0.tgz#6e8af12b7aba49e0a809152616ac05690b3352dc" 659 | dependencies: 660 | babel-runtime "^6.22.0" 661 | 662 | babel-plugin-transform-object-rest-spread@^6.23.0: 663 | version "6.26.0" 664 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 665 | dependencies: 666 | babel-plugin-syntax-object-rest-spread "^6.8.0" 667 | babel-runtime "^6.26.0" 668 | 669 | babel-plugin-transform-react-display-name@^6.23.0: 670 | version "6.25.0" 671 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 672 | dependencies: 673 | babel-runtime "^6.22.0" 674 | 675 | babel-plugin-transform-react-jsx-self@^6.22.0: 676 | version "6.22.0" 677 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 678 | dependencies: 679 | babel-plugin-syntax-jsx "^6.8.0" 680 | babel-runtime "^6.22.0" 681 | 682 | babel-plugin-transform-react-jsx-source@^6.22.0: 683 | version "6.22.0" 684 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 685 | dependencies: 686 | babel-plugin-syntax-jsx "^6.8.0" 687 | babel-runtime "^6.22.0" 688 | 689 | babel-plugin-transform-react-jsx@^6.24.1: 690 | version "6.24.1" 691 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 692 | dependencies: 693 | babel-helper-builder-react-jsx "^6.24.1" 694 | babel-plugin-syntax-jsx "^6.8.0" 695 | babel-runtime "^6.22.0" 696 | 697 | babel-plugin-transform-regenerator@^6.22.0: 698 | version "6.26.0" 699 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 700 | dependencies: 701 | regenerator-transform "^0.10.0" 702 | 703 | babel-plugin-transform-strict-mode@^6.24.1: 704 | version "6.24.1" 705 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 706 | dependencies: 707 | babel-runtime "^6.22.0" 708 | babel-types "^6.24.1" 709 | 710 | babel-preset-airbnb@^2.4.0: 711 | version "2.4.0" 712 | resolved "https://registry.yarnpkg.com/babel-preset-airbnb/-/babel-preset-airbnb-2.4.0.tgz#1b1476f3fafd3c7abc22fa97f932f9e021301450" 713 | dependencies: 714 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 715 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 716 | babel-plugin-transform-es2015-template-literals "^6.22.0" 717 | babel-plugin-transform-es3-member-expression-literals "^6.22.0" 718 | babel-plugin-transform-es3-property-literals "^6.22.0" 719 | babel-plugin-transform-exponentiation-operator "^6.24.1" 720 | babel-plugin-transform-jscript "^6.22.0" 721 | babel-plugin-transform-object-rest-spread "^6.23.0" 722 | babel-preset-env "^1.5.2" 723 | babel-preset-react "^6.24.1" 724 | object.assign "^4.0.4" 725 | 726 | babel-preset-env@^1.5.2: 727 | version "1.6.1" 728 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 729 | dependencies: 730 | babel-plugin-check-es2015-constants "^6.22.0" 731 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 732 | babel-plugin-transform-async-to-generator "^6.22.0" 733 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 734 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 735 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 736 | babel-plugin-transform-es2015-classes "^6.23.0" 737 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 738 | babel-plugin-transform-es2015-destructuring "^6.23.0" 739 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 740 | babel-plugin-transform-es2015-for-of "^6.23.0" 741 | babel-plugin-transform-es2015-function-name "^6.22.0" 742 | babel-plugin-transform-es2015-literals "^6.22.0" 743 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 744 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 745 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 746 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 747 | babel-plugin-transform-es2015-object-super "^6.22.0" 748 | babel-plugin-transform-es2015-parameters "^6.23.0" 749 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 750 | babel-plugin-transform-es2015-spread "^6.22.0" 751 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 752 | babel-plugin-transform-es2015-template-literals "^6.22.0" 753 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 754 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 755 | babel-plugin-transform-exponentiation-operator "^6.22.0" 756 | babel-plugin-transform-regenerator "^6.22.0" 757 | browserslist "^2.1.2" 758 | invariant "^2.2.2" 759 | semver "^5.3.0" 760 | 761 | babel-preset-flow@^6.23.0: 762 | version "6.23.0" 763 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 764 | dependencies: 765 | babel-plugin-transform-flow-strip-types "^6.22.0" 766 | 767 | babel-preset-react@^6.24.1: 768 | version "6.24.1" 769 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 770 | dependencies: 771 | babel-plugin-syntax-jsx "^6.3.13" 772 | babel-plugin-transform-react-display-name "^6.23.0" 773 | babel-plugin-transform-react-jsx "^6.24.1" 774 | babel-plugin-transform-react-jsx-self "^6.22.0" 775 | babel-plugin-transform-react-jsx-source "^6.22.0" 776 | babel-preset-flow "^6.23.0" 777 | 778 | babel-register@^6.26.0: 779 | version "6.26.0" 780 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 781 | dependencies: 782 | babel-core "^6.26.0" 783 | babel-runtime "^6.26.0" 784 | core-js "^2.5.0" 785 | home-or-tmp "^2.0.0" 786 | lodash "^4.17.4" 787 | mkdirp "^0.5.1" 788 | source-map-support "^0.4.15" 789 | 790 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 791 | version "6.26.0" 792 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 793 | dependencies: 794 | core-js "^2.4.0" 795 | regenerator-runtime "^0.11.0" 796 | 797 | babel-template@^6.24.1, babel-template@^6.26.0: 798 | version "6.26.0" 799 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 800 | dependencies: 801 | babel-runtime "^6.26.0" 802 | babel-traverse "^6.26.0" 803 | babel-types "^6.26.0" 804 | babylon "^6.18.0" 805 | lodash "^4.17.4" 806 | 807 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 808 | version "6.26.0" 809 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 810 | dependencies: 811 | babel-code-frame "^6.26.0" 812 | babel-messages "^6.23.0" 813 | babel-runtime "^6.26.0" 814 | babel-types "^6.26.0" 815 | babylon "^6.18.0" 816 | debug "^2.6.8" 817 | globals "^9.18.0" 818 | invariant "^2.2.2" 819 | lodash "^4.17.4" 820 | 821 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 822 | version "6.26.0" 823 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 824 | dependencies: 825 | babel-runtime "^6.26.0" 826 | esutils "^2.0.2" 827 | lodash "^4.17.4" 828 | to-fast-properties "^1.0.3" 829 | 830 | babylon@^6.18.0: 831 | version "6.18.0" 832 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 833 | 834 | balanced-match@^1.0.0: 835 | version "1.0.0" 836 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 837 | 838 | base64-js@^1.0.2: 839 | version "1.2.3" 840 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.3.tgz#fb13668233d9614cf5fb4bce95a9ba4096cdf801" 841 | 842 | base@^0.11.1: 843 | version "0.11.2" 844 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 845 | dependencies: 846 | cache-base "^1.0.1" 847 | class-utils "^0.3.5" 848 | component-emitter "^1.2.1" 849 | define-property "^1.0.0" 850 | isobject "^3.0.1" 851 | mixin-deep "^1.2.0" 852 | pascalcase "^0.1.1" 853 | 854 | bcrypt-pbkdf@^1.0.0: 855 | version "1.0.1" 856 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 857 | dependencies: 858 | tweetnacl "^0.14.3" 859 | 860 | big.js@^3.1.3: 861 | version "3.2.0" 862 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" 863 | 864 | binary-extensions@^1.0.0: 865 | version "1.11.0" 866 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 867 | 868 | block-stream@*: 869 | version "0.0.9" 870 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 871 | dependencies: 872 | inherits "~2.0.0" 873 | 874 | bluebird@^3.4.0, bluebird@^3.5.1: 875 | version "3.5.1" 876 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 877 | 878 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 879 | version "4.11.8" 880 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 881 | 882 | boom@2.x.x: 883 | version "2.10.1" 884 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 885 | dependencies: 886 | hoek "2.x.x" 887 | 888 | boom@4.x.x: 889 | version "4.3.1" 890 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 891 | dependencies: 892 | hoek "4.x.x" 893 | 894 | boom@5.x.x: 895 | version "5.2.0" 896 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 897 | dependencies: 898 | hoek "4.x.x" 899 | 900 | bowser@^1.0.0, bowser@^1.7.3: 901 | version "1.9.3" 902 | resolved "https://registry.yarnpkg.com/bowser/-/bowser-1.9.3.tgz#6643ae4d783f31683f6d23156976b74183862162" 903 | 904 | brace-expansion@^1.1.7: 905 | version "1.1.11" 906 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 907 | dependencies: 908 | balanced-match "^1.0.0" 909 | concat-map "0.0.1" 910 | 911 | braces@^2.3.0, braces@^2.3.1: 912 | version "2.3.2" 913 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 914 | dependencies: 915 | arr-flatten "^1.1.0" 916 | array-unique "^0.3.2" 917 | extend-shallow "^2.0.1" 918 | fill-range "^4.0.0" 919 | isobject "^3.0.1" 920 | repeat-element "^1.1.2" 921 | snapdragon "^0.8.1" 922 | snapdragon-node "^2.0.1" 923 | split-string "^3.0.2" 924 | to-regex "^3.0.1" 925 | 926 | brorand@^1.0.1: 927 | version "1.1.0" 928 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 929 | 930 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 931 | version "1.2.0" 932 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" 933 | dependencies: 934 | buffer-xor "^1.0.3" 935 | cipher-base "^1.0.0" 936 | create-hash "^1.1.0" 937 | evp_bytestokey "^1.0.3" 938 | inherits "^2.0.1" 939 | safe-buffer "^5.0.1" 940 | 941 | browserify-cipher@^1.0.0: 942 | version "1.0.1" 943 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" 944 | dependencies: 945 | browserify-aes "^1.0.4" 946 | browserify-des "^1.0.0" 947 | evp_bytestokey "^1.0.0" 948 | 949 | browserify-des@^1.0.0: 950 | version "1.0.1" 951 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.1.tgz#3343124db6d7ad53e26a8826318712bdc8450f9c" 952 | dependencies: 953 | cipher-base "^1.0.1" 954 | des.js "^1.0.0" 955 | inherits "^2.0.1" 956 | 957 | browserify-rsa@^4.0.0: 958 | version "4.0.1" 959 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 960 | dependencies: 961 | bn.js "^4.1.0" 962 | randombytes "^2.0.1" 963 | 964 | browserify-sign@^4.0.0: 965 | version "4.0.4" 966 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 967 | dependencies: 968 | bn.js "^4.1.1" 969 | browserify-rsa "^4.0.0" 970 | create-hash "^1.1.0" 971 | create-hmac "^1.1.2" 972 | elliptic "^6.0.0" 973 | inherits "^2.0.1" 974 | parse-asn1 "^5.0.0" 975 | 976 | browserify-zlib@^0.2.0: 977 | version "0.2.0" 978 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 979 | dependencies: 980 | pako "~1.0.5" 981 | 982 | browserslist@^2.1.2: 983 | version "2.11.3" 984 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.3.tgz#fe36167aed1bbcde4827ebfe71347a2cc70b99b2" 985 | dependencies: 986 | caniuse-lite "^1.0.30000792" 987 | electron-to-chromium "^1.3.30" 988 | 989 | buffer-from@^1.0.0: 990 | version "1.0.0" 991 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531" 992 | 993 | buffer-xor@^1.0.3: 994 | version "1.0.3" 995 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 996 | 997 | buffer@^4.3.0: 998 | version "4.9.1" 999 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 1000 | dependencies: 1001 | base64-js "^1.0.2" 1002 | ieee754 "^1.1.4" 1003 | isarray "^1.0.0" 1004 | 1005 | buffer@^5.0.3: 1006 | version "5.1.0" 1007 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.1.0.tgz#c913e43678c7cb7c8bd16afbcddb6c5505e8f9fe" 1008 | dependencies: 1009 | base64-js "^1.0.2" 1010 | ieee754 "^1.1.4" 1011 | 1012 | builtin-modules@^1.0.0: 1013 | version "1.1.1" 1014 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 1015 | 1016 | builtin-status-codes@^3.0.0: 1017 | version "3.0.0" 1018 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 1019 | 1020 | cacache@^10.0.4: 1021 | version "10.0.4" 1022 | resolved "https://registry.yarnpkg.com/cacache/-/cacache-10.0.4.tgz#6452367999eff9d4188aefd9a14e9d7c6a263460" 1023 | dependencies: 1024 | bluebird "^3.5.1" 1025 | chownr "^1.0.1" 1026 | glob "^7.1.2" 1027 | graceful-fs "^4.1.11" 1028 | lru-cache "^4.1.1" 1029 | mississippi "^2.0.0" 1030 | mkdirp "^0.5.1" 1031 | move-concurrently "^1.0.1" 1032 | promise-inflight "^1.0.1" 1033 | rimraf "^2.6.2" 1034 | ssri "^5.2.4" 1035 | unique-filename "^1.1.0" 1036 | y18n "^4.0.0" 1037 | 1038 | cache-base@^1.0.1: 1039 | version "1.0.1" 1040 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 1041 | dependencies: 1042 | collection-visit "^1.0.0" 1043 | component-emitter "^1.2.1" 1044 | get-value "^2.0.6" 1045 | has-value "^1.0.0" 1046 | isobject "^3.0.1" 1047 | set-value "^2.0.0" 1048 | to-object-path "^0.3.0" 1049 | union-value "^1.0.0" 1050 | unset-value "^1.0.0" 1051 | 1052 | camelcase@^1.0.2: 1053 | version "1.2.1" 1054 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 1055 | 1056 | camelcase@^4.1.0: 1057 | version "4.1.0" 1058 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 1059 | 1060 | caniuse-lite@^1.0.30000792: 1061 | version "1.0.30000827" 1062 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000827.tgz#2dad2354e4810c3c9bb1cfc57f655c270c25fa52" 1063 | 1064 | caseless@~0.12.0: 1065 | version "0.12.0" 1066 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1067 | 1068 | center-align@^0.1.1: 1069 | version "0.1.3" 1070 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1071 | dependencies: 1072 | align-text "^0.1.3" 1073 | lazy-cache "^1.0.3" 1074 | 1075 | chalk@^1.1.3: 1076 | version "1.1.3" 1077 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1078 | dependencies: 1079 | ansi-styles "^2.2.1" 1080 | escape-string-regexp "^1.0.2" 1081 | has-ansi "^2.0.0" 1082 | strip-ansi "^3.0.0" 1083 | supports-color "^2.0.0" 1084 | 1085 | chokidar@^2.0.2: 1086 | version "2.0.3" 1087 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.3.tgz#dcbd4f6cbb2a55b4799ba8a840ac527e5f4b1176" 1088 | dependencies: 1089 | anymatch "^2.0.0" 1090 | async-each "^1.0.0" 1091 | braces "^2.3.0" 1092 | glob-parent "^3.1.0" 1093 | inherits "^2.0.1" 1094 | is-binary-path "^1.0.0" 1095 | is-glob "^4.0.0" 1096 | normalize-path "^2.1.1" 1097 | path-is-absolute "^1.0.0" 1098 | readdirp "^2.0.0" 1099 | upath "^1.0.0" 1100 | optionalDependencies: 1101 | fsevents "^1.1.2" 1102 | 1103 | chownr@^1.0.1: 1104 | version "1.0.1" 1105 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 1106 | 1107 | chroma-js@^1.2.2: 1108 | version "1.3.6" 1109 | resolved "https://registry.yarnpkg.com/chroma-js/-/chroma-js-1.3.6.tgz#22dd7220ef6b55dcfcb8ef92982baaf55dced45d" 1110 | 1111 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 1112 | version "1.0.4" 1113 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 1114 | dependencies: 1115 | inherits "^2.0.1" 1116 | safe-buffer "^5.0.1" 1117 | 1118 | class-utils@^0.3.5: 1119 | version "0.3.6" 1120 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 1121 | dependencies: 1122 | arr-union "^3.1.0" 1123 | define-property "^0.2.5" 1124 | isobject "^3.0.0" 1125 | static-extend "^0.1.1" 1126 | 1127 | cliui@^2.1.0: 1128 | version "2.1.0" 1129 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1130 | dependencies: 1131 | center-align "^0.1.1" 1132 | right-align "^0.1.1" 1133 | wordwrap "0.0.2" 1134 | 1135 | cliui@^3.2.0: 1136 | version "3.2.0" 1137 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1138 | dependencies: 1139 | string-width "^1.0.1" 1140 | strip-ansi "^3.0.1" 1141 | wrap-ansi "^2.0.0" 1142 | 1143 | co@^4.6.0: 1144 | version "4.6.0" 1145 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1146 | 1147 | cocoascript-class@^0.1.2: 1148 | version "0.1.2" 1149 | resolved "https://registry.yarnpkg.com/cocoascript-class/-/cocoascript-class-0.1.2.tgz#dab25f20389946d9986c1812b88ac3783eec42d3" 1150 | 1151 | code-point-at@^1.0.0: 1152 | version "1.1.0" 1153 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1154 | 1155 | collection-visit@^1.0.0: 1156 | version "1.0.0" 1157 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1158 | dependencies: 1159 | map-visit "^1.0.0" 1160 | object-visit "^1.0.0" 1161 | 1162 | combined-stream@1.0.6, combined-stream@^1.0.5, combined-stream@~1.0.5: 1163 | version "1.0.6" 1164 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 1165 | dependencies: 1166 | delayed-stream "~1.0.0" 1167 | 1168 | commander@~2.13.0: 1169 | version "2.13.0" 1170 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" 1171 | 1172 | commander@~2.9.0: 1173 | version "2.9.0" 1174 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1175 | dependencies: 1176 | graceful-readlink ">= 1.0.0" 1177 | 1178 | commondir@^1.0.1: 1179 | version "1.0.1" 1180 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1181 | 1182 | component-emitter@^1.2.1: 1183 | version "1.2.1" 1184 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1185 | 1186 | concat-map@0.0.1: 1187 | version "0.0.1" 1188 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1189 | 1190 | concat-stream@^1.5.0: 1191 | version "1.6.2" 1192 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 1193 | dependencies: 1194 | buffer-from "^1.0.0" 1195 | inherits "^2.0.3" 1196 | readable-stream "^2.2.2" 1197 | typedarray "^0.0.6" 1198 | 1199 | console-browserify@^1.1.0: 1200 | version "1.1.0" 1201 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1202 | dependencies: 1203 | date-now "^0.1.4" 1204 | 1205 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1206 | version "1.1.0" 1207 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1208 | 1209 | constants-browserify@^1.0.0: 1210 | version "1.0.0" 1211 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 1212 | 1213 | convert-source-map@^1.5.0: 1214 | version "1.5.1" 1215 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1216 | 1217 | copy-concurrently@^1.0.0: 1218 | version "1.0.5" 1219 | resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" 1220 | dependencies: 1221 | aproba "^1.1.1" 1222 | fs-write-stream-atomic "^1.0.8" 1223 | iferr "^0.1.5" 1224 | mkdirp "^0.5.1" 1225 | rimraf "^2.5.4" 1226 | run-queue "^1.0.0" 1227 | 1228 | copy-descriptor@^0.1.0: 1229 | version "0.1.1" 1230 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1231 | 1232 | core-js@^1.0.0: 1233 | version "1.2.7" 1234 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1235 | 1236 | core-js@^2.4.0, core-js@^2.5.0: 1237 | version "2.5.5" 1238 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.5.tgz#b14dde936c640c0579a6b50cabcc132dd6127e3b" 1239 | 1240 | core-util-is@1.0.2, core-util-is@~1.0.0: 1241 | version "1.0.2" 1242 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1243 | 1244 | coscript@^1.0.0: 1245 | version "1.0.0" 1246 | resolved "https://registry.yarnpkg.com/coscript/-/coscript-1.0.0.tgz#1a0ef8d5f8b4a67901b97ae59bd2f51e6cc6b0f1" 1247 | 1248 | create-ecdh@^4.0.0: 1249 | version "4.0.1" 1250 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.1.tgz#44223dfed533193ba5ba54e0df5709b89acf1f82" 1251 | dependencies: 1252 | bn.js "^4.1.0" 1253 | elliptic "^6.0.0" 1254 | 1255 | create-hash@^1.1.0, create-hash@^1.1.2: 1256 | version "1.2.0" 1257 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" 1258 | dependencies: 1259 | cipher-base "^1.0.1" 1260 | inherits "^2.0.1" 1261 | md5.js "^1.3.4" 1262 | ripemd160 "^2.0.1" 1263 | sha.js "^2.4.0" 1264 | 1265 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 1266 | version "1.1.7" 1267 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" 1268 | dependencies: 1269 | cipher-base "^1.0.3" 1270 | create-hash "^1.1.0" 1271 | inherits "^2.0.1" 1272 | ripemd160 "^2.0.0" 1273 | safe-buffer "^5.0.1" 1274 | sha.js "^2.4.8" 1275 | 1276 | create-react-class@^15.6.0, create-react-class@^15.6.2: 1277 | version "15.6.3" 1278 | resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.6.3.tgz#2d73237fb3f970ae6ebe011a9e66f46dbca80036" 1279 | dependencies: 1280 | fbjs "^0.8.9" 1281 | loose-envify "^1.3.1" 1282 | object-assign "^4.1.1" 1283 | 1284 | cross-spawn@^5.0.1: 1285 | version "5.1.0" 1286 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1287 | dependencies: 1288 | lru-cache "^4.0.1" 1289 | shebang-command "^1.2.0" 1290 | which "^1.2.9" 1291 | 1292 | cryptiles@2.x.x: 1293 | version "2.0.5" 1294 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1295 | dependencies: 1296 | boom "2.x.x" 1297 | 1298 | cryptiles@3.x.x: 1299 | version "3.1.2" 1300 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 1301 | dependencies: 1302 | boom "5.x.x" 1303 | 1304 | crypto-browserify@^3.11.0: 1305 | version "3.12.0" 1306 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 1307 | dependencies: 1308 | browserify-cipher "^1.0.0" 1309 | browserify-sign "^4.0.0" 1310 | create-ecdh "^4.0.0" 1311 | create-hash "^1.1.0" 1312 | create-hmac "^1.1.0" 1313 | diffie-hellman "^5.0.0" 1314 | inherits "^2.0.1" 1315 | pbkdf2 "^3.0.3" 1316 | public-encrypt "^4.0.0" 1317 | randombytes "^2.0.0" 1318 | randomfill "^1.0.3" 1319 | 1320 | css-color-keywords@^1.0.0: 1321 | version "1.0.0" 1322 | resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05" 1323 | 1324 | css-in-js-utils@^2.0.0: 1325 | version "2.0.1" 1326 | resolved "https://registry.yarnpkg.com/css-in-js-utils/-/css-in-js-utils-2.0.1.tgz#3b472b398787291b47cfe3e44fecfdd9e914ba99" 1327 | dependencies: 1328 | hyphenate-style-name "^1.0.2" 1329 | isobject "^3.0.1" 1330 | 1331 | css-to-react-native@^2.0.3: 1332 | version "2.1.2" 1333 | resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-2.1.2.tgz#c06d628467ef961c85ec358a90f3c87469fb0095" 1334 | dependencies: 1335 | css-color-keywords "^1.0.0" 1336 | fbjs "^0.8.5" 1337 | postcss-value-parser "^3.3.0" 1338 | 1339 | cyclist@~0.2.2: 1340 | version "0.2.2" 1341 | resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640" 1342 | 1343 | d@1: 1344 | version "1.0.0" 1345 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1346 | dependencies: 1347 | es5-ext "^0.10.9" 1348 | 1349 | dashdash@^1.12.0: 1350 | version "1.14.1" 1351 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1352 | dependencies: 1353 | assert-plus "^1.0.0" 1354 | 1355 | date-now@^0.1.4: 1356 | version "0.1.4" 1357 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1358 | 1359 | debounce@1.0.2: 1360 | version "1.0.2" 1361 | resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.0.2.tgz#503cc674d8d7f737099664fb75ddbd36b9626dc6" 1362 | 1363 | debug@^2.2.0, debug@^2.3.3, debug@^2.6.8: 1364 | version "2.6.9" 1365 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1366 | dependencies: 1367 | ms "2.0.0" 1368 | 1369 | decamelize@^1.0.0, decamelize@^1.1.1: 1370 | version "1.2.0" 1371 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1372 | 1373 | decode-uri-component@^0.2.0: 1374 | version "0.2.0" 1375 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1376 | 1377 | deep-assign@^2.0.0: 1378 | version "2.0.0" 1379 | resolved "https://registry.yarnpkg.com/deep-assign/-/deep-assign-2.0.0.tgz#ebe06b1f07f08dae597620e3dd1622f371a1c572" 1380 | dependencies: 1381 | is-obj "^1.0.0" 1382 | 1383 | deep-extend@~0.4.0: 1384 | version "0.4.2" 1385 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1386 | 1387 | define-properties@^1.1.2: 1388 | version "1.1.2" 1389 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1390 | dependencies: 1391 | foreach "^2.0.5" 1392 | object-keys "^1.0.8" 1393 | 1394 | define-property@^0.2.5: 1395 | version "0.2.5" 1396 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1397 | dependencies: 1398 | is-descriptor "^0.1.0" 1399 | 1400 | define-property@^1.0.0: 1401 | version "1.0.0" 1402 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1403 | dependencies: 1404 | is-descriptor "^1.0.0" 1405 | 1406 | define-property@^2.0.2: 1407 | version "2.0.2" 1408 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1409 | dependencies: 1410 | is-descriptor "^1.0.2" 1411 | isobject "^3.0.1" 1412 | 1413 | delayed-stream@~1.0.0: 1414 | version "1.0.0" 1415 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1416 | 1417 | delegates@^1.0.0: 1418 | version "1.0.0" 1419 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1420 | 1421 | deline@^1.0.4: 1422 | version "1.0.4" 1423 | resolved "https://registry.yarnpkg.com/deline/-/deline-1.0.4.tgz#6c05c87836926e1a1c63e47882f3d2eb2c6f14c9" 1424 | 1425 | des.js@^1.0.0: 1426 | version "1.0.0" 1427 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1428 | dependencies: 1429 | inherits "^2.0.1" 1430 | minimalistic-assert "^1.0.0" 1431 | 1432 | detect-indent@^4.0.0: 1433 | version "4.0.0" 1434 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1435 | dependencies: 1436 | repeating "^2.0.0" 1437 | 1438 | detect-libc@^1.0.2: 1439 | version "1.0.3" 1440 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1441 | 1442 | diffie-hellman@^5.0.0: 1443 | version "5.0.3" 1444 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" 1445 | dependencies: 1446 | bn.js "^4.1.0" 1447 | miller-rabin "^4.0.0" 1448 | randombytes "^2.0.0" 1449 | 1450 | domain-browser@^1.1.1: 1451 | version "1.2.0" 1452 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" 1453 | 1454 | duplexify@^3.4.2, duplexify@^3.5.3: 1455 | version "3.5.4" 1456 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.4.tgz#4bb46c1796eabebeec4ca9a2e66b808cb7a3d8b4" 1457 | dependencies: 1458 | end-of-stream "^1.0.0" 1459 | inherits "^2.0.1" 1460 | readable-stream "^2.0.0" 1461 | stream-shift "^1.0.0" 1462 | 1463 | ecc-jsbn@~0.1.1: 1464 | version "0.1.1" 1465 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1466 | dependencies: 1467 | jsbn "~0.1.0" 1468 | 1469 | electron-to-chromium@^1.3.30: 1470 | version "1.3.42" 1471 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.42.tgz#95c33bf01d0cc405556aec899fe61fd4d76ea0f9" 1472 | 1473 | elliptic@^6.0.0: 1474 | version "6.4.0" 1475 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1476 | dependencies: 1477 | bn.js "^4.4.0" 1478 | brorand "^1.0.1" 1479 | hash.js "^1.0.0" 1480 | hmac-drbg "^1.0.0" 1481 | inherits "^2.0.1" 1482 | minimalistic-assert "^1.0.0" 1483 | minimalistic-crypto-utils "^1.0.0" 1484 | 1485 | emojis-list@^2.0.0: 1486 | version "2.1.0" 1487 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1488 | 1489 | emscripten-library-decorator@~0.2.2: 1490 | version "0.2.2" 1491 | resolved "https://registry.yarnpkg.com/emscripten-library-decorator/-/emscripten-library-decorator-0.2.2.tgz#d035f023e2a84c68305cc842cdeea38e67683c40" 1492 | 1493 | encoding@^0.1.11: 1494 | version "0.1.12" 1495 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1496 | dependencies: 1497 | iconv-lite "~0.4.13" 1498 | 1499 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: 1500 | version "1.4.1" 1501 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 1502 | dependencies: 1503 | once "^1.4.0" 1504 | 1505 | enhanced-resolve@^3.4.0: 1506 | version "3.4.1" 1507 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" 1508 | dependencies: 1509 | graceful-fs "^4.1.2" 1510 | memory-fs "^0.4.0" 1511 | object-assign "^4.0.1" 1512 | tapable "^0.2.7" 1513 | 1514 | errno@^0.1.3, errno@~0.1.7: 1515 | version "0.1.7" 1516 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" 1517 | dependencies: 1518 | prr "~1.0.1" 1519 | 1520 | error-ex@^1.2.0: 1521 | version "1.3.1" 1522 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1523 | dependencies: 1524 | is-arrayish "^0.2.1" 1525 | 1526 | error-stack-parser@^2.0.0: 1527 | version "2.0.1" 1528 | resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.0.1.tgz#a3202b8fb03114aa9b40a0e3669e48b2b65a010a" 1529 | dependencies: 1530 | stackframe "^1.0.3" 1531 | 1532 | es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: 1533 | version "0.10.42" 1534 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.42.tgz#8c07dd33af04d5dcd1310b5cef13bea63a89ba8d" 1535 | dependencies: 1536 | es6-iterator "~2.0.3" 1537 | es6-symbol "~3.1.1" 1538 | next-tick "1" 1539 | 1540 | es6-iterator@^2.0.1, es6-iterator@~2.0.1, es6-iterator@~2.0.3: 1541 | version "2.0.3" 1542 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 1543 | dependencies: 1544 | d "1" 1545 | es5-ext "^0.10.35" 1546 | es6-symbol "^3.1.1" 1547 | 1548 | es6-map@^0.1.3: 1549 | version "0.1.5" 1550 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1551 | dependencies: 1552 | d "1" 1553 | es5-ext "~0.10.14" 1554 | es6-iterator "~2.0.1" 1555 | es6-set "~0.1.5" 1556 | es6-symbol "~3.1.1" 1557 | event-emitter "~0.3.5" 1558 | 1559 | es6-set@~0.1.5: 1560 | version "0.1.5" 1561 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1562 | dependencies: 1563 | d "1" 1564 | es5-ext "~0.10.14" 1565 | es6-iterator "~2.0.1" 1566 | es6-symbol "3.1.1" 1567 | event-emitter "~0.3.5" 1568 | 1569 | es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: 1570 | version "3.1.1" 1571 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1572 | dependencies: 1573 | d "1" 1574 | es5-ext "~0.10.14" 1575 | 1576 | es6-weak-map@^2.0.1: 1577 | version "2.0.2" 1578 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1579 | dependencies: 1580 | d "1" 1581 | es5-ext "^0.10.14" 1582 | es6-iterator "^2.0.1" 1583 | es6-symbol "^3.1.1" 1584 | 1585 | escape-string-regexp@^1.0.2: 1586 | version "1.0.5" 1587 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1588 | 1589 | escope@^3.6.0: 1590 | version "3.6.0" 1591 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1592 | dependencies: 1593 | es6-map "^0.1.3" 1594 | es6-weak-map "^2.0.1" 1595 | esrecurse "^4.1.0" 1596 | estraverse "^4.1.1" 1597 | 1598 | esprima@^4.0.0: 1599 | version "4.0.0" 1600 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1601 | 1602 | esrecurse@^4.1.0: 1603 | version "4.2.1" 1604 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 1605 | dependencies: 1606 | estraverse "^4.1.0" 1607 | 1608 | estraverse@^4.1.0, estraverse@^4.1.1: 1609 | version "4.2.0" 1610 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1611 | 1612 | esutils@^2.0.2: 1613 | version "2.0.2" 1614 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1615 | 1616 | event-emitter@~0.3.5: 1617 | version "0.3.5" 1618 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1619 | dependencies: 1620 | d "1" 1621 | es5-ext "~0.10.14" 1622 | 1623 | events@^1.0.0: 1624 | version "1.1.1" 1625 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1626 | 1627 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1628 | version "1.0.3" 1629 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1630 | dependencies: 1631 | md5.js "^1.3.4" 1632 | safe-buffer "^5.1.1" 1633 | 1634 | execa@^0.7.0: 1635 | version "0.7.0" 1636 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1637 | dependencies: 1638 | cross-spawn "^5.0.1" 1639 | get-stream "^3.0.0" 1640 | is-stream "^1.1.0" 1641 | npm-run-path "^2.0.0" 1642 | p-finally "^1.0.0" 1643 | signal-exit "^3.0.0" 1644 | strip-eof "^1.0.0" 1645 | 1646 | expand-brackets@^2.1.4: 1647 | version "2.1.4" 1648 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1649 | dependencies: 1650 | debug "^2.3.3" 1651 | define-property "^0.2.5" 1652 | extend-shallow "^2.0.1" 1653 | posix-character-classes "^0.1.0" 1654 | regex-not "^1.0.0" 1655 | snapdragon "^0.8.1" 1656 | to-regex "^3.0.1" 1657 | 1658 | extend-shallow@^2.0.1: 1659 | version "2.0.1" 1660 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1661 | dependencies: 1662 | is-extendable "^0.1.0" 1663 | 1664 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1665 | version "3.0.2" 1666 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1667 | dependencies: 1668 | assign-symbols "^1.0.0" 1669 | is-extendable "^1.0.1" 1670 | 1671 | extend@~3.0.0, extend@~3.0.1: 1672 | version "3.0.1" 1673 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1674 | 1675 | extglob@^2.0.4: 1676 | version "2.0.4" 1677 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1678 | dependencies: 1679 | array-unique "^0.3.2" 1680 | define-property "^1.0.0" 1681 | expand-brackets "^2.1.4" 1682 | extend-shallow "^2.0.1" 1683 | fragment-cache "^0.2.1" 1684 | regex-not "^1.0.0" 1685 | snapdragon "^0.8.1" 1686 | to-regex "^3.0.1" 1687 | 1688 | extsprintf@1.3.0: 1689 | version "1.3.0" 1690 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1691 | 1692 | extsprintf@^1.2.0: 1693 | version "1.4.0" 1694 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1695 | 1696 | fast-deep-equal@^1.0.0: 1697 | version "1.1.0" 1698 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1699 | 1700 | fast-json-stable-stringify@^2.0.0: 1701 | version "2.0.0" 1702 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1703 | 1704 | fbjs@^0.8.14, fbjs@^0.8.16, fbjs@^0.8.5, fbjs@^0.8.9: 1705 | version "0.8.16" 1706 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" 1707 | dependencies: 1708 | core-js "^1.0.0" 1709 | isomorphic-fetch "^2.1.1" 1710 | loose-envify "^1.0.0" 1711 | object-assign "^4.1.0" 1712 | promise "^7.1.1" 1713 | setimmediate "^1.0.5" 1714 | ua-parser-js "^0.7.9" 1715 | 1716 | fill-range@^4.0.0: 1717 | version "4.0.0" 1718 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1719 | dependencies: 1720 | extend-shallow "^2.0.1" 1721 | is-number "^3.0.0" 1722 | repeat-string "^1.6.1" 1723 | to-regex-range "^2.1.0" 1724 | 1725 | find-cache-dir@^1.0.0: 1726 | version "1.0.0" 1727 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" 1728 | dependencies: 1729 | commondir "^1.0.1" 1730 | make-dir "^1.0.0" 1731 | pkg-dir "^2.0.0" 1732 | 1733 | find-up@^2.0.0, find-up@^2.1.0: 1734 | version "2.1.0" 1735 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1736 | dependencies: 1737 | locate-path "^2.0.0" 1738 | 1739 | flexibility@^2.0.1: 1740 | version "2.0.1" 1741 | resolved "https://registry.yarnpkg.com/flexibility/-/flexibility-2.0.1.tgz#ad323aafc40f469ce624286518fc4d7cd72b7c77" 1742 | 1743 | flush-write-stream@^1.0.0: 1744 | version "1.0.3" 1745 | resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.0.3.tgz#c5d586ef38af6097650b49bc41b55fabb19f35bd" 1746 | dependencies: 1747 | inherits "^2.0.1" 1748 | readable-stream "^2.0.4" 1749 | 1750 | for-in@^1.0.2: 1751 | version "1.0.2" 1752 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1753 | 1754 | foreach@^2.0.5: 1755 | version "2.0.5" 1756 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1757 | 1758 | forever-agent@~0.6.1: 1759 | version "0.6.1" 1760 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1761 | 1762 | form-data@~2.1.1: 1763 | version "2.1.4" 1764 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1765 | dependencies: 1766 | asynckit "^0.4.0" 1767 | combined-stream "^1.0.5" 1768 | mime-types "^2.1.12" 1769 | 1770 | form-data@~2.3.1: 1771 | version "2.3.2" 1772 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 1773 | dependencies: 1774 | asynckit "^0.4.0" 1775 | combined-stream "1.0.6" 1776 | mime-types "^2.1.12" 1777 | 1778 | fragment-cache@^0.2.1: 1779 | version "0.2.1" 1780 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1781 | dependencies: 1782 | map-cache "^0.2.2" 1783 | 1784 | from2@^2.1.0: 1785 | version "2.3.0" 1786 | resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" 1787 | dependencies: 1788 | inherits "^2.0.1" 1789 | readable-stream "^2.0.0" 1790 | 1791 | fs-write-stream-atomic@^1.0.8: 1792 | version "1.0.10" 1793 | resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" 1794 | dependencies: 1795 | graceful-fs "^4.1.2" 1796 | iferr "^0.1.5" 1797 | imurmurhash "^0.1.4" 1798 | readable-stream "1 || 2" 1799 | 1800 | fs.realpath@^1.0.0: 1801 | version "1.0.0" 1802 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1803 | 1804 | fsevents@^1.1.2: 1805 | version "1.1.3" 1806 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1807 | dependencies: 1808 | nan "^2.3.0" 1809 | node-pre-gyp "^0.6.39" 1810 | 1811 | fstream-ignore@^1.0.5: 1812 | version "1.0.5" 1813 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1814 | dependencies: 1815 | fstream "^1.0.0" 1816 | inherits "2" 1817 | minimatch "^3.0.0" 1818 | 1819 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1820 | version "1.0.11" 1821 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1822 | dependencies: 1823 | graceful-fs "^4.1.2" 1824 | inherits "~2.0.0" 1825 | mkdirp ">=0.5 0" 1826 | rimraf "2" 1827 | 1828 | function-bind@^1.1.1: 1829 | version "1.1.1" 1830 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1831 | 1832 | gauge@~2.7.3: 1833 | version "2.7.4" 1834 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1835 | dependencies: 1836 | aproba "^1.0.3" 1837 | console-control-strings "^1.0.0" 1838 | has-unicode "^2.0.0" 1839 | object-assign "^4.1.0" 1840 | signal-exit "^3.0.0" 1841 | string-width "^1.0.1" 1842 | strip-ansi "^3.0.1" 1843 | wide-align "^1.1.0" 1844 | 1845 | get-caller-file@^1.0.1: 1846 | version "1.0.2" 1847 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1848 | 1849 | get-stream@^3.0.0: 1850 | version "3.0.0" 1851 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1852 | 1853 | get-value@^2.0.3, get-value@^2.0.6: 1854 | version "2.0.6" 1855 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1856 | 1857 | getpass@^0.1.1: 1858 | version "0.1.7" 1859 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1860 | dependencies: 1861 | assert-plus "^1.0.0" 1862 | 1863 | glob-parent@^3.1.0: 1864 | version "3.1.0" 1865 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1866 | dependencies: 1867 | is-glob "^3.1.0" 1868 | path-dirname "^1.0.0" 1869 | 1870 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 1871 | version "7.1.2" 1872 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1873 | dependencies: 1874 | fs.realpath "^1.0.0" 1875 | inflight "^1.0.4" 1876 | inherits "2" 1877 | minimatch "^3.0.4" 1878 | once "^1.3.0" 1879 | path-is-absolute "^1.0.0" 1880 | 1881 | globals@^9.18.0: 1882 | version "9.18.0" 1883 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1884 | 1885 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1886 | version "4.1.11" 1887 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1888 | 1889 | "graceful-readlink@>= 1.0.0": 1890 | version "1.0.1" 1891 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1892 | 1893 | har-schema@^1.0.5: 1894 | version "1.0.5" 1895 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1896 | 1897 | har-schema@^2.0.0: 1898 | version "2.0.0" 1899 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1900 | 1901 | har-validator@~4.2.1: 1902 | version "4.2.1" 1903 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1904 | dependencies: 1905 | ajv "^4.9.1" 1906 | har-schema "^1.0.5" 1907 | 1908 | har-validator@~5.0.3: 1909 | version "5.0.3" 1910 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1911 | dependencies: 1912 | ajv "^5.1.0" 1913 | har-schema "^2.0.0" 1914 | 1915 | has-ansi@^2.0.0: 1916 | version "2.0.0" 1917 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1918 | dependencies: 1919 | ansi-regex "^2.0.0" 1920 | 1921 | has-flag@^1.0.0: 1922 | version "1.0.0" 1923 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1924 | 1925 | has-flag@^2.0.0: 1926 | version "2.0.0" 1927 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1928 | 1929 | has-symbols@^1.0.0: 1930 | version "1.0.0" 1931 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 1932 | 1933 | has-unicode@^2.0.0: 1934 | version "2.0.1" 1935 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1936 | 1937 | has-value@^0.3.1: 1938 | version "0.3.1" 1939 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1940 | dependencies: 1941 | get-value "^2.0.3" 1942 | has-values "^0.1.4" 1943 | isobject "^2.0.0" 1944 | 1945 | has-value@^1.0.0: 1946 | version "1.0.0" 1947 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1948 | dependencies: 1949 | get-value "^2.0.6" 1950 | has-values "^1.0.0" 1951 | isobject "^3.0.0" 1952 | 1953 | has-values@^0.1.4: 1954 | version "0.1.4" 1955 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1956 | 1957 | has-values@^1.0.0: 1958 | version "1.0.0" 1959 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1960 | dependencies: 1961 | is-number "^3.0.0" 1962 | kind-of "^4.0.0" 1963 | 1964 | hash-base@^2.0.0: 1965 | version "2.0.2" 1966 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 1967 | dependencies: 1968 | inherits "^2.0.1" 1969 | 1970 | hash-base@^3.0.0: 1971 | version "3.0.4" 1972 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1973 | dependencies: 1974 | inherits "^2.0.1" 1975 | safe-buffer "^5.0.1" 1976 | 1977 | hash.js@^1.0.0, hash.js@^1.0.3: 1978 | version "1.1.3" 1979 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" 1980 | dependencies: 1981 | inherits "^2.0.3" 1982 | minimalistic-assert "^1.0.0" 1983 | 1984 | hawk@3.1.3, hawk@~3.1.3: 1985 | version "3.1.3" 1986 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1987 | dependencies: 1988 | boom "2.x.x" 1989 | cryptiles "2.x.x" 1990 | hoek "2.x.x" 1991 | sntp "1.x.x" 1992 | 1993 | hawk@~6.0.2: 1994 | version "6.0.2" 1995 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1996 | dependencies: 1997 | boom "4.x.x" 1998 | cryptiles "3.x.x" 1999 | hoek "4.x.x" 2000 | sntp "2.x.x" 2001 | 2002 | hmac-drbg@^1.0.0: 2003 | version "1.0.1" 2004 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 2005 | dependencies: 2006 | hash.js "^1.0.3" 2007 | minimalistic-assert "^1.0.0" 2008 | minimalistic-crypto-utils "^1.0.1" 2009 | 2010 | hoek@2.x.x: 2011 | version "2.16.3" 2012 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2013 | 2014 | hoek@4.x.x: 2015 | version "4.2.1" 2016 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb" 2017 | 2018 | hoist-non-react-statics@^1.2.0: 2019 | version "1.2.0" 2020 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz#aa448cf0986d55cc40773b17174b7dd066cb7cfb" 2021 | 2022 | home-or-tmp@^2.0.0: 2023 | version "2.0.0" 2024 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2025 | dependencies: 2026 | os-homedir "^1.0.0" 2027 | os-tmpdir "^1.0.1" 2028 | 2029 | hosted-git-info@^2.1.4: 2030 | version "2.6.0" 2031 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" 2032 | 2033 | http-signature@~1.1.0: 2034 | version "1.1.1" 2035 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2036 | dependencies: 2037 | assert-plus "^0.2.0" 2038 | jsprim "^1.2.2" 2039 | sshpk "^1.7.0" 2040 | 2041 | http-signature@~1.2.0: 2042 | version "1.2.0" 2043 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 2044 | dependencies: 2045 | assert-plus "^1.0.0" 2046 | jsprim "^1.2.2" 2047 | sshpk "^1.7.0" 2048 | 2049 | https-browserify@^1.0.0: 2050 | version "1.0.0" 2051 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 2052 | 2053 | hyphenate-style-name@^1.0.1, hyphenate-style-name@^1.0.2: 2054 | version "1.0.2" 2055 | resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.2.tgz#31160a36930adaf1fc04c6074f7eb41465d4ec4b" 2056 | 2057 | iconv-lite@~0.4.13: 2058 | version "0.4.21" 2059 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.21.tgz#c47f8733d02171189ebc4a400f3218d348094798" 2060 | dependencies: 2061 | safer-buffer "^2.1.0" 2062 | 2063 | ieee754@^1.1.4: 2064 | version "1.1.11" 2065 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.11.tgz#c16384ffe00f5b7835824e67b6f2bd44a5229455" 2066 | 2067 | iferr@^0.1.5: 2068 | version "0.1.5" 2069 | resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" 2070 | 2071 | imurmurhash@^0.1.4: 2072 | version "0.1.4" 2073 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2074 | 2075 | indexof@0.0.1: 2076 | version "0.0.1" 2077 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 2078 | 2079 | inflight@^1.0.4: 2080 | version "1.0.6" 2081 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2082 | dependencies: 2083 | once "^1.3.0" 2084 | wrappy "1" 2085 | 2086 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 2087 | version "2.0.3" 2088 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2089 | 2090 | inherits@2.0.1: 2091 | version "2.0.1" 2092 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 2093 | 2094 | ini@~1.3.0: 2095 | version "1.3.5" 2096 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 2097 | 2098 | inline-style-prefixer@^2.0.5: 2099 | version "2.0.5" 2100 | resolved "https://registry.yarnpkg.com/inline-style-prefixer/-/inline-style-prefixer-2.0.5.tgz#c153c7e88fd84fef5c602e95a8168b2770671fe7" 2101 | dependencies: 2102 | bowser "^1.0.0" 2103 | hyphenate-style-name "^1.0.1" 2104 | 2105 | inline-style-prefixer@^3.0.8: 2106 | version "3.0.8" 2107 | resolved "https://registry.yarnpkg.com/inline-style-prefixer/-/inline-style-prefixer-3.0.8.tgz#8551b8e5b4d573244e66a34b04f7d32076a2b534" 2108 | dependencies: 2109 | bowser "^1.7.3" 2110 | css-in-js-utils "^2.0.0" 2111 | 2112 | interpret@^1.0.0: 2113 | version "1.1.0" 2114 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 2115 | 2116 | invariant@^2.2.0, invariant@^2.2.1, invariant@^2.2.2: 2117 | version "2.2.4" 2118 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 2119 | dependencies: 2120 | loose-envify "^1.0.0" 2121 | 2122 | invert-kv@^1.0.0: 2123 | version "1.0.0" 2124 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2125 | 2126 | is-accessor-descriptor@^0.1.6: 2127 | version "0.1.6" 2128 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 2129 | dependencies: 2130 | kind-of "^3.0.2" 2131 | 2132 | is-accessor-descriptor@^1.0.0: 2133 | version "1.0.0" 2134 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 2135 | dependencies: 2136 | kind-of "^6.0.0" 2137 | 2138 | is-arrayish@^0.2.1: 2139 | version "0.2.1" 2140 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2141 | 2142 | is-binary-path@^1.0.0: 2143 | version "1.0.1" 2144 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2145 | dependencies: 2146 | binary-extensions "^1.0.0" 2147 | 2148 | is-buffer@^1.1.5: 2149 | version "1.1.6" 2150 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 2151 | 2152 | is-builtin-module@^1.0.0: 2153 | version "1.0.0" 2154 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2155 | dependencies: 2156 | builtin-modules "^1.0.0" 2157 | 2158 | is-data-descriptor@^0.1.4: 2159 | version "0.1.4" 2160 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 2161 | dependencies: 2162 | kind-of "^3.0.2" 2163 | 2164 | is-data-descriptor@^1.0.0: 2165 | version "1.0.0" 2166 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 2167 | dependencies: 2168 | kind-of "^6.0.0" 2169 | 2170 | is-descriptor@^0.1.0: 2171 | version "0.1.6" 2172 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 2173 | dependencies: 2174 | is-accessor-descriptor "^0.1.6" 2175 | is-data-descriptor "^0.1.4" 2176 | kind-of "^5.0.0" 2177 | 2178 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 2179 | version "1.0.2" 2180 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 2181 | dependencies: 2182 | is-accessor-descriptor "^1.0.0" 2183 | is-data-descriptor "^1.0.0" 2184 | kind-of "^6.0.2" 2185 | 2186 | is-extendable@^0.1.0, is-extendable@^0.1.1: 2187 | version "0.1.1" 2188 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2189 | 2190 | is-extendable@^1.0.1: 2191 | version "1.0.1" 2192 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 2193 | dependencies: 2194 | is-plain-object "^2.0.4" 2195 | 2196 | is-extglob@^2.1.0, is-extglob@^2.1.1: 2197 | version "2.1.1" 2198 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 2199 | 2200 | is-finite@^1.0.0: 2201 | version "1.0.2" 2202 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2203 | dependencies: 2204 | number-is-nan "^1.0.0" 2205 | 2206 | is-fullwidth-code-point@^1.0.0: 2207 | version "1.0.0" 2208 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2209 | dependencies: 2210 | number-is-nan "^1.0.0" 2211 | 2212 | is-fullwidth-code-point@^2.0.0: 2213 | version "2.0.0" 2214 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2215 | 2216 | is-glob@^3.1.0: 2217 | version "3.1.0" 2218 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 2219 | dependencies: 2220 | is-extglob "^2.1.0" 2221 | 2222 | is-glob@^4.0.0: 2223 | version "4.0.0" 2224 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 2225 | dependencies: 2226 | is-extglob "^2.1.1" 2227 | 2228 | is-number@^3.0.0: 2229 | version "3.0.0" 2230 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2231 | dependencies: 2232 | kind-of "^3.0.2" 2233 | 2234 | is-number@^4.0.0: 2235 | version "4.0.0" 2236 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 2237 | 2238 | is-obj@^1.0.0: 2239 | version "1.0.1" 2240 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 2241 | 2242 | is-odd@^2.0.0: 2243 | version "2.0.0" 2244 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 2245 | dependencies: 2246 | is-number "^4.0.0" 2247 | 2248 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 2249 | version "2.0.4" 2250 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 2251 | dependencies: 2252 | isobject "^3.0.1" 2253 | 2254 | is-stream@^1.0.1, is-stream@^1.1.0: 2255 | version "1.1.0" 2256 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2257 | 2258 | is-typedarray@~1.0.0: 2259 | version "1.0.0" 2260 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2261 | 2262 | is-windows@^1.0.2: 2263 | version "1.0.2" 2264 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 2265 | 2266 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2267 | version "1.0.0" 2268 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2269 | 2270 | isexe@^2.0.0: 2271 | version "2.0.0" 2272 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2273 | 2274 | isobject@^2.0.0: 2275 | version "2.1.0" 2276 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2277 | dependencies: 2278 | isarray "1.0.0" 2279 | 2280 | isobject@^3.0.0, isobject@^3.0.1: 2281 | version "3.0.1" 2282 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2283 | 2284 | isomorphic-fetch@^2.1.1: 2285 | version "2.2.1" 2286 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2287 | dependencies: 2288 | node-fetch "^1.0.1" 2289 | whatwg-fetch ">=0.10.0" 2290 | 2291 | isstream@~0.1.2: 2292 | version "0.1.2" 2293 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2294 | 2295 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2296 | version "3.0.2" 2297 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2298 | 2299 | js-yaml@^3.10.0: 2300 | version "3.11.0" 2301 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef" 2302 | dependencies: 2303 | argparse "^1.0.7" 2304 | esprima "^4.0.0" 2305 | 2306 | jsbn@~0.1.0: 2307 | version "0.1.1" 2308 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2309 | 2310 | jsesc@^1.3.0: 2311 | version "1.3.0" 2312 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2313 | 2314 | jsesc@~0.5.0: 2315 | version "0.5.0" 2316 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2317 | 2318 | json-loader@^0.5.4: 2319 | version "0.5.7" 2320 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" 2321 | 2322 | json-schema-traverse@^0.3.0: 2323 | version "0.3.1" 2324 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2325 | 2326 | json-schema@0.2.3: 2327 | version "0.2.3" 2328 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2329 | 2330 | json-stable-stringify@^1.0.1: 2331 | version "1.0.1" 2332 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2333 | dependencies: 2334 | jsonify "~0.0.0" 2335 | 2336 | json-stringify-safe@~5.0.1: 2337 | version "5.0.1" 2338 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2339 | 2340 | json5@^0.5.0, json5@^0.5.1: 2341 | version "0.5.1" 2342 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2343 | 2344 | jsonify@~0.0.0: 2345 | version "0.0.0" 2346 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2347 | 2348 | jsprim@^1.2.2: 2349 | version "1.4.1" 2350 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2351 | dependencies: 2352 | assert-plus "1.0.0" 2353 | extsprintf "1.3.0" 2354 | json-schema "0.2.3" 2355 | verror "1.10.0" 2356 | 2357 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2358 | version "3.2.2" 2359 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2360 | dependencies: 2361 | is-buffer "^1.1.5" 2362 | 2363 | kind-of@^4.0.0: 2364 | version "4.0.0" 2365 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2366 | dependencies: 2367 | is-buffer "^1.1.5" 2368 | 2369 | kind-of@^5.0.0: 2370 | version "5.1.0" 2371 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2372 | 2373 | kind-of@^6.0.0, kind-of@^6.0.2: 2374 | version "6.0.2" 2375 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2376 | 2377 | lazy-cache@^1.0.3: 2378 | version "1.0.4" 2379 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2380 | 2381 | lcid@^1.0.0: 2382 | version "1.0.0" 2383 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2384 | dependencies: 2385 | invert-kv "^1.0.0" 2386 | 2387 | load-json-file@^2.0.0: 2388 | version "2.0.0" 2389 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2390 | dependencies: 2391 | graceful-fs "^4.1.2" 2392 | parse-json "^2.2.0" 2393 | pify "^2.0.0" 2394 | strip-bom "^3.0.0" 2395 | 2396 | loader-runner@^2.3.0: 2397 | version "2.3.0" 2398 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 2399 | 2400 | loader-utils@^1.0.2, loader-utils@^1.1.0: 2401 | version "1.1.0" 2402 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 2403 | dependencies: 2404 | big.js "^3.1.3" 2405 | emojis-list "^2.0.0" 2406 | json5 "^0.5.0" 2407 | 2408 | locate-path@^2.0.0: 2409 | version "2.0.0" 2410 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2411 | dependencies: 2412 | p-locate "^2.0.0" 2413 | path-exists "^3.0.0" 2414 | 2415 | lodash@^4.14.0, lodash@^4.17.4: 2416 | version "4.17.5" 2417 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 2418 | 2419 | longest@^1.0.1: 2420 | version "1.0.1" 2421 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2422 | 2423 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: 2424 | version "1.3.1" 2425 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2426 | dependencies: 2427 | js-tokens "^3.0.0" 2428 | 2429 | lru-cache@^4.0.1, lru-cache@^4.1.1: 2430 | version "4.1.2" 2431 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f" 2432 | dependencies: 2433 | pseudomap "^1.0.2" 2434 | yallist "^2.1.2" 2435 | 2436 | make-dir@^1.0.0: 2437 | version "1.2.0" 2438 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.2.0.tgz#6d6a49eead4aae296c53bbf3a1a008bd6c89469b" 2439 | dependencies: 2440 | pify "^3.0.0" 2441 | 2442 | map-cache@^0.2.2: 2443 | version "0.2.2" 2444 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2445 | 2446 | map-visit@^1.0.0: 2447 | version "1.0.0" 2448 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2449 | dependencies: 2450 | object-visit "^1.0.0" 2451 | 2452 | md5.js@^1.3.4: 2453 | version "1.3.4" 2454 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 2455 | dependencies: 2456 | hash-base "^3.0.0" 2457 | inherits "^2.0.1" 2458 | 2459 | mem@^1.1.0: 2460 | version "1.1.0" 2461 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2462 | dependencies: 2463 | mimic-fn "^1.0.0" 2464 | 2465 | memory-fs@^0.4.0, memory-fs@~0.4.1: 2466 | version "0.4.1" 2467 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2468 | dependencies: 2469 | errno "^0.1.3" 2470 | readable-stream "^2.0.1" 2471 | 2472 | micromatch@^3.1.4: 2473 | version "3.1.10" 2474 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2475 | dependencies: 2476 | arr-diff "^4.0.0" 2477 | array-unique "^0.3.2" 2478 | braces "^2.3.1" 2479 | define-property "^2.0.2" 2480 | extend-shallow "^3.0.2" 2481 | extglob "^2.0.4" 2482 | fragment-cache "^0.2.1" 2483 | kind-of "^6.0.2" 2484 | nanomatch "^1.2.9" 2485 | object.pick "^1.3.0" 2486 | regex-not "^1.0.0" 2487 | snapdragon "^0.8.1" 2488 | to-regex "^3.0.2" 2489 | 2490 | miller-rabin@^4.0.0: 2491 | version "4.0.1" 2492 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 2493 | dependencies: 2494 | bn.js "^4.0.0" 2495 | brorand "^1.0.1" 2496 | 2497 | mime-db@~1.33.0: 2498 | version "1.33.0" 2499 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 2500 | 2501 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 2502 | version "2.1.18" 2503 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 2504 | dependencies: 2505 | mime-db "~1.33.0" 2506 | 2507 | mimic-fn@^1.0.0: 2508 | version "1.2.0" 2509 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2510 | 2511 | minimalistic-assert@^1.0.0: 2512 | version "1.0.1" 2513 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 2514 | 2515 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2516 | version "1.0.1" 2517 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2518 | 2519 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 2520 | version "3.0.4" 2521 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2522 | dependencies: 2523 | brace-expansion "^1.1.7" 2524 | 2525 | minimist@0.0.8: 2526 | version "0.0.8" 2527 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2528 | 2529 | minimist@^1.2.0: 2530 | version "1.2.0" 2531 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2532 | 2533 | mississippi@^2.0.0: 2534 | version "2.0.0" 2535 | resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-2.0.0.tgz#3442a508fafc28500486feea99409676e4ee5a6f" 2536 | dependencies: 2537 | concat-stream "^1.5.0" 2538 | duplexify "^3.4.2" 2539 | end-of-stream "^1.1.0" 2540 | flush-write-stream "^1.0.0" 2541 | from2 "^2.1.0" 2542 | parallel-transform "^1.1.0" 2543 | pump "^2.0.1" 2544 | pumpify "^1.3.3" 2545 | stream-each "^1.1.0" 2546 | through2 "^2.0.0" 2547 | 2548 | mixin-deep@^1.2.0: 2549 | version "1.3.1" 2550 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 2551 | dependencies: 2552 | for-in "^1.0.2" 2553 | is-extendable "^1.0.1" 2554 | 2555 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: 2556 | version "0.5.1" 2557 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2558 | dependencies: 2559 | minimist "0.0.8" 2560 | 2561 | mocha-js-delegate@^0.1.1: 2562 | version "0.1.1" 2563 | resolved "https://registry.yarnpkg.com/mocha-js-delegate/-/mocha-js-delegate-0.1.1.tgz#322a4d2aa9fdf2c696d50deaaa013526b759ccf6" 2564 | 2565 | move-concurrently@^1.0.1: 2566 | version "1.0.1" 2567 | resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" 2568 | dependencies: 2569 | aproba "^1.1.1" 2570 | copy-concurrently "^1.0.0" 2571 | fs-write-stream-atomic "^1.0.8" 2572 | mkdirp "^0.5.1" 2573 | rimraf "^2.5.4" 2574 | run-queue "^1.0.3" 2575 | 2576 | ms@2.0.0: 2577 | version "2.0.0" 2578 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2579 | 2580 | murmur2js@^1.0.0: 2581 | version "1.0.0" 2582 | resolved "https://registry.yarnpkg.com/murmur2js/-/murmur2js-1.0.0.tgz#8f836c365d020d74e5cae5b96af2e768fa48d659" 2583 | 2584 | nan@^2.3.0, nan@^2.9.2: 2585 | version "2.10.0" 2586 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 2587 | 2588 | nanomatch@^1.2.9: 2589 | version "1.2.9" 2590 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 2591 | dependencies: 2592 | arr-diff "^4.0.0" 2593 | array-unique "^0.3.2" 2594 | define-property "^2.0.2" 2595 | extend-shallow "^3.0.2" 2596 | fragment-cache "^0.2.1" 2597 | is-odd "^2.0.0" 2598 | is-windows "^1.0.2" 2599 | kind-of "^6.0.2" 2600 | object.pick "^1.3.0" 2601 | regex-not "^1.0.0" 2602 | snapdragon "^0.8.1" 2603 | to-regex "^3.0.1" 2604 | 2605 | nbind@^0.3.14: 2606 | version "0.3.15" 2607 | resolved "https://registry.yarnpkg.com/nbind/-/nbind-0.3.15.tgz#20c74d77d54e28627ab8268c2767f7e40aef8c53" 2608 | dependencies: 2609 | emscripten-library-decorator "~0.2.2" 2610 | mkdirp "~0.5.1" 2611 | nan "^2.9.2" 2612 | 2613 | neo-async@^2.5.0: 2614 | version "2.5.1" 2615 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.5.1.tgz#acb909e327b1e87ec9ef15f41b8a269512ad41ee" 2616 | 2617 | next-tick@1: 2618 | version "1.0.0" 2619 | resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" 2620 | 2621 | node-fetch@^1.0.1: 2622 | version "1.7.3" 2623 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 2624 | dependencies: 2625 | encoding "^0.1.11" 2626 | is-stream "^1.0.1" 2627 | 2628 | node-gyp@^3.6.2: 2629 | version "3.6.2" 2630 | resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.6.2.tgz#9bfbe54562286284838e750eac05295853fa1c60" 2631 | dependencies: 2632 | fstream "^1.0.0" 2633 | glob "^7.0.3" 2634 | graceful-fs "^4.1.2" 2635 | minimatch "^3.0.2" 2636 | mkdirp "^0.5.0" 2637 | nopt "2 || 3" 2638 | npmlog "0 || 1 || 2 || 3 || 4" 2639 | osenv "0" 2640 | request "2" 2641 | rimraf "2" 2642 | semver "~5.3.0" 2643 | tar "^2.0.0" 2644 | which "1" 2645 | 2646 | node-libs-browser@^2.0.0: 2647 | version "2.1.0" 2648 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df" 2649 | dependencies: 2650 | assert "^1.1.1" 2651 | browserify-zlib "^0.2.0" 2652 | buffer "^4.3.0" 2653 | console-browserify "^1.1.0" 2654 | constants-browserify "^1.0.0" 2655 | crypto-browserify "^3.11.0" 2656 | domain-browser "^1.1.1" 2657 | events "^1.0.0" 2658 | https-browserify "^1.0.0" 2659 | os-browserify "^0.3.0" 2660 | path-browserify "0.0.0" 2661 | process "^0.11.10" 2662 | punycode "^1.2.4" 2663 | querystring-es3 "^0.2.0" 2664 | readable-stream "^2.3.3" 2665 | stream-browserify "^2.0.1" 2666 | stream-http "^2.7.2" 2667 | string_decoder "^1.0.0" 2668 | timers-browserify "^2.0.4" 2669 | tty-browserify "0.0.0" 2670 | url "^0.11.0" 2671 | util "^0.10.3" 2672 | vm-browserify "0.0.4" 2673 | 2674 | node-pre-gyp@^0.6.39: 2675 | version "0.6.39" 2676 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2677 | dependencies: 2678 | detect-libc "^1.0.2" 2679 | hawk "3.1.3" 2680 | mkdirp "^0.5.1" 2681 | nopt "^4.0.1" 2682 | npmlog "^4.0.2" 2683 | rc "^1.1.7" 2684 | request "2.81.0" 2685 | rimraf "^2.6.1" 2686 | semver "^5.3.0" 2687 | tar "^2.2.1" 2688 | tar-pack "^3.4.0" 2689 | 2690 | "nopt@2 || 3": 2691 | version "3.0.6" 2692 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2693 | dependencies: 2694 | abbrev "1" 2695 | 2696 | nopt@^4.0.1: 2697 | version "4.0.1" 2698 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2699 | dependencies: 2700 | abbrev "1" 2701 | osenv "^0.1.4" 2702 | 2703 | normalize-css-color@^1.0.1, normalize-css-color@^1.0.2: 2704 | version "1.0.2" 2705 | resolved "https://registry.yarnpkg.com/normalize-css-color/-/normalize-css-color-1.0.2.tgz#02991e97cccec6623fe573afbbf0de6a1f3e9f8d" 2706 | 2707 | normalize-package-data@^2.3.2: 2708 | version "2.4.0" 2709 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2710 | dependencies: 2711 | hosted-git-info "^2.1.4" 2712 | is-builtin-module "^1.0.0" 2713 | semver "2 || 3 || 4 || 5" 2714 | validate-npm-package-license "^3.0.1" 2715 | 2716 | normalize-path@^2.1.1: 2717 | version "2.1.1" 2718 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2719 | dependencies: 2720 | remove-trailing-separator "^1.0.1" 2721 | 2722 | npm-run-path@^2.0.0: 2723 | version "2.0.2" 2724 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2725 | dependencies: 2726 | path-key "^2.0.0" 2727 | 2728 | "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.2: 2729 | version "4.1.2" 2730 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2731 | dependencies: 2732 | are-we-there-yet "~1.1.2" 2733 | console-control-strings "~1.1.0" 2734 | gauge "~2.7.3" 2735 | set-blocking "~2.0.0" 2736 | 2737 | number-is-nan@^1.0.0: 2738 | version "1.0.1" 2739 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2740 | 2741 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 2742 | version "0.8.2" 2743 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2744 | 2745 | object-assign@*, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 2746 | version "4.1.1" 2747 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2748 | 2749 | object-copy@^0.1.0: 2750 | version "0.1.0" 2751 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2752 | dependencies: 2753 | copy-descriptor "^0.1.0" 2754 | define-property "^0.2.5" 2755 | kind-of "^3.0.3" 2756 | 2757 | object-keys@^1.0.11, object-keys@^1.0.8: 2758 | version "1.0.11" 2759 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2760 | 2761 | object-visit@^1.0.0: 2762 | version "1.0.1" 2763 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2764 | dependencies: 2765 | isobject "^3.0.0" 2766 | 2767 | object.assign@^4.0.4: 2768 | version "4.1.0" 2769 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 2770 | dependencies: 2771 | define-properties "^1.1.2" 2772 | function-bind "^1.1.1" 2773 | has-symbols "^1.0.0" 2774 | object-keys "^1.0.11" 2775 | 2776 | object.pick@^1.3.0: 2777 | version "1.3.0" 2778 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2779 | dependencies: 2780 | isobject "^3.0.1" 2781 | 2782 | once@^1.3.0, once@^1.3.1, once@^1.3.3, once@^1.4.0: 2783 | version "1.4.0" 2784 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2785 | dependencies: 2786 | wrappy "1" 2787 | 2788 | os-browserify@^0.3.0: 2789 | version "0.3.0" 2790 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 2791 | 2792 | os-homedir@^1.0.0: 2793 | version "1.0.2" 2794 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2795 | 2796 | os-locale@^2.0.0: 2797 | version "2.1.0" 2798 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2799 | dependencies: 2800 | execa "^0.7.0" 2801 | lcid "^1.0.0" 2802 | mem "^1.1.0" 2803 | 2804 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2805 | version "1.0.2" 2806 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2807 | 2808 | osenv@0, osenv@^0.1.4: 2809 | version "0.1.5" 2810 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2811 | dependencies: 2812 | os-homedir "^1.0.0" 2813 | os-tmpdir "^1.0.0" 2814 | 2815 | p-finally@^1.0.0: 2816 | version "1.0.0" 2817 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2818 | 2819 | p-limit@^1.1.0: 2820 | version "1.2.0" 2821 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 2822 | dependencies: 2823 | p-try "^1.0.0" 2824 | 2825 | p-locate@^2.0.0: 2826 | version "2.0.0" 2827 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2828 | dependencies: 2829 | p-limit "^1.1.0" 2830 | 2831 | p-try@^1.0.0: 2832 | version "1.0.0" 2833 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2834 | 2835 | pako@~1.0.5: 2836 | version "1.0.6" 2837 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" 2838 | 2839 | parallel-transform@^1.1.0: 2840 | version "1.1.0" 2841 | resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.1.0.tgz#d410f065b05da23081fcd10f28854c29bda33b06" 2842 | dependencies: 2843 | cyclist "~0.2.2" 2844 | inherits "^2.0.3" 2845 | readable-stream "^2.1.5" 2846 | 2847 | parse-asn1@^5.0.0: 2848 | version "5.1.1" 2849 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.1.tgz#f6bf293818332bd0dab54efb16087724745e6ca8" 2850 | dependencies: 2851 | asn1.js "^4.0.0" 2852 | browserify-aes "^1.0.0" 2853 | create-hash "^1.1.0" 2854 | evp_bytestokey "^1.0.0" 2855 | pbkdf2 "^3.0.3" 2856 | 2857 | parse-author@2.0.0: 2858 | version "2.0.0" 2859 | resolved "https://registry.yarnpkg.com/parse-author/-/parse-author-2.0.0.tgz#d3460bf1ddd0dfaeed42da754242e65fb684a81f" 2860 | dependencies: 2861 | author-regex "^1.0.0" 2862 | 2863 | parse-json@^2.2.0: 2864 | version "2.2.0" 2865 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2866 | dependencies: 2867 | error-ex "^1.2.0" 2868 | 2869 | pascalcase@^0.1.1: 2870 | version "0.1.1" 2871 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2872 | 2873 | path-browserify@0.0.0: 2874 | version "0.0.0" 2875 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2876 | 2877 | path-dirname@^1.0.0: 2878 | version "1.0.2" 2879 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2880 | 2881 | path-exists@^3.0.0: 2882 | version "3.0.0" 2883 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2884 | 2885 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2886 | version "1.0.1" 2887 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2888 | 2889 | path-key@^2.0.0: 2890 | version "2.0.1" 2891 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2892 | 2893 | path-type@^2.0.0: 2894 | version "2.0.0" 2895 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2896 | dependencies: 2897 | pify "^2.0.0" 2898 | 2899 | pbkdf2@^3.0.3: 2900 | version "3.0.14" 2901 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" 2902 | dependencies: 2903 | create-hash "^1.1.2" 2904 | create-hmac "^1.1.4" 2905 | ripemd160 "^2.0.1" 2906 | safe-buffer "^5.0.1" 2907 | sha.js "^2.4.8" 2908 | 2909 | performance-now@^0.2.0: 2910 | version "0.2.0" 2911 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2912 | 2913 | performance-now@^2.1.0: 2914 | version "2.1.0" 2915 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2916 | 2917 | pify@^2.0.0: 2918 | version "2.3.0" 2919 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2920 | 2921 | pify@^3.0.0: 2922 | version "3.0.0" 2923 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2924 | 2925 | pkg-dir@^2.0.0: 2926 | version "2.0.0" 2927 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2928 | dependencies: 2929 | find-up "^2.1.0" 2930 | 2931 | posix-character-classes@^0.1.0: 2932 | version "0.1.1" 2933 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2934 | 2935 | postcss-value-parser@^3.3.0: 2936 | version "3.3.0" 2937 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 2938 | 2939 | private@^0.1.6, private@^0.1.7: 2940 | version "0.1.8" 2941 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2942 | 2943 | process-nextick-args@~2.0.0: 2944 | version "2.0.0" 2945 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2946 | 2947 | process@^0.11.10: 2948 | version "0.11.10" 2949 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2950 | 2951 | promise-inflight@^1.0.1: 2952 | version "1.0.1" 2953 | resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" 2954 | 2955 | promise@^7.1.1: 2956 | version "7.3.1" 2957 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 2958 | dependencies: 2959 | asap "~2.0.3" 2960 | 2961 | prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.5.8: 2962 | version "15.6.1" 2963 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.1.tgz#36644453564255ddda391191fb3a125cbdf654ca" 2964 | dependencies: 2965 | fbjs "^0.8.16" 2966 | loose-envify "^1.3.1" 2967 | object-assign "^4.1.1" 2968 | 2969 | prr@~1.0.1: 2970 | version "1.0.1" 2971 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" 2972 | 2973 | pseudomap@^1.0.2: 2974 | version "1.0.2" 2975 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2976 | 2977 | public-encrypt@^4.0.0: 2978 | version "4.0.2" 2979 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.2.tgz#46eb9107206bf73489f8b85b69d91334c6610994" 2980 | dependencies: 2981 | bn.js "^4.1.0" 2982 | browserify-rsa "^4.0.0" 2983 | create-hash "^1.1.0" 2984 | parse-asn1 "^5.0.0" 2985 | randombytes "^2.0.1" 2986 | 2987 | pump@^2.0.0, pump@^2.0.1: 2988 | version "2.0.1" 2989 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" 2990 | dependencies: 2991 | end-of-stream "^1.1.0" 2992 | once "^1.3.1" 2993 | 2994 | pumpify@^1.3.3: 2995 | version "1.4.0" 2996 | resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.4.0.tgz#80b7c5df7e24153d03f0e7ac8a05a5d068bd07fb" 2997 | dependencies: 2998 | duplexify "^3.5.3" 2999 | inherits "^2.0.3" 3000 | pump "^2.0.0" 3001 | 3002 | punycode@1.3.2: 3003 | version "1.3.2" 3004 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 3005 | 3006 | punycode@^1.2.4, punycode@^1.4.1: 3007 | version "1.4.1" 3008 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3009 | 3010 | punycode@^2.1.0: 3011 | version "2.1.0" 3012 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d" 3013 | 3014 | qs@~6.4.0: 3015 | version "6.4.0" 3016 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3017 | 3018 | qs@~6.5.1: 3019 | version "6.5.1" 3020 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 3021 | 3022 | querystring-es3@^0.2.0: 3023 | version "0.2.1" 3024 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 3025 | 3026 | querystring@0.2.0: 3027 | version "0.2.0" 3028 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 3029 | 3030 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 3031 | version "2.0.6" 3032 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" 3033 | dependencies: 3034 | safe-buffer "^5.1.0" 3035 | 3036 | randomfill@^1.0.3: 3037 | version "1.0.4" 3038 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" 3039 | dependencies: 3040 | randombytes "^2.0.5" 3041 | safe-buffer "^5.1.0" 3042 | 3043 | rc@^1.1.7: 3044 | version "1.2.6" 3045 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.6.tgz#eb18989c6d4f4f162c399f79ddd29f3835568092" 3046 | dependencies: 3047 | deep-extend "~0.4.0" 3048 | ini "~1.3.0" 3049 | minimist "^1.2.0" 3050 | strip-json-comments "~2.0.1" 3051 | 3052 | react-native-web@0.0.x: 3053 | version "0.0.130" 3054 | resolved "https://registry.yarnpkg.com/react-native-web/-/react-native-web-0.0.130.tgz#fea4843999f29cb8d8c3680fcfc71e389db28951" 3055 | dependencies: 3056 | animated "^0.2.0" 3057 | array-find-index "^1.0.2" 3058 | babel-runtime "^6.26.0" 3059 | create-react-class "^15.6.0" 3060 | debounce "1.0.2" 3061 | deep-assign "^2.0.0" 3062 | fbjs "^0.8.14" 3063 | hyphenate-style-name "^1.0.2" 3064 | inline-style-prefixer "^3.0.8" 3065 | normalize-css-color "^1.0.2" 3066 | prop-types "^15.5.10" 3067 | react-timer-mixin "^0.13.3" 3068 | 3069 | react-primitives@^0.4.2: 3070 | version "0.4.4" 3071 | resolved "https://registry.yarnpkg.com/react-primitives/-/react-primitives-0.4.4.tgz#cbbc239cd6a9a0f6accb171f70a10d251992bf4f" 3072 | dependencies: 3073 | animated "^0.1.5" 3074 | asap "^2.0.5" 3075 | create-react-class "^15.6.2" 3076 | deline "^1.0.4" 3077 | flexibility "^2.0.1" 3078 | inline-style-prefixer "^2.0.5" 3079 | invariant "^2.2.1" 3080 | normalize-css-color "^1.0.1" 3081 | prop-types "^15.5.10" 3082 | react-native-web "0.0.x" 3083 | react-timer-mixin "^0.13.3" 3084 | string-hash "^1.1.3" 3085 | 3086 | "react-sketchapp@git+https://github.com/LFra/react-sketchapp.git": 3087 | version "1.1.0" 3088 | resolved "git+https://github.com/LFra/react-sketchapp.git#9f04ba093ad4d3e819c31d22a27844b751312aa2" 3089 | dependencies: 3090 | "@skpm/sketchapp-json-flow-types" "^0.2.1" 3091 | error-stack-parser "^2.0.0" 3092 | invariant "^2.2.2" 3093 | murmur2js "^1.0.0" 3094 | normalize-css-color "^1.0.1" 3095 | prop-types "^15.5.8" 3096 | sketch-constants "^1.0.2" 3097 | sketchapp-json-plugin "^0.1.2" 3098 | yoga-layout "^1.9.3" 3099 | 3100 | react-test-renderer@^15.4.2: 3101 | version "15.6.2" 3102 | resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-15.6.2.tgz#d0333434fc2c438092696ca770da5ed48037efa8" 3103 | dependencies: 3104 | fbjs "^0.8.9" 3105 | object-assign "^4.1.0" 3106 | 3107 | react-timer-mixin@^0.13.3: 3108 | version "0.13.3" 3109 | resolved "https://registry.yarnpkg.com/react-timer-mixin/-/react-timer-mixin-0.13.3.tgz#0da8b9f807ec07dc3e854d082c737c65605b3d22" 3110 | 3111 | react@^15.4.2: 3112 | version "15.6.2" 3113 | resolved "https://registry.yarnpkg.com/react/-/react-15.6.2.tgz#dba0434ab439cfe82f108f0f511663908179aa72" 3114 | dependencies: 3115 | create-react-class "^15.6.0" 3116 | fbjs "^0.8.9" 3117 | loose-envify "^1.1.0" 3118 | object-assign "^4.1.0" 3119 | prop-types "^15.5.10" 3120 | 3121 | read-pkg-up@^2.0.0: 3122 | version "2.0.0" 3123 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3124 | dependencies: 3125 | find-up "^2.0.0" 3126 | read-pkg "^2.0.0" 3127 | 3128 | read-pkg@^2.0.0: 3129 | version "2.0.0" 3130 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3131 | dependencies: 3132 | load-json-file "^2.0.0" 3133 | normalize-package-data "^2.3.2" 3134 | path-type "^2.0.0" 3135 | 3136 | "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3: 3137 | version "2.3.6" 3138 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 3139 | dependencies: 3140 | core-util-is "~1.0.0" 3141 | inherits "~2.0.3" 3142 | isarray "~1.0.0" 3143 | process-nextick-args "~2.0.0" 3144 | safe-buffer "~5.1.1" 3145 | string_decoder "~1.1.1" 3146 | util-deprecate "~1.0.1" 3147 | 3148 | readdirp@^2.0.0: 3149 | version "2.1.0" 3150 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3151 | dependencies: 3152 | graceful-fs "^4.1.2" 3153 | minimatch "^3.0.2" 3154 | readable-stream "^2.0.2" 3155 | set-immediate-shim "^1.0.1" 3156 | 3157 | regenerate@^1.2.1: 3158 | version "1.3.3" 3159 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 3160 | 3161 | regenerator-runtime@^0.11.0: 3162 | version "0.11.1" 3163 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 3164 | 3165 | regenerator-transform@^0.10.0: 3166 | version "0.10.1" 3167 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 3168 | dependencies: 3169 | babel-runtime "^6.18.0" 3170 | babel-types "^6.19.0" 3171 | private "^0.1.6" 3172 | 3173 | regex-not@^1.0.0, regex-not@^1.0.2: 3174 | version "1.0.2" 3175 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 3176 | dependencies: 3177 | extend-shallow "^3.0.2" 3178 | safe-regex "^1.1.0" 3179 | 3180 | regexpu-core@^2.0.0: 3181 | version "2.0.0" 3182 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3183 | dependencies: 3184 | regenerate "^1.2.1" 3185 | regjsgen "^0.2.0" 3186 | regjsparser "^0.1.4" 3187 | 3188 | regjsgen@^0.2.0: 3189 | version "0.2.0" 3190 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3191 | 3192 | regjsparser@^0.1.4: 3193 | version "0.1.5" 3194 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3195 | dependencies: 3196 | jsesc "~0.5.0" 3197 | 3198 | remove-trailing-separator@^1.0.1: 3199 | version "1.1.0" 3200 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3201 | 3202 | repeat-element@^1.1.2: 3203 | version "1.1.2" 3204 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3205 | 3206 | repeat-string@^1.5.2, repeat-string@^1.6.1: 3207 | version "1.6.1" 3208 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3209 | 3210 | repeating@^2.0.0: 3211 | version "2.0.1" 3212 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3213 | dependencies: 3214 | is-finite "^1.0.0" 3215 | 3216 | request@2: 3217 | version "2.85.0" 3218 | resolved "https://registry.yarnpkg.com/request/-/request-2.85.0.tgz#5a03615a47c61420b3eb99b7dba204f83603e1fa" 3219 | dependencies: 3220 | aws-sign2 "~0.7.0" 3221 | aws4 "^1.6.0" 3222 | caseless "~0.12.0" 3223 | combined-stream "~1.0.5" 3224 | extend "~3.0.1" 3225 | forever-agent "~0.6.1" 3226 | form-data "~2.3.1" 3227 | har-validator "~5.0.3" 3228 | hawk "~6.0.2" 3229 | http-signature "~1.2.0" 3230 | is-typedarray "~1.0.0" 3231 | isstream "~0.1.2" 3232 | json-stringify-safe "~5.0.1" 3233 | mime-types "~2.1.17" 3234 | oauth-sign "~0.8.2" 3235 | performance-now "^2.1.0" 3236 | qs "~6.5.1" 3237 | safe-buffer "^5.1.1" 3238 | stringstream "~0.0.5" 3239 | tough-cookie "~2.3.3" 3240 | tunnel-agent "^0.6.0" 3241 | uuid "^3.1.0" 3242 | 3243 | request@2.81.0: 3244 | version "2.81.0" 3245 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3246 | dependencies: 3247 | aws-sign2 "~0.6.0" 3248 | aws4 "^1.2.1" 3249 | caseless "~0.12.0" 3250 | combined-stream "~1.0.5" 3251 | extend "~3.0.0" 3252 | forever-agent "~0.6.1" 3253 | form-data "~2.1.1" 3254 | har-validator "~4.2.1" 3255 | hawk "~3.1.3" 3256 | http-signature "~1.1.0" 3257 | is-typedarray "~1.0.0" 3258 | isstream "~0.1.2" 3259 | json-stringify-safe "~5.0.1" 3260 | mime-types "~2.1.7" 3261 | oauth-sign "~0.8.1" 3262 | performance-now "^0.2.0" 3263 | qs "~6.4.0" 3264 | safe-buffer "^5.0.1" 3265 | stringstream "~0.0.4" 3266 | tough-cookie "~2.3.0" 3267 | tunnel-agent "^0.6.0" 3268 | uuid "^3.0.0" 3269 | 3270 | require-directory@^2.1.1: 3271 | version "2.1.1" 3272 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3273 | 3274 | require-main-filename@^1.0.1: 3275 | version "1.0.1" 3276 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3277 | 3278 | resolve-url@^0.2.1: 3279 | version "0.2.1" 3280 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 3281 | 3282 | resolve@~1.1.7: 3283 | version "1.1.7" 3284 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3285 | 3286 | ret@~0.1.10: 3287 | version "0.1.15" 3288 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 3289 | 3290 | right-align@^0.1.1: 3291 | version "0.1.3" 3292 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3293 | dependencies: 3294 | align-text "^0.1.1" 3295 | 3296 | rimraf@2, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2: 3297 | version "2.6.2" 3298 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3299 | dependencies: 3300 | glob "^7.0.5" 3301 | 3302 | ripemd160@^2.0.0, ripemd160@^2.0.1: 3303 | version "2.0.1" 3304 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 3305 | dependencies: 3306 | hash-base "^2.0.0" 3307 | inherits "^2.0.1" 3308 | 3309 | run-queue@^1.0.0, run-queue@^1.0.3: 3310 | version "1.0.3" 3311 | resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" 3312 | dependencies: 3313 | aproba "^1.1.1" 3314 | 3315 | run-sketch-plugin@^1.0.0: 3316 | version "1.0.3" 3317 | resolved "https://registry.yarnpkg.com/run-sketch-plugin/-/run-sketch-plugin-1.0.3.tgz#2eb6112d2b0870adfb03fce8310ade76d7fd8f52" 3318 | dependencies: 3319 | coscript "^1.0.0" 3320 | 3321 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3322 | version "5.1.1" 3323 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3324 | 3325 | safe-regex@^1.1.0: 3326 | version "1.1.0" 3327 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3328 | dependencies: 3329 | ret "~0.1.10" 3330 | 3331 | safer-buffer@^2.1.0: 3332 | version "2.1.2" 3333 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3334 | 3335 | schema-utils@^0.3.0: 3336 | version "0.3.0" 3337 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf" 3338 | dependencies: 3339 | ajv "^5.0.0" 3340 | 3341 | schema-utils@^0.4.5: 3342 | version "0.4.5" 3343 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.5.tgz#21836f0608aac17b78f9e3e24daff14a5ca13a3e" 3344 | dependencies: 3345 | ajv "^6.1.0" 3346 | ajv-keywords "^3.1.0" 3347 | 3348 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3349 | version "5.5.0" 3350 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 3351 | 3352 | semver@~5.3.0: 3353 | version "5.3.0" 3354 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3355 | 3356 | serialize-javascript@^1.4.0: 3357 | version "1.4.0" 3358 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.4.0.tgz#7c958514db6ac2443a8abc062dc9f7886a7f6005" 3359 | 3360 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3361 | version "2.0.0" 3362 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3363 | 3364 | set-immediate-shim@^1.0.1: 3365 | version "1.0.1" 3366 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3367 | 3368 | set-value@^0.4.3: 3369 | version "0.4.3" 3370 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 3371 | dependencies: 3372 | extend-shallow "^2.0.1" 3373 | is-extendable "^0.1.1" 3374 | is-plain-object "^2.0.1" 3375 | to-object-path "^0.3.0" 3376 | 3377 | set-value@^2.0.0: 3378 | version "2.0.0" 3379 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3380 | dependencies: 3381 | extend-shallow "^2.0.1" 3382 | is-extendable "^0.1.1" 3383 | is-plain-object "^2.0.3" 3384 | split-string "^3.0.1" 3385 | 3386 | setimmediate@^1.0.4, setimmediate@^1.0.5: 3387 | version "1.0.5" 3388 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3389 | 3390 | sha.js@^2.4.0, sha.js@^2.4.8: 3391 | version "2.4.11" 3392 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" 3393 | dependencies: 3394 | inherits "^2.0.1" 3395 | safe-buffer "^5.0.1" 3396 | 3397 | shebang-command@^1.2.0: 3398 | version "1.2.0" 3399 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3400 | dependencies: 3401 | shebang-regex "^1.0.0" 3402 | 3403 | shebang-regex@^1.0.0: 3404 | version "1.0.0" 3405 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3406 | 3407 | signal-exit@^3.0.0: 3408 | version "3.0.2" 3409 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3410 | 3411 | sketch-constants@^1.0.2: 3412 | version "1.1.0" 3413 | resolved "https://registry.yarnpkg.com/sketch-constants/-/sketch-constants-1.1.0.tgz#5c2fec53b59b32e7f6f107176e3e54985ad6647d" 3414 | 3415 | sketch-module-web-view@^0.2.6: 3416 | version "0.2.6" 3417 | resolved "https://registry.yarnpkg.com/sketch-module-web-view/-/sketch-module-web-view-0.2.6.tgz#f99be792d3f943dde19db7e9cd36cf4b0437dd70" 3418 | dependencies: 3419 | mocha-js-delegate "^0.1.1" 3420 | 3421 | sketch-polyfill-console@^0.5.2: 3422 | version "0.5.2" 3423 | resolved "https://registry.yarnpkg.com/sketch-polyfill-console/-/sketch-polyfill-console-0.5.2.tgz#36a9b2f4808d06b2d87d40862a1648289bd8eb57" 3424 | dependencies: 3425 | "@skpm/sketch-debugger" "^0.4.1" 3426 | 3427 | sketch-polyfill-fetch@^0.1.4: 3428 | version "0.1.4" 3429 | resolved "https://registry.yarnpkg.com/sketch-polyfill-fetch/-/sketch-polyfill-fetch-0.1.4.tgz#03e73076403d6c3fb86f314523621be6738cd4e6" 3430 | dependencies: 3431 | cocoascript-class "^0.1.2" 3432 | 3433 | sketch-polyfill-setinterval@^0.1.0: 3434 | version "0.1.0" 3435 | resolved "https://registry.yarnpkg.com/sketch-polyfill-setinterval/-/sketch-polyfill-setinterval-0.1.0.tgz#0f7fe50e095a965f4201f99a0d8c3e46dd466c48" 3436 | 3437 | sketch-polyfill-settimeout@^0.2.0: 3438 | version "0.2.0" 3439 | resolved "https://registry.yarnpkg.com/sketch-polyfill-settimeout/-/sketch-polyfill-settimeout-0.2.0.tgz#920ea87c83dcf2b73debb59e26d0de371958b43b" 3440 | 3441 | sketchapp-json-flow-types@^0.0.2: 3442 | version "0.0.2" 3443 | resolved "https://registry.yarnpkg.com/sketchapp-json-flow-types/-/sketchapp-json-flow-types-0.0.2.tgz#226496e79f6a3845b89021d666b090ab4558d7d0" 3444 | 3445 | sketchapp-json-plugin@^0.1.2: 3446 | version "0.1.2" 3447 | resolved "https://registry.yarnpkg.com/sketchapp-json-plugin/-/sketchapp-json-plugin-0.1.2.tgz#f3a77cf309e82dfb0d4ca0de681a54b3c5ac7425" 3448 | dependencies: 3449 | invariant "^2.2.2" 3450 | sketchapp-json-flow-types "^0.0.2" 3451 | 3452 | slash@^1.0.0: 3453 | version "1.0.0" 3454 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3455 | 3456 | snapdragon-node@^2.0.1: 3457 | version "2.1.1" 3458 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3459 | dependencies: 3460 | define-property "^1.0.0" 3461 | isobject "^3.0.0" 3462 | snapdragon-util "^3.0.1" 3463 | 3464 | snapdragon-util@^3.0.1: 3465 | version "3.0.1" 3466 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3467 | dependencies: 3468 | kind-of "^3.2.0" 3469 | 3470 | snapdragon@^0.8.1: 3471 | version "0.8.2" 3472 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3473 | dependencies: 3474 | base "^0.11.1" 3475 | debug "^2.2.0" 3476 | define-property "^0.2.5" 3477 | extend-shallow "^2.0.1" 3478 | map-cache "^0.2.2" 3479 | source-map "^0.5.6" 3480 | source-map-resolve "^0.5.0" 3481 | use "^3.1.0" 3482 | 3483 | sntp@1.x.x: 3484 | version "1.0.9" 3485 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3486 | dependencies: 3487 | hoek "2.x.x" 3488 | 3489 | sntp@2.x.x: 3490 | version "2.1.0" 3491 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 3492 | dependencies: 3493 | hoek "4.x.x" 3494 | 3495 | source-list-map@^2.0.0: 3496 | version "2.0.0" 3497 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" 3498 | 3499 | source-map-resolve@^0.5.0: 3500 | version "0.5.1" 3501 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a" 3502 | dependencies: 3503 | atob "^2.0.0" 3504 | decode-uri-component "^0.2.0" 3505 | resolve-url "^0.2.1" 3506 | source-map-url "^0.4.0" 3507 | urix "^0.1.0" 3508 | 3509 | source-map-support@^0.4.15: 3510 | version "0.4.18" 3511 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3512 | dependencies: 3513 | source-map "^0.5.6" 3514 | 3515 | source-map-url@^0.4.0: 3516 | version "0.4.0" 3517 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3518 | 3519 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1: 3520 | version "0.5.7" 3521 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3522 | 3523 | source-map@^0.6.1, source-map@~0.6.1: 3524 | version "0.6.1" 3525 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3526 | 3527 | spdx-correct@^3.0.0: 3528 | version "3.0.0" 3529 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 3530 | dependencies: 3531 | spdx-expression-parse "^3.0.0" 3532 | spdx-license-ids "^3.0.0" 3533 | 3534 | spdx-exceptions@^2.1.0: 3535 | version "2.1.0" 3536 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 3537 | 3538 | spdx-expression-parse@^3.0.0: 3539 | version "3.0.0" 3540 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 3541 | dependencies: 3542 | spdx-exceptions "^2.1.0" 3543 | spdx-license-ids "^3.0.0" 3544 | 3545 | spdx-license-ids@^3.0.0: 3546 | version "3.0.0" 3547 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 3548 | 3549 | split-string@^3.0.1, split-string@^3.0.2: 3550 | version "3.1.0" 3551 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3552 | dependencies: 3553 | extend-shallow "^3.0.0" 3554 | 3555 | sprintf-js@~1.0.2: 3556 | version "1.0.3" 3557 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3558 | 3559 | sshpk@^1.7.0: 3560 | version "1.14.1" 3561 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb" 3562 | dependencies: 3563 | asn1 "~0.2.3" 3564 | assert-plus "^1.0.0" 3565 | dashdash "^1.12.0" 3566 | getpass "^0.1.1" 3567 | optionalDependencies: 3568 | bcrypt-pbkdf "^1.0.0" 3569 | ecc-jsbn "~0.1.1" 3570 | jsbn "~0.1.0" 3571 | tweetnacl "~0.14.0" 3572 | 3573 | ssri@^5.2.4: 3574 | version "5.3.0" 3575 | resolved "https://registry.yarnpkg.com/ssri/-/ssri-5.3.0.tgz#ba3872c9c6d33a0704a7d71ff045e5ec48999d06" 3576 | dependencies: 3577 | safe-buffer "^5.1.1" 3578 | 3579 | stackframe@^1.0.3: 3580 | version "1.0.4" 3581 | resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.0.4.tgz#357b24a992f9427cba6b545d96a14ed2cbca187b" 3582 | 3583 | static-extend@^0.1.1: 3584 | version "0.1.2" 3585 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3586 | dependencies: 3587 | define-property "^0.2.5" 3588 | object-copy "^0.1.0" 3589 | 3590 | stream-browserify@^2.0.1: 3591 | version "2.0.1" 3592 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3593 | dependencies: 3594 | inherits "~2.0.1" 3595 | readable-stream "^2.0.2" 3596 | 3597 | stream-each@^1.1.0: 3598 | version "1.2.2" 3599 | resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.2.tgz#8e8c463f91da8991778765873fe4d960d8f616bd" 3600 | dependencies: 3601 | end-of-stream "^1.1.0" 3602 | stream-shift "^1.0.0" 3603 | 3604 | stream-http@^2.7.2: 3605 | version "2.8.1" 3606 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.1.tgz#d0441be1a457a73a733a8a7b53570bebd9ef66a4" 3607 | dependencies: 3608 | builtin-status-codes "^3.0.0" 3609 | inherits "^2.0.1" 3610 | readable-stream "^2.3.3" 3611 | to-arraybuffer "^1.0.0" 3612 | xtend "^4.0.0" 3613 | 3614 | stream-shift@^1.0.0: 3615 | version "1.0.0" 3616 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 3617 | 3618 | string-hash@^1.1.3: 3619 | version "1.1.3" 3620 | resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b" 3621 | 3622 | string-width@^1.0.1, string-width@^1.0.2: 3623 | version "1.0.2" 3624 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3625 | dependencies: 3626 | code-point-at "^1.0.0" 3627 | is-fullwidth-code-point "^1.0.0" 3628 | strip-ansi "^3.0.0" 3629 | 3630 | string-width@^2.0.0: 3631 | version "2.1.1" 3632 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3633 | dependencies: 3634 | is-fullwidth-code-point "^2.0.0" 3635 | strip-ansi "^4.0.0" 3636 | 3637 | string_decoder@^1.0.0, string_decoder@~1.1.1: 3638 | version "1.1.1" 3639 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3640 | dependencies: 3641 | safe-buffer "~5.1.0" 3642 | 3643 | stringstream@~0.0.4, stringstream@~0.0.5: 3644 | version "0.0.5" 3645 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3646 | 3647 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3648 | version "3.0.1" 3649 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3650 | dependencies: 3651 | ansi-regex "^2.0.0" 3652 | 3653 | strip-ansi@^4.0.0: 3654 | version "4.0.0" 3655 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3656 | dependencies: 3657 | ansi-regex "^3.0.0" 3658 | 3659 | strip-bom@^3.0.0: 3660 | version "3.0.0" 3661 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3662 | 3663 | strip-eof@^1.0.0: 3664 | version "1.0.0" 3665 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3666 | 3667 | strip-json-comments@~2.0.1: 3668 | version "2.0.1" 3669 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3670 | 3671 | styled-components@^2.1.0: 3672 | version "2.4.0" 3673 | resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-2.4.0.tgz#086d0fd483d54638837fca3ea546a030b94adf75" 3674 | dependencies: 3675 | buffer "^5.0.3" 3676 | css-to-react-native "^2.0.3" 3677 | fbjs "^0.8.9" 3678 | hoist-non-react-statics "^1.2.0" 3679 | is-plain-object "^2.0.1" 3680 | prop-types "^15.5.4" 3681 | stylis "^3.4.0" 3682 | supports-color "^3.2.3" 3683 | 3684 | stylis@^3.4.0: 3685 | version "3.5.0" 3686 | resolved "https://registry.yarnpkg.com/stylis/-/stylis-3.5.0.tgz#016fa239663d77f868fef5b67cf201c4b7c701e1" 3687 | 3688 | supports-color@^2.0.0: 3689 | version "2.0.0" 3690 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3691 | 3692 | supports-color@^3.2.3: 3693 | version "3.2.3" 3694 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3695 | dependencies: 3696 | has-flag "^1.0.0" 3697 | 3698 | supports-color@^4.2.1: 3699 | version "4.5.0" 3700 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3701 | dependencies: 3702 | has-flag "^2.0.0" 3703 | 3704 | tapable@^0.2.7: 3705 | version "0.2.8" 3706 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" 3707 | 3708 | tar-pack@^3.4.0: 3709 | version "3.4.1" 3710 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 3711 | dependencies: 3712 | debug "^2.2.0" 3713 | fstream "^1.0.10" 3714 | fstream-ignore "^1.0.5" 3715 | once "^1.3.3" 3716 | readable-stream "^2.1.4" 3717 | rimraf "^2.5.1" 3718 | tar "^2.2.1" 3719 | uid-number "^0.0.6" 3720 | 3721 | tar@^2.0.0, tar@^2.2.1: 3722 | version "2.2.1" 3723 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3724 | dependencies: 3725 | block-stream "*" 3726 | fstream "^1.0.2" 3727 | inherits "2" 3728 | 3729 | through2@^2.0.0: 3730 | version "2.0.3" 3731 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3732 | dependencies: 3733 | readable-stream "^2.1.5" 3734 | xtend "~4.0.1" 3735 | 3736 | timers-browserify@^2.0.4: 3737 | version "2.0.6" 3738 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.6.tgz#241e76927d9ca05f4d959819022f5b3664b64bae" 3739 | dependencies: 3740 | setimmediate "^1.0.4" 3741 | 3742 | to-arraybuffer@^1.0.0: 3743 | version "1.0.1" 3744 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3745 | 3746 | to-fast-properties@^1.0.3: 3747 | version "1.0.3" 3748 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3749 | 3750 | to-object-path@^0.3.0: 3751 | version "0.3.0" 3752 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3753 | dependencies: 3754 | kind-of "^3.0.2" 3755 | 3756 | to-regex-range@^2.1.0: 3757 | version "2.1.1" 3758 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3759 | dependencies: 3760 | is-number "^3.0.0" 3761 | repeat-string "^1.6.1" 3762 | 3763 | to-regex@^3.0.1, to-regex@^3.0.2: 3764 | version "3.0.2" 3765 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3766 | dependencies: 3767 | define-property "^2.0.2" 3768 | extend-shallow "^3.0.2" 3769 | regex-not "^1.0.2" 3770 | safe-regex "^1.1.0" 3771 | 3772 | tough-cookie@~2.3.0, tough-cookie@~2.3.3: 3773 | version "2.3.4" 3774 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 3775 | dependencies: 3776 | punycode "^1.4.1" 3777 | 3778 | trim-right@^1.0.1: 3779 | version "1.0.1" 3780 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3781 | 3782 | tty-browserify@0.0.0: 3783 | version "0.0.0" 3784 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3785 | 3786 | tunnel-agent@^0.6.0: 3787 | version "0.6.0" 3788 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3789 | dependencies: 3790 | safe-buffer "^5.0.1" 3791 | 3792 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3793 | version "0.14.5" 3794 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3795 | 3796 | typedarray@^0.0.6: 3797 | version "0.0.6" 3798 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3799 | 3800 | ua-parser-js@^0.7.9: 3801 | version "0.7.17" 3802 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac" 3803 | 3804 | uglify-es@^3.3.4: 3805 | version "3.3.9" 3806 | resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.9.tgz#0c1c4f0700bed8dbc124cdb304d2592ca203e677" 3807 | dependencies: 3808 | commander "~2.13.0" 3809 | source-map "~0.6.1" 3810 | 3811 | uglify-js@^2.8.29: 3812 | version "2.8.29" 3813 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3814 | dependencies: 3815 | source-map "~0.5.1" 3816 | yargs "~3.10.0" 3817 | optionalDependencies: 3818 | uglify-to-browserify "~1.0.0" 3819 | 3820 | uglify-to-browserify@~1.0.0: 3821 | version "1.0.2" 3822 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3823 | 3824 | uglifyjs-webpack-plugin@^0.4.6: 3825 | version "0.4.6" 3826 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" 3827 | dependencies: 3828 | source-map "^0.5.6" 3829 | uglify-js "^2.8.29" 3830 | webpack-sources "^1.0.1" 3831 | 3832 | uglifyjs-webpack-plugin@^1.0.1: 3833 | version "1.2.4" 3834 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.4.tgz#5eec941b2e9b8538be0a20fc6eda25b14c7c1043" 3835 | dependencies: 3836 | cacache "^10.0.4" 3837 | find-cache-dir "^1.0.0" 3838 | schema-utils "^0.4.5" 3839 | serialize-javascript "^1.4.0" 3840 | source-map "^0.6.1" 3841 | uglify-es "^3.3.4" 3842 | webpack-sources "^1.1.0" 3843 | worker-farm "^1.5.2" 3844 | 3845 | uid-number@^0.0.6: 3846 | version "0.0.6" 3847 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3848 | 3849 | union-value@^1.0.0: 3850 | version "1.0.0" 3851 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3852 | dependencies: 3853 | arr-union "^3.1.0" 3854 | get-value "^2.0.6" 3855 | is-extendable "^0.1.1" 3856 | set-value "^0.4.3" 3857 | 3858 | unique-filename@^1.1.0: 3859 | version "1.1.0" 3860 | resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.0.tgz#d05f2fe4032560871f30e93cbe735eea201514f3" 3861 | dependencies: 3862 | unique-slug "^2.0.0" 3863 | 3864 | unique-slug@^2.0.0: 3865 | version "2.0.0" 3866 | resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.0.tgz#db6676e7c7cc0629878ff196097c78855ae9f4ab" 3867 | dependencies: 3868 | imurmurhash "^0.1.4" 3869 | 3870 | unset-value@^1.0.0: 3871 | version "1.0.0" 3872 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3873 | dependencies: 3874 | has-value "^0.3.1" 3875 | isobject "^3.0.0" 3876 | 3877 | upath@^1.0.0: 3878 | version "1.0.4" 3879 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.0.4.tgz#ee2321ba0a786c50973db043a50b7bcba822361d" 3880 | 3881 | uri-js@^3.0.2: 3882 | version "3.0.2" 3883 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-3.0.2.tgz#f90b858507f81dea4dcfbb3c4c3dbfa2b557faaa" 3884 | dependencies: 3885 | punycode "^2.1.0" 3886 | 3887 | urix@^0.1.0: 3888 | version "0.1.0" 3889 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3890 | 3891 | url@^0.11.0: 3892 | version "0.11.0" 3893 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3894 | dependencies: 3895 | punycode "1.3.2" 3896 | querystring "0.2.0" 3897 | 3898 | use@^3.1.0: 3899 | version "3.1.0" 3900 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544" 3901 | dependencies: 3902 | kind-of "^6.0.2" 3903 | 3904 | util-deprecate@~1.0.1: 3905 | version "1.0.2" 3906 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3907 | 3908 | util@0.10.3, util@^0.10.3: 3909 | version "0.10.3" 3910 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3911 | dependencies: 3912 | inherits "2.0.1" 3913 | 3914 | uuid@^3.0.0, uuid@^3.1.0: 3915 | version "3.2.1" 3916 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 3917 | 3918 | validate-npm-package-license@^3.0.1: 3919 | version "3.0.3" 3920 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 3921 | dependencies: 3922 | spdx-correct "^3.0.0" 3923 | spdx-expression-parse "^3.0.0" 3924 | 3925 | verror@1.10.0: 3926 | version "1.10.0" 3927 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3928 | dependencies: 3929 | assert-plus "^1.0.0" 3930 | core-util-is "1.0.2" 3931 | extsprintf "^1.2.0" 3932 | 3933 | vm-browserify@0.0.4: 3934 | version "0.0.4" 3935 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 3936 | dependencies: 3937 | indexof "0.0.1" 3938 | 3939 | watchpack@^1.4.0: 3940 | version "1.5.0" 3941 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.5.0.tgz#231e783af830a22f8966f65c4c4bacc814072eed" 3942 | dependencies: 3943 | chokidar "^2.0.2" 3944 | graceful-fs "^4.1.2" 3945 | neo-async "^2.5.0" 3946 | 3947 | webpack-sources@^1.0.1, webpack-sources@^1.1.0: 3948 | version "1.1.0" 3949 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54" 3950 | dependencies: 3951 | source-list-map "^2.0.0" 3952 | source-map "~0.6.1" 3953 | 3954 | webpack@^3.0.0: 3955 | version "3.11.0" 3956 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.11.0.tgz#77da451b1d7b4b117adaf41a1a93b5742f24d894" 3957 | dependencies: 3958 | acorn "^5.0.0" 3959 | acorn-dynamic-import "^2.0.0" 3960 | ajv "^6.1.0" 3961 | ajv-keywords "^3.1.0" 3962 | async "^2.1.2" 3963 | enhanced-resolve "^3.4.0" 3964 | escope "^3.6.0" 3965 | interpret "^1.0.0" 3966 | json-loader "^0.5.4" 3967 | json5 "^0.5.1" 3968 | loader-runner "^2.3.0" 3969 | loader-utils "^1.1.0" 3970 | memory-fs "~0.4.1" 3971 | mkdirp "~0.5.0" 3972 | node-libs-browser "^2.0.0" 3973 | source-map "^0.5.3" 3974 | supports-color "^4.2.1" 3975 | tapable "^0.2.7" 3976 | uglifyjs-webpack-plugin "^0.4.6" 3977 | watchpack "^1.4.0" 3978 | webpack-sources "^1.0.1" 3979 | yargs "^8.0.2" 3980 | 3981 | whatwg-fetch@>=0.10.0: 3982 | version "2.0.4" 3983 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f" 3984 | 3985 | which-module@^2.0.0: 3986 | version "2.0.0" 3987 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3988 | 3989 | which@1, which@^1.2.9: 3990 | version "1.3.0" 3991 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3992 | dependencies: 3993 | isexe "^2.0.0" 3994 | 3995 | wide-align@^1.1.0: 3996 | version "1.1.2" 3997 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3998 | dependencies: 3999 | string-width "^1.0.2" 4000 | 4001 | window-size@0.1.0: 4002 | version "0.1.0" 4003 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4004 | 4005 | wordwrap@0.0.2: 4006 | version "0.0.2" 4007 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4008 | 4009 | worker-farm@^1.5.2: 4010 | version "1.6.0" 4011 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.6.0.tgz#aecc405976fab5a95526180846f0dba288f3a4a0" 4012 | dependencies: 4013 | errno "~0.1.7" 4014 | 4015 | wrap-ansi@^2.0.0: 4016 | version "2.1.0" 4017 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4018 | dependencies: 4019 | string-width "^1.0.1" 4020 | strip-ansi "^3.0.1" 4021 | 4022 | wrappy@1: 4023 | version "1.0.2" 4024 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4025 | 4026 | xtend@^4.0.0, xtend@~4.0.1: 4027 | version "4.0.1" 4028 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4029 | 4030 | y18n@^3.2.1: 4031 | version "3.2.1" 4032 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4033 | 4034 | y18n@^4.0.0: 4035 | version "4.0.0" 4036 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 4037 | 4038 | yallist@^2.1.2: 4039 | version "2.1.2" 4040 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4041 | 4042 | yargs-parser@^7.0.0: 4043 | version "7.0.0" 4044 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 4045 | dependencies: 4046 | camelcase "^4.1.0" 4047 | 4048 | yargs@^8.0.2: 4049 | version "8.0.2" 4050 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 4051 | dependencies: 4052 | camelcase "^4.1.0" 4053 | cliui "^3.2.0" 4054 | decamelize "^1.1.1" 4055 | get-caller-file "^1.0.1" 4056 | os-locale "^2.0.0" 4057 | read-pkg-up "^2.0.0" 4058 | require-directory "^2.1.1" 4059 | require-main-filename "^1.0.1" 4060 | set-blocking "^2.0.0" 4061 | string-width "^2.0.0" 4062 | which-module "^2.0.0" 4063 | y18n "^3.2.1" 4064 | yargs-parser "^7.0.0" 4065 | 4066 | yargs@^9.0.1: 4067 | version "9.0.1" 4068 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" 4069 | dependencies: 4070 | camelcase "^4.1.0" 4071 | cliui "^3.2.0" 4072 | decamelize "^1.1.1" 4073 | get-caller-file "^1.0.1" 4074 | os-locale "^2.0.0" 4075 | read-pkg-up "^2.0.0" 4076 | require-directory "^2.1.1" 4077 | require-main-filename "^1.0.1" 4078 | set-blocking "^2.0.0" 4079 | string-width "^2.0.0" 4080 | which-module "^2.0.0" 4081 | y18n "^3.2.1" 4082 | yargs-parser "^7.0.0" 4083 | 4084 | yargs@~3.10.0: 4085 | version "3.10.0" 4086 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4087 | dependencies: 4088 | camelcase "^1.0.2" 4089 | cliui "^2.1.0" 4090 | decamelize "^1.0.0" 4091 | window-size "0.1.0" 4092 | 4093 | yesno@^0.0.1: 4094 | version "0.0.1" 4095 | resolved "https://registry.yarnpkg.com/yesno/-/yesno-0.0.1.tgz#ffbc04ff3d6f99dad24f7463134e9b92ae41bef6" 4096 | 4097 | yoga-layout@^1.9.3: 4098 | version "1.9.3" 4099 | resolved "https://registry.yarnpkg.com/yoga-layout/-/yoga-layout-1.9.3.tgz#f851935187f6d2945639b79c57ee0eac2fb7d886" 4100 | dependencies: 4101 | autogypi "^0.2.2" 4102 | nbind "^0.3.14" 4103 | node-gyp "^3.6.2" 4104 | --------------------------------------------------------------------------------