├── .gitignore ├── LICENSE ├── README.md ├── dist └── styles.css ├── index.html ├── package.json ├── plugins ├── css-grid │ └── index.js ├── object-fit │ └── index.js └── simple-buttons │ └── index.js ├── src └── styles.css ├── tailwind.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | yarn-error.log 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Adam Wathan 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Tailwind CSS Example Plugins 2 | 3 | To get started, clone the project and install the dependencies: 4 | 5 | ```sh 6 | # Using npm 7 | npm install 8 | 9 | # Using Yarn 10 | yarn 11 | ``` 12 | 13 | After that, you can process the CSS by running: 14 | 15 | ```sh 16 | # Using npm 17 | npm run build 18 | 19 | # Using Yarn 20 | yarn run build 21 | ``` 22 | 23 | Load up `./index.html` in your browser and you're off to the races! 24 | 25 | ## Object-Fit Utilities 26 | 27 | [View demo](https://tailwindcss.github.io/plugin-examples/#object-fit) · [View source](https://github.com/tailwindcss/plugin-examples/blob/master/plugins/object-fit/index.js) 28 | 29 | In `plugins/object-fit/index.js` you'll find an example of a plugin that adds a set of simple, non-configurable utility classes for the `object-fit` property. 30 | 31 | ![](https://user-images.githubusercontent.com/4323180/37477273-a16ac9fc-284d-11e8-9ec6-da819f66871e.png) 32 | 33 | The only option it exposes are the variants you'd like to generate (`responsive`, `hover`, `focus`, etc.), which you pass to the plugin as a simple array: 34 | 35 | ```js 36 | module.exports = { 37 | // ... 38 | 39 | plugins: [ 40 | // ... 41 | require('./plugins/object-fit')(['responsive']), 42 | ], 43 | } 44 | ``` 45 | 46 | This is just about the simplest type of plugin you could make. 47 | 48 | ## Simple Buttons 49 | 50 | [View demo](https://tailwindcss.github.io/plugin-examples/#simple-buttons) · [View source](https://github.com/tailwindcss/plugin-examples/blob/master/plugins/simple-buttons/index.js) 51 | 52 | In `plugins/simple-buttons/index.js` you'll find an example of a plugin that adds new button component classes. 53 | 54 | ![](https://user-images.githubusercontent.com/4323180/37477287-b367cf88-284d-11e8-823b-f793c3ba1119.png) 55 | 56 | This plugin exposes quite a number of configuration options which can be passed to the plugin as an object: 57 | 58 | ```js 59 | module.exports = { 60 | // ... 61 | 62 | plugins: [ 63 | // ... 64 | require('./plugins/simple-buttons')({ 65 | 66 | 67 | // Set some default styles for all buttons. 68 | borderRadius: '.25rem', // Default: .25rem 69 | fontWeight: '600', // Default: 600 70 | lineHeight: '1.25', // Default: 1.25 71 | fontSize: '1rem', // Default: 1rem 72 | padding: '.5rem 1rem', // Default: .5rem 1rem 73 | 74 | 75 | // Specify the button colors you'd like to generate. 76 | // 77 | // By default, buttons are generated for all of Tailwind's 78 | // default base colors. 79 | colors: { 80 | // Class name: `.btn-primary` 81 | primary: { 82 | background: colors['blue'], 83 | text: colors['white'], 84 | }, 85 | // Class name: `.btn-secondary` 86 | secondary: { 87 | background: colors['grey'], 88 | text: colors['black'], 89 | }, 90 | }, 91 | 92 | 93 | // Specify additional button sizes you'd like to generate. 94 | // 95 | // You can override any of the default styles from above 96 | // at any given button size. 97 | sizes: { 98 | // Class name: `.btn-sm` 99 | sm: { 100 | fontSize: '.875rem', 101 | padding: '.5rem .75rem', 102 | }, 103 | // Class name: `.btn-lg` 104 | lg: { 105 | fontSize: '1.25rem', 106 | padding: '.75rem 1.5rem', 107 | borderRadius: '.5rem', 108 | } 109 | } 110 | 111 | }), 112 | ], 113 | } 114 | ``` 115 | 116 | Configuration is entirely optional; the plugin will use sane defaults based on Tailwind's default configuration if you don't provide any of your own overrides. 117 | 118 | If you want to extend the plugin's default configuration instead of overriding it entirely, you can pass a function which accepts the default configuration, modifies it, and returns a new configuration object: 119 | 120 | ```js 121 | module.exports = { 122 | // ... 123 | 124 | plugins: [ 125 | // ... 126 | require('./plugins/simple-buttons')(function (options) { 127 | options.sizes = Object.assign(options.sizes, { 128 | xl: { 129 | fontSize: '1.5rem', 130 | padding: '1rem 2rem', 131 | borderRadius: '.75rem', 132 | } 133 | }) 134 | 135 | return options 136 | }), 137 | ], 138 | } 139 | ``` 140 | 141 | Again, the sky is the limit in terms of the API a plugin exposes for configuration. You can do anything you want! 142 | 143 | ## CSS Grid Utilities 144 | 145 | [View demo](https://tailwindcss.github.io/plugin-examples/#css-grid) · [View source](https://github.com/tailwindcss/plugin-examples/blob/master/plugins/css-grid/index.js) 146 | 147 | In `plugins/css-grid/index.js` you'll find an example of a plugin that adds new utilities for using [CSS Grid Layout](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout). 148 | 149 | ![](https://user-images.githubusercontent.com/4323180/37525015-fb5c78f2-2901-11e8-97be-18c66d12bf84.png) 150 | 151 | It exposes three configuration options: 152 | 153 | - `grids`, for specifying all of the grid sizes you'd like to generate 154 | - `gaps`, for specifying the gap sizes you'd like to generate 155 | - `variants`, for specifying which variants to generate 156 | 157 | ```js 158 | module.exports = { 159 | // ... 160 | 161 | plugins: [ 162 | // ... 163 | require('./plugins/css-grid')({ 164 | grids: [2, 3, 5, 6, 8, 10, 12], 165 | gaps: { 166 | 0: '0', 167 | 4: '1rem', 168 | 8: '2rem', 169 | }, 170 | variants: ['responsive'], 171 | }), 172 | ], 173 | } 174 | ``` 175 | 176 | With zero configuration, it will generate grids from 1 to 12 columns in size, no gap sizes, and `responsive` variants for each new utility. 177 | 178 | The plugin generates the following sets of classes: 179 | 180 | - `.grid`, for setting `display: grid` on an element 181 | - `.grid-columns-{size}`, for specifying the number of columns in the grid 182 | - `.grid-gap-{size}`, for specifying the size of the gap between columns/rows 183 | - `.col-span-{columns}`, for specifying how wide a column should be 184 | - `.col-start-{line}` and `.col-end-{line}`, for specifying a column's start and end points explicitly (useful for reordering columns or leaving gaps) 185 | 186 | It's not really practical to expose all of the power of CSS Grid through utilities, but this plugin is a good example of using CSS Grid to replace a column-only float or Flexbox grid. 187 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tailwind CSS Example Plugins 5 | 6 | 7 | 8 | 9 | 10 |
11 |
12 |

Object-Fit Utilities

13 |

14 | Learn more 15 | · 16 | View plugin source 17 |

18 | 19 |
20 |
21 | .object-contain 22 |
23 | 24 |
25 |
26 |
27 | .object-cover 28 |
29 | 30 |
31 |
32 |
33 | .object-fill 34 |
35 | 36 |
37 |
38 |
39 | .object-none 40 |
41 | 42 |
43 |
44 |
45 | .object-scale 46 |
47 | 48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |

Simple Buttons

56 |

57 | Learn more 58 | · 59 | View plugin source 60 |

61 |
62 |

Colors

63 |
64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 |
77 |
78 |
79 |

Sizes

80 |
81 | 82 | 83 | 84 |
85 |
86 |
87 |
88 |
89 |
90 |

CSS Grid Utilities

91 |

92 | Learn more 93 | · 94 | View plugin source 95 |

96 |
97 |

Auto-column sizes

98 |
99 | .grid.grid-columns-2 100 |
101 |
102 |
103 |
104 |
105 |
106 | .grid.grid-columns-3 107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 | .grid.grid-columns-4 115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 | .grid.grid-columns-5 124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 | .grid.grid-columns-6 134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 | .grid.grid-columns-8 145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 | .grid.grid-columns-10 158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 | .grid.grid-columns-12 173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |

Spanning multiple columns

191 |
192 | .grid.grid-columns-12 193 |
194 |
195 | .col-span-8 196 |
197 |
198 | .col-span-4 199 |
200 |
201 |
202 |
203 | .grid.grid-columns-5 204 |
205 |
206 | .col-span-2 207 |
208 |
209 | .col-span-3 210 |
211 |
212 |
213 |
214 |
215 |

Explicit start and end points

216 |
217 | .grid.grid-columns-12 218 |
219 |
220 | .col-start-1.col-end-4 221 |
222 |
223 | .col-start-6.col-end-10 224 |
225 |
226 |
227 |
228 |
229 |

Gutters

230 |
231 | .grid.grid-columns-3.grid-gap-0 232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 | .grid.grid-columns-3.grid-gap-4 240 |
241 |
242 |
243 |
244 |
245 |
246 |
247 | .grid.grid-columns-3.grid-gap-8 248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 | 258 | 259 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "build": "cross-env NODE_ENV=development node_modules/tailwindcss/lib/cli.js build ./src/styles.css -c ./tailwind.js -o ./dist/styles.css" 5 | }, 6 | "devDependencies": { 7 | "color": "^3.0.0", 8 | "cross-env": "^5.1", 9 | "lodash": "^4.17.5", 10 | "tailwindcss": "^0.5.1" 11 | }, 12 | "postcss": { 13 | "tailwindcss": "./tailwind.js" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /plugins/css-grid/index.js: -------------------------------------------------------------------------------- 1 | const _ = require('lodash') 2 | 3 | module.exports = function ({ grids = _.range(1, 12), gaps = {}, variants = ['responsive']}) { 4 | return function ({ e, addUtilities }) { 5 | addUtilities([ 6 | { '.grid': { display: 'grid' } }, 7 | { '.grid-dense': { gridAutoFlow: 'dense' } }, 8 | ..._.map(gaps, (size, name) => ({ 9 | [`.${e(`grid-gap-${name}`)}`]: { gridGap: size }, 10 | })), 11 | ...grids.map(columns => ({ 12 | [`.grid-columns-${columns}`]: { 13 | gridTemplateColumns: `repeat(${columns}, 1fr)`, 14 | } 15 | })), 16 | ..._.range(1, _.max(grids) + 1).map(span => ({ 17 | [`.col-span-${span}`]: { 18 | gridColumnStart: `span ${span}`, 19 | } 20 | })), 21 | ..._.range(1, _.max(grids) + 2).map(line => ({ 22 | [`.col-start-${line}`]: { 23 | gridColumnStart: `${line}`, 24 | }, 25 | [`.col-end-${line}`]: { 26 | gridColumnEnd: `${line}`, 27 | }, 28 | })), 29 | ], variants) 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /plugins/object-fit/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (variants) { 2 | return function ({ addUtilities }) { 3 | addUtilities({ 4 | '.object-contain': { objectFit: 'contain' }, 5 | '.object-cover': { objectFit: 'cover' }, 6 | '.object-fill': { objectFit: 'fill' }, 7 | '.object-none': { objectFit: 'none' }, 8 | '.object-scale': { objectFit: 'scale-down' }, 9 | }, variants) 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /plugins/simple-buttons/index.js: -------------------------------------------------------------------------------- 1 | const _ = require('lodash') 2 | const Color = require('color') 3 | const defaultConfig = require('tailwindcss/defaultConfig')() 4 | 5 | function defaultOptions() { 6 | return { 7 | borderRadius: '.25rem', 8 | fontWeight: '600', 9 | lineHeight: '1.25', 10 | fontSize: '1rem', 11 | padding: '.5rem 1rem', 12 | colors: { 13 | white: { 14 | background: defaultConfig.colors['white'], 15 | text: defaultConfig.colors['black'], 16 | }, 17 | black: { 18 | background: defaultConfig.colors['black'], 19 | text: defaultConfig.colors['white'], 20 | }, 21 | grey: { 22 | background: defaultConfig.colors['grey'], 23 | text: defaultConfig.colors['black'], 24 | }, 25 | red: { 26 | background: defaultConfig.colors['red'], 27 | text: defaultConfig.colors['white'], 28 | }, 29 | orange: { 30 | background: defaultConfig.colors['orange'], 31 | text: defaultConfig.colors['white'], 32 | }, 33 | yellow: { 34 | background: defaultConfig.colors['yellow'], 35 | text: defaultConfig.colors['yellow-darkest'], 36 | }, 37 | green: { 38 | background: defaultConfig.colors['green'], 39 | text: defaultConfig.colors['white'], 40 | }, 41 | teal: { 42 | background: defaultConfig.colors['teal'], 43 | text: defaultConfig.colors['white'], 44 | }, 45 | blue: { 46 | background: defaultConfig.colors['blue'], 47 | text: defaultConfig.colors['white'], 48 | }, 49 | indigo: { 50 | background: defaultConfig.colors['indigo'], 51 | text: defaultConfig.colors['white'], 52 | }, 53 | purple: { 54 | background: defaultConfig.colors['purple'], 55 | text: defaultConfig.colors['white'], 56 | }, 57 | pink: { 58 | background: defaultConfig.colors['pink'], 59 | text: defaultConfig.colors['white'], 60 | }, 61 | }, 62 | sizes: { 63 | sm: { 64 | fontSize: '.875rem', 65 | padding: '.5rem .75rem', 66 | }, 67 | lg: { 68 | fontSize: '1.25rem', 69 | padding: '.75rem 1.5rem', 70 | } 71 | } 72 | } 73 | } 74 | 75 | module.exports = function (options) { 76 | options = _.isFunction(options) 77 | ? options(defaultOptions()) 78 | : _.defaults(options, defaultOptions()) 79 | 80 | return function ({ addComponents, e }) { 81 | addComponents([ 82 | { 83 | '.btn': { 84 | display: 'inline-block', 85 | padding: options.padding, 86 | fontSize: options.fontSize, 87 | fontWeight: options.fontWeight, 88 | lineHeight: options.lineHeight, 89 | borderRadius: options.borderRadius, 90 | textDecoration: 'none', 91 | } 92 | }, 93 | ..._.map(_.omit(options.sizes, 'default'), (sizeOptions, name) => { 94 | return { 95 | [`.btn-${e(name)}`]: { 96 | padding: _.get(sizeOptions, 'padding', options.padding), 97 | fontSize: _.get(sizeOptions, 'fontSize', options.fontSize), 98 | fontWeight: _.get(sizeOptions, 'fontWeight', options.fontWeight), 99 | lineHeight: _.get(sizeOptions, 'lineHeight', options.lineHeight), 100 | borderRadius: _.get(sizeOptions, 'borderRadius', options.borderRadius), 101 | }, 102 | } 103 | }), 104 | ..._.map(options.colors, (colorOptions, name) => { 105 | return { 106 | [`.btn-${e(name)}`]: { 107 | backgroundColor: colorOptions.background, 108 | color: colorOptions.text, 109 | '&:focus': { 110 | outline: 0, 111 | boxShadow: `0 0 0 .2em ${Color(colorOptions.background).alpha(.5).rgb().toString()}`, 112 | }, 113 | '&:hover': { 114 | backgroundColor: _.get(colorOptions, 'hoverBackground', Color(colorOptions.background).darken(0.1).hex().toString()), 115 | color: _.get(colorOptions, 'hoverText', colorOptions.text), 116 | }, 117 | '&:active': { 118 | backgroundColor: _.get(colorOptions, 'activeBackground', Color(colorOptions.background).darken(0.1).hex().toString()), 119 | color: _.get(colorOptions, 'activeText', colorOptions.text), 120 | } 121 | } 122 | } 123 | }) 124 | ]) 125 | } 126 | } 127 | -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- 1 | @tailwind preflight; 2 | 3 | @tailwind components; 4 | 5 | .grid > *:nth-child(odd) { 6 | @apply .bg-grey-light; 7 | } 8 | .grid > *:nth-child(even) { 9 | @apply .bg-grey; 10 | } 11 | 12 | @tailwind utilities; 13 | -------------------------------------------------------------------------------- /tailwind.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Tailwind - The Utility-First CSS Framework 4 | 5 | A project by Adam Wathan (@adamwathan), Jonathan Reinink (@reinink), 6 | David Hemphill (@davidhemphill) and Steve Schoger (@steveschoger). 7 | 8 | Welcome to the Tailwind config file. This is where you can customize 9 | Tailwind specifically for your project. Don't be intimidated by the 10 | length of this file. It's really just a big JavaScript object and 11 | we've done our very best to explain each section. 12 | 13 | View the full documentation at https://tailwindcss.com. 14 | 15 | 16 | |------------------------------------------------------------------------------- 17 | | The default config 18 | |------------------------------------------------------------------------------- 19 | | 20 | | This variable contains the default Tailwind config. You don't have 21 | | to use it, but it can sometimes be helpful to have available. For 22 | | example, you may choose to merge your custom configuration 23 | | values with some of the Tailwind defaults. 24 | | 25 | */ 26 | 27 | // let defaultConfig = require('tailwindcss/defaultConfig')() 28 | 29 | 30 | /* 31 | |------------------------------------------------------------------------------- 32 | | Colors https://tailwindcss.com/docs/colors 33 | |------------------------------------------------------------------------------- 34 | | 35 | | Here you can specify the colors used in your project. To get you started, 36 | | we've provided a generous palette of great looking colors that are perfect 37 | | for prototyping, but don't hesitate to change them for your project. You 38 | | own these colors, nothing will break if you change everything about them. 39 | | 40 | | We've used literal color names ("red", "blue", etc.) for the default 41 | | palette, but if you'd rather use functional names like "primary" and 42 | | "secondary", or even a numeric scale like "100" and "200", go for it. 43 | | 44 | */ 45 | 46 | let colors = { 47 | 'transparent': 'transparent', 48 | 49 | 'black': '#22292f', 50 | 'grey-darkest': '#3d4852', 51 | 'grey-darker': '#606f7b', 52 | 'grey-dark': '#8795a1', 53 | 'grey': '#b8c2cc', 54 | 'grey-light': '#dae1e7', 55 | 'grey-lighter': '#f1f5f8', 56 | 'grey-lightest': '#f8fafc', 57 | 'white': '#ffffff', 58 | 59 | 'red-darkest': '#3b0d0c', 60 | 'red-darker': '#621b18', 61 | 'red-dark': '#cc1f1a', 62 | 'red': '#e3342f', 63 | 'red-light': '#ef5753', 64 | 'red-lighter': '#f9acaa', 65 | 'red-lightest': '#fcebea', 66 | 67 | 'orange-darkest': '#462a16', 68 | 'orange-darker': '#613b1f', 69 | 'orange-dark': '#de751f', 70 | 'orange': '#f6993f', 71 | 'orange-light': '#faad63', 72 | 'orange-lighter': '#fcd9b6', 73 | 'orange-lightest': '#fff5eb', 74 | 75 | 'yellow-darkest': '#453411', 76 | 'yellow-darker': '#684f1d', 77 | 'yellow-dark': '#f2d024', 78 | 'yellow': '#ffed4a', 79 | 'yellow-light': '#fff382', 80 | 'yellow-lighter': '#fff9c2', 81 | 'yellow-lightest': '#fcfbeb', 82 | 83 | 'green-darkest': '#0f2f21', 84 | 'green-darker': '#1a4731', 85 | 'green-dark': '#1f9d55', 86 | 'green': '#38c172', 87 | 'green-light': '#51d88a', 88 | 'green-lighter': '#a2f5bf', 89 | 'green-lightest': '#e3fcec', 90 | 91 | 'teal-darkest': '#0d3331', 92 | 'teal-darker': '#20504f', 93 | 'teal-dark': '#38a89d', 94 | 'teal': '#4dc0b5', 95 | 'teal-light': '#64d5ca', 96 | 'teal-lighter': '#a0f0ed', 97 | 'teal-lightest': '#e8fffe', 98 | 99 | 'blue-darkest': '#12283a', 100 | 'blue-darker': '#1c3d5a', 101 | 'blue-dark': '#2779bd', 102 | 'blue': '#3490dc', 103 | 'blue-light': '#6cb2eb', 104 | 'blue-lighter': '#bcdefa', 105 | 'blue-lightest': '#eff8ff', 106 | 107 | 'indigo-darkest': '#191e38', 108 | 'indigo-darker': '#2f365f', 109 | 'indigo-dark': '#5661b3', 110 | 'indigo': '#6574cd', 111 | 'indigo-light': '#7886d7', 112 | 'indigo-lighter': '#b2b7ff', 113 | 'indigo-lightest': '#e6e8ff', 114 | 115 | 'purple-darkest': '#21183c', 116 | 'purple-darker': '#382b5f', 117 | 'purple-dark': '#794acf', 118 | 'purple': '#9561e2', 119 | 'purple-light': '#a779e9', 120 | 'purple-lighter': '#d6bbfc', 121 | 'purple-lightest': '#f3ebff', 122 | 123 | 'pink-darkest': '#451225', 124 | 'pink-darker': '#6f213f', 125 | 'pink-dark': '#eb5286', 126 | 'pink': '#f66d9b', 127 | 'pink-light': '#fa7ea8', 128 | 'pink-lighter': '#ffbbca', 129 | 'pink-lightest': '#ffebef', 130 | } 131 | 132 | module.exports = { 133 | 134 | /* 135 | |----------------------------------------------------------------------------- 136 | | Colors https://tailwindcss.com/docs/colors 137 | |----------------------------------------------------------------------------- 138 | | 139 | | The color palette defined above is also assigned to the "colors" key of 140 | | your Tailwind config. This makes it easy to access them in your CSS 141 | | using Tailwind's config helper. For example: 142 | | 143 | | .error { color: config('colors.red') } 144 | | 145 | */ 146 | 147 | colors: colors, 148 | 149 | 150 | /* 151 | |----------------------------------------------------------------------------- 152 | | Screens https://tailwindcss.com/docs/responsive-design 153 | |----------------------------------------------------------------------------- 154 | | 155 | | Screens in Tailwind are translated to CSS media queries. They define the 156 | | responsive breakpoints for your project. By default Tailwind takes a 157 | | "mobile first" approach, where each screen size represents a minimum 158 | | viewport width. Feel free to have as few or as many screens as you 159 | | want, naming them in whatever way you'd prefer for your project. 160 | | 161 | | Tailwind also allows for more complex screen definitions, which can be 162 | | useful in certain situations. Be sure to see the full responsive 163 | | documentation for a complete list of options. 164 | | 165 | | Class name: .{screen}:{utility} 166 | | 167 | */ 168 | 169 | screens: { 170 | 'sm': '576px', 171 | 'md': '768px', 172 | 'lg': '992px', 173 | 'xl': '1200px', 174 | }, 175 | 176 | 177 | /* 178 | |----------------------------------------------------------------------------- 179 | | Fonts https://tailwindcss.com/docs/fonts 180 | |----------------------------------------------------------------------------- 181 | | 182 | | Here is where you define your project's font stack, or font families. 183 | | Keep in mind that Tailwind doesn't actually load any fonts for you. 184 | | If you're using custom fonts you'll need to import them prior to 185 | | defining them here. 186 | | 187 | | By default we provide a native font stack that works remarkably well on 188 | | any device or OS you're using, since it just uses the default fonts 189 | | provided by the platform. 190 | | 191 | | Class name: .font-{name} 192 | | 193 | */ 194 | 195 | fonts: { 196 | 'sans': [ 197 | 'system-ui', 198 | 'BlinkMacSystemFont', 199 | '-apple-system', 200 | 'Segoe UI', 201 | 'Roboto', 202 | 'Oxygen', 203 | 'Ubuntu', 204 | 'Cantarell', 205 | 'Fira Sans', 206 | 'Droid Sans', 207 | 'Helvetica Neue', 208 | 'sans-serif', 209 | ], 210 | 'serif': [ 211 | 'Constantia', 212 | 'Lucida Bright', 213 | 'Lucidabright', 214 | 'Lucida Serif', 215 | 'Lucida', 216 | 'DejaVu Serif', 217 | 'Bitstream Vera Serif', 218 | 'Liberation Serif', 219 | 'Georgia', 220 | 'serif', 221 | ], 222 | 'mono': [ 223 | 'Menlo', 224 | 'Monaco', 225 | 'Consolas', 226 | 'Liberation Mono', 227 | 'Courier New', 228 | 'monospace', 229 | ] 230 | }, 231 | 232 | 233 | /* 234 | |----------------------------------------------------------------------------- 235 | | Text sizes https://tailwindcss.com/docs/text-sizing 236 | |----------------------------------------------------------------------------- 237 | | 238 | | Here is where you define your text sizes. Name these in whatever way 239 | | makes the most sense to you. We use size names by default, but 240 | | you're welcome to use a numeric scale or even something else 241 | | entirely. 242 | | 243 | | By default Tailwind uses the "rem" unit type for most measurements. 244 | | This allows you to set a root font size which all other sizes are 245 | | then based on. That said, you are free to use whatever units you 246 | | prefer, be it rems, ems, pixels or other. 247 | | 248 | | Class name: .text-{size} 249 | | 250 | */ 251 | 252 | textSizes: { 253 | 'xs': '.75rem', // 12px 254 | 'sm': '.875rem', // 14px 255 | 'base': '1rem', // 16px 256 | 'lg': '1.125rem', // 18px 257 | 'xl': '1.25rem', // 20px 258 | '2xl': '1.5rem', // 24px 259 | '3xl': '1.875rem', // 30px 260 | '4xl': '2.25rem', // 36px 261 | '5xl': '3rem', // 48px 262 | }, 263 | 264 | 265 | /* 266 | |----------------------------------------------------------------------------- 267 | | Font weights https://tailwindcss.com/docs/font-weight 268 | |----------------------------------------------------------------------------- 269 | | 270 | | Here is where you define your font weights. We've provided a list of 271 | | common font weight names with their respective numeric scale values 272 | | to get you started. It's unlikely that your project will require 273 | | all of these, so we recommend removing those you don't need. 274 | | 275 | | Class name: .font-{weight} 276 | | 277 | */ 278 | 279 | fontWeights: { 280 | 'hairline': 100, 281 | 'thin': 200, 282 | 'light': 300, 283 | 'normal': 400, 284 | 'medium': 500, 285 | 'semibold': 600, 286 | 'bold': 700, 287 | 'extrabold': 800, 288 | 'black': 900, 289 | }, 290 | 291 | 292 | /* 293 | |----------------------------------------------------------------------------- 294 | | Leading (line height) https://tailwindcss.com/docs/line-height 295 | |----------------------------------------------------------------------------- 296 | | 297 | | Here is where you define your line height values, or as we call 298 | | them in Tailwind, leadings. 299 | | 300 | | Class name: .leading-{size} 301 | | 302 | */ 303 | 304 | leading: { 305 | 'none': 1, 306 | 'tight': 1.25, 307 | 'normal': 1.5, 308 | 'loose': 2, 309 | }, 310 | 311 | 312 | /* 313 | |----------------------------------------------------------------------------- 314 | | Tracking (letter spacing) https://tailwindcss.com/docs/letter-spacing 315 | |----------------------------------------------------------------------------- 316 | | 317 | | Here is where you define your letter spacing values, or as we call 318 | | them in Tailwind, tracking. 319 | | 320 | | Class name: .tracking-{size} 321 | | 322 | */ 323 | 324 | tracking: { 325 | 'tight': '-0.05em', 326 | 'normal': '0', 327 | 'wide': '0.05em', 328 | }, 329 | 330 | 331 | /* 332 | |----------------------------------------------------------------------------- 333 | | Text colors https://tailwindcss.com/docs/text-color 334 | |----------------------------------------------------------------------------- 335 | | 336 | | Here is where you define your text colors. By default these use the 337 | | color palette we defined above, however you're welcome to set these 338 | | independently if that makes sense for your project. 339 | | 340 | | Class name: .text-{color} 341 | | 342 | */ 343 | 344 | textColors: colors, 345 | 346 | 347 | /* 348 | |----------------------------------------------------------------------------- 349 | | Background colors https://tailwindcss.com/docs/background-color 350 | |----------------------------------------------------------------------------- 351 | | 352 | | Here is where you define your background colors. By default these use 353 | | the color palette we defined above, however you're welcome to set 354 | | these independently if that makes sense for your project. 355 | | 356 | | Class name: .bg-{color} 357 | | 358 | */ 359 | 360 | backgroundColors: colors, 361 | 362 | 363 | /* 364 | |----------------------------------------------------------------------------- 365 | | Background sizes https://tailwindcss.com/docs/background-size 366 | |----------------------------------------------------------------------------- 367 | | 368 | | Here is where you define your background sizes. We provide some common 369 | | values that are useful in most projects, but feel free to add other sizes 370 | | that are specific to your project here as well. 371 | | 372 | | Class name: .bg-{size} 373 | | 374 | */ 375 | 376 | backgroundSize: { 377 | 'auto': 'auto', 378 | 'cover': 'cover', 379 | 'contain': 'contain', 380 | }, 381 | 382 | 383 | /* 384 | |----------------------------------------------------------------------------- 385 | | Border widths https://tailwindcss.com/docs/border-width 386 | |----------------------------------------------------------------------------- 387 | | 388 | | Here is where you define your border widths. Take note that border 389 | | widths require a special "default" value set as well. This is the 390 | | width that will be used when you do not specify a border width. 391 | | 392 | | Class name: .border{-side?}{-width?} 393 | | 394 | */ 395 | 396 | borderWidths: { 397 | default: '1px', 398 | '0': '0', 399 | '2': '2px', 400 | '4': '4px', 401 | '8': '8px', 402 | }, 403 | 404 | 405 | /* 406 | |----------------------------------------------------------------------------- 407 | | Border colors https://tailwindcss.com/docs/border-color 408 | |----------------------------------------------------------------------------- 409 | | 410 | | Here is where you define your border colors. By default these use the 411 | | color palette we defined above, however you're welcome to set these 412 | | independently if that makes sense for your project. 413 | | 414 | | Take note that border colors require a special "default" value set 415 | | as well. This is the color that will be used when you do not 416 | | specify a border color. 417 | | 418 | | Class name: .border-{color} 419 | | 420 | */ 421 | 422 | borderColors: global.Object.assign({ default: colors['grey-light'] }, colors), 423 | 424 | 425 | /* 426 | |----------------------------------------------------------------------------- 427 | | Border radius https://tailwindcss.com/docs/border-radius 428 | |----------------------------------------------------------------------------- 429 | | 430 | | Here is where you define your border radius values. If a `default` radius 431 | | is provided, it will be made available as the non-suffixed `.rounded` 432 | | utility. 433 | | 434 | | If your scale includes a `0` value to reset already rounded corners, it's 435 | | a good idea to put it first so other values are able to override it. 436 | | 437 | | Class name: .rounded{-side?}{-size?} 438 | | 439 | */ 440 | 441 | borderRadius: { 442 | 'none': '0', 443 | 'sm': '.125rem', 444 | default: '.25rem', 445 | 'lg': '.5rem', 446 | 'full': '9999px', 447 | }, 448 | 449 | 450 | /* 451 | |----------------------------------------------------------------------------- 452 | | Width https://tailwindcss.com/docs/width 453 | |----------------------------------------------------------------------------- 454 | | 455 | | Here is where you define your width utility sizes. These can be 456 | | percentage based, pixels, rems, or any other units. By default 457 | | we provide a sensible rem based numeric scale, a percentage 458 | | based fraction scale, plus some other common use-cases. You 459 | | can, of course, modify these values as needed. 460 | | 461 | | 462 | | It's also worth mentioning that Tailwind automatically escapes 463 | | invalid CSS class name characters, which allows you to have 464 | | awesome classes like .w-2/3. 465 | | 466 | | Class name: .w-{size} 467 | | 468 | */ 469 | 470 | width: { 471 | 'auto': 'auto', 472 | 'px': '1px', 473 | '1': '0.25rem', 474 | '2': '0.5rem', 475 | '3': '0.75rem', 476 | '4': '1rem', 477 | '6': '1.5rem', 478 | '8': '2rem', 479 | '10': '2.5rem', 480 | '12': '3rem', 481 | '16': '4rem', 482 | '24': '6rem', 483 | '32': '8rem', 484 | '48': '12rem', 485 | '64': '16rem', 486 | '1/2': '50%', 487 | '1/3': '33.33333%', 488 | '2/3': '66.66667%', 489 | '1/4': '25%', 490 | '3/4': '75%', 491 | '1/5': '20%', 492 | '2/5': '40%', 493 | '3/5': '60%', 494 | '4/5': '80%', 495 | '1/6': '16.66667%', 496 | '5/6': '83.33333%', 497 | 'full': '100%', 498 | 'screen': '100vw' 499 | }, 500 | 501 | 502 | /* 503 | |----------------------------------------------------------------------------- 504 | | Height https://tailwindcss.com/docs/height 505 | |----------------------------------------------------------------------------- 506 | | 507 | | Here is where you define your height utility sizes. These can be 508 | | percentage based, pixels, rems, or any other units. By default 509 | | we provide a sensible rem based numeric scale plus some other 510 | | common use-cases. You can, of course, modify these values as 511 | | needed. 512 | | 513 | | Class name: .h-{size} 514 | | 515 | */ 516 | 517 | height: { 518 | 'auto': 'auto', 519 | 'px': '1px', 520 | '1': '0.25rem', 521 | '2': '0.5rem', 522 | '3': '0.75rem', 523 | '4': '1rem', 524 | '6': '1.5rem', 525 | '8': '2rem', 526 | '10': '2.5rem', 527 | '12': '3rem', 528 | '16': '4rem', 529 | '24': '6rem', 530 | '32': '8rem', 531 | '48': '12rem', 532 | '64': '16rem', 533 | 'full': '100%', 534 | 'screen': '100vh' 535 | }, 536 | 537 | 538 | /* 539 | |----------------------------------------------------------------------------- 540 | | Minimum width https://tailwindcss.com/docs/min-width 541 | |----------------------------------------------------------------------------- 542 | | 543 | | Here is where you define your minimum width utility sizes. These can 544 | | be percentage based, pixels, rems, or any other units. We provide a 545 | | couple common use-cases by default. You can, of course, modify 546 | | these values as needed. 547 | | 548 | | Class name: .min-w-{size} 549 | | 550 | */ 551 | 552 | minWidth: { 553 | '0': '0', 554 | 'full': '100%', 555 | }, 556 | 557 | 558 | /* 559 | |----------------------------------------------------------------------------- 560 | | Minimum height https://tailwindcss.com/docs/min-height 561 | |----------------------------------------------------------------------------- 562 | | 563 | | Here is where you define your minimum height utility sizes. These can 564 | | be percentage based, pixels, rems, or any other units. We provide a 565 | | few common use-cases by default. You can, of course, modify these 566 | | values as needed. 567 | | 568 | | Class name: .min-h-{size} 569 | | 570 | */ 571 | 572 | minHeight: { 573 | '0': '0', 574 | 'full': '100%', 575 | 'screen': '100vh' 576 | }, 577 | 578 | 579 | /* 580 | |----------------------------------------------------------------------------- 581 | | Maximum width https://tailwindcss.com/docs/max-width 582 | |----------------------------------------------------------------------------- 583 | | 584 | | Here is where you define your maximum width utility sizes. These can 585 | | be percentage based, pixels, rems, or any other units. By default 586 | | we provide a sensible rem based scale and a "full width" size, 587 | | which is basically a reset utility. You can, of course, 588 | | modify these values as needed. 589 | | 590 | | Class name: .max-w-{size} 591 | | 592 | */ 593 | 594 | maxWidth: { 595 | 'xs': '20rem', 596 | 'sm': '30rem', 597 | 'md': '40rem', 598 | 'lg': '50rem', 599 | 'xl': '60rem', 600 | '2xl': '70rem', 601 | '3xl': '80rem', 602 | '4xl': '90rem', 603 | '5xl': '100rem', 604 | 'full': '100%', 605 | }, 606 | 607 | 608 | /* 609 | |----------------------------------------------------------------------------- 610 | | Maximum height https://tailwindcss.com/docs/max-height 611 | |----------------------------------------------------------------------------- 612 | | 613 | | Here is where you define your maximum height utility sizes. These can 614 | | be percentage based, pixels, rems, or any other units. We provide a 615 | | couple common use-cases by default. You can, of course, modify 616 | | these values as needed. 617 | | 618 | | Class name: .max-h-{size} 619 | | 620 | */ 621 | 622 | maxHeight: { 623 | 'full': '100%', 624 | 'screen': '100vh', 625 | }, 626 | 627 | 628 | /* 629 | |----------------------------------------------------------------------------- 630 | | Padding https://tailwindcss.com/docs/padding 631 | |----------------------------------------------------------------------------- 632 | | 633 | | Here is where you define your padding utility sizes. These can be 634 | | percentage based, pixels, rems, or any other units. By default we 635 | | provide a sensible rem based numeric scale plus a couple other 636 | | common use-cases like "1px". You can, of course, modify these 637 | | values as needed. 638 | | 639 | | Class name: .p{side?}-{size} 640 | | 641 | */ 642 | 643 | padding: { 644 | 'px': '1px', 645 | '0': '0', 646 | '1': '0.25rem', 647 | '2': '0.5rem', 648 | '3': '0.75rem', 649 | '4': '1rem', 650 | '6': '1.5rem', 651 | '8': '2rem', 652 | }, 653 | 654 | 655 | /* 656 | |----------------------------------------------------------------------------- 657 | | Margin https://tailwindcss.com/docs/margin 658 | |----------------------------------------------------------------------------- 659 | | 660 | | Here is where you define your margin utility sizes. These can be 661 | | percentage based, pixels, rems, or any other units. By default we 662 | | provide a sensible rem based numeric scale plus a couple other 663 | | common use-cases like "1px". You can, of course, modify these 664 | | values as needed. 665 | | 666 | | Class name: .m{side?}-{size} 667 | | 668 | */ 669 | 670 | margin: { 671 | 'auto': 'auto', 672 | 'px': '1px', 673 | '0': '0', 674 | '1': '0.25rem', 675 | '2': '0.5rem', 676 | '3': '0.75rem', 677 | '4': '1rem', 678 | '6': '1.5rem', 679 | '8': '2rem', 680 | }, 681 | 682 | 683 | /* 684 | |----------------------------------------------------------------------------- 685 | | Negative margin https://tailwindcss.com/docs/negative-margin 686 | |----------------------------------------------------------------------------- 687 | | 688 | | Here is where you define your negative margin utility sizes. These can 689 | | be percentage based, pixels, rems, or any other units. By default we 690 | | provide matching values to the padding scale since these utilities 691 | | generally get used together. You can, of course, modify these 692 | | values as needed. 693 | | 694 | | Class name: .-m{side?}-{size} 695 | | 696 | */ 697 | 698 | negativeMargin: { 699 | 'px': '1px', 700 | '0': '0', 701 | '1': '0.25rem', 702 | '2': '0.5rem', 703 | '3': '0.75rem', 704 | '4': '1rem', 705 | '6': '1.5rem', 706 | '8': '2rem', 707 | }, 708 | 709 | 710 | /* 711 | |----------------------------------------------------------------------------- 712 | | Shadows https://tailwindcss.com/docs/shadows 713 | |----------------------------------------------------------------------------- 714 | | 715 | | Here is where you define your shadow utilities. As you can see from 716 | | the defaults we provide, it's possible to apply multiple shadows 717 | | per utility using comma separation. 718 | | 719 | | If a `default` shadow is provided, it will be made available as the non- 720 | | suffixed `.shadow` utility. 721 | | 722 | | Class name: .shadow-{size?} 723 | | 724 | */ 725 | 726 | shadows: { 727 | default: '0 2px 4px 0 rgba(0,0,0,0.10)', 728 | 'md': '0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)', 729 | 'lg': '0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)', 730 | 'inner': 'inset 0 2px 4px 0 rgba(0,0,0,0.06)', 731 | 'none': 'none', 732 | }, 733 | 734 | 735 | /* 736 | |----------------------------------------------------------------------------- 737 | | Z-index https://tailwindcss.com/docs/z-index 738 | |----------------------------------------------------------------------------- 739 | | 740 | | Here is where you define your z-index utility values. By default we 741 | | provide a sensible numeric scale. You can, of course, modify these 742 | | values as needed. 743 | | 744 | | Class name: .z-{index} 745 | | 746 | */ 747 | 748 | zIndex: { 749 | 'auto': 'auto', 750 | '0': 0, 751 | '10': 10, 752 | '20': 20, 753 | '30': 30, 754 | '40': 40, 755 | '50': 50, 756 | }, 757 | 758 | 759 | /* 760 | |----------------------------------------------------------------------------- 761 | | Opacity https://tailwindcss.com/docs/opacity 762 | |----------------------------------------------------------------------------- 763 | | 764 | | Here is where you define your opacity utility values. By default we 765 | | provide a sensible numeric scale. You can, of course, modify these 766 | | values as needed. 767 | | 768 | | Class name: .opacity-{name} 769 | | 770 | */ 771 | 772 | opacity: { 773 | '0': '0', 774 | '25': '.25', 775 | '50': '.5', 776 | '75': '.75', 777 | '100': '1', 778 | }, 779 | 780 | 781 | /* 782 | |----------------------------------------------------------------------------- 783 | | SVG fill https://tailwindcss.com/docs/svg 784 | |----------------------------------------------------------------------------- 785 | | 786 | | Here is where you define your SVG fill colors. By default we just provide 787 | | `fill-current` which sets the fill to the current text color. This lets you 788 | | specify a fill color using existing text color utilities and helps keep the 789 | | generated CSS file size down. 790 | | 791 | | Class name: .fill-{name} 792 | | 793 | */ 794 | 795 | svgFill: { 796 | 'current': 'currentColor', 797 | }, 798 | 799 | 800 | /* 801 | |----------------------------------------------------------------------------- 802 | | SVG stroke https://tailwindcss.com/docs/svg 803 | |----------------------------------------------------------------------------- 804 | | 805 | | Here is where you define your SVG stroke colors. By default we just provide 806 | | `stroke-current` which sets the stroke to the current text color. This lets 807 | | you specify a stroke color using existing text color utilities and helps 808 | | keep the generated CSS file size down. 809 | | 810 | | Class name: .stroke-{name} 811 | | 812 | */ 813 | 814 | svgStroke: { 815 | 'current': 'currentColor', 816 | }, 817 | 818 | 819 | /* 820 | |----------------------------------------------------------------------------- 821 | | Modules https://tailwindcss.com/docs/configuration#modules 822 | |----------------------------------------------------------------------------- 823 | | 824 | | Here is where you control which modules are generated and what variants are 825 | | generated for each of those modules. 826 | | 827 | | Currently supported variants: 828 | | - responsive 829 | | - hover 830 | | - focus 831 | | - active 832 | | - group-hover 833 | | 834 | | To disable a module completely, use `false` instead of an array. 835 | | 836 | */ 837 | 838 | modules: { 839 | appearance: ['responsive'], 840 | backgroundAttachment: ['responsive'], 841 | backgroundColors: ['responsive', 'hover'], 842 | backgroundPosition: ['responsive'], 843 | backgroundRepeat: ['responsive'], 844 | backgroundSize: ['responsive'], 845 | borderColors: ['responsive', 'hover'], 846 | borderRadius: ['responsive'], 847 | borderStyle: ['responsive'], 848 | borderWidths: ['responsive'], 849 | cursor: ['responsive'], 850 | display: ['responsive'], 851 | flexbox: ['responsive'], 852 | float: ['responsive'], 853 | fonts: ['responsive'], 854 | fontWeights: ['responsive', 'hover'], 855 | height: ['responsive'], 856 | leading: ['responsive'], 857 | lists: ['responsive'], 858 | margin: ['responsive'], 859 | maxHeight: ['responsive'], 860 | maxWidth: ['responsive'], 861 | minHeight: ['responsive'], 862 | minWidth: ['responsive'], 863 | negativeMargin: ['responsive'], 864 | opacity: ['responsive'], 865 | overflow: ['responsive'], 866 | padding: ['responsive'], 867 | pointerEvents: ['responsive'], 868 | position: ['responsive'], 869 | resize: ['responsive'], 870 | shadows: ['responsive'], 871 | svgFill: [], 872 | svgStroke: [], 873 | textAlign: ['responsive'], 874 | textColors: ['responsive', 'hover'], 875 | textSizes: ['responsive'], 876 | textStyle: ['responsive', 'hover'], 877 | tracking: ['responsive'], 878 | userSelect: ['responsive'], 879 | verticalAlign: ['responsive'], 880 | visibility: ['responsive'], 881 | whitespace: ['responsive'], 882 | width: ['responsive'], 883 | zIndex: ['responsive'], 884 | }, 885 | 886 | 887 | /* 888 | |----------------------------------------------------------------------------- 889 | | Plugins https://tailwindcss.com/docs/plugins 890 | |----------------------------------------------------------------------------- 891 | | 892 | | Here is where you can register any plugins you'd like to use in your 893 | | project. Tailwind's built-in `container` plugin is enabled by default to 894 | | give you a Bootstrap-style responsive container component out of the box. 895 | | 896 | | Be sure to view the complete plugin documentation to learn more about how 897 | | the plugin system works. 898 | | 899 | */ 900 | 901 | plugins: [ 902 | require('tailwindcss/plugins/container')(), 903 | require('./plugins/object-fit')(['responsive']), 904 | require('./plugins/simple-buttons')(), 905 | require('./plugins/css-grid')({ 906 | grids: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], 907 | gaps: { 908 | '0': '0', 909 | '4': '1rem', 910 | '8': '2rem', 911 | } 912 | }), 913 | ], 914 | 915 | 916 | /* 917 | |----------------------------------------------------------------------------- 918 | | Advanced Options https://tailwindcss.com/docs/configuration#options 919 | |----------------------------------------------------------------------------- 920 | | 921 | | Here is where you can tweak advanced configuration options. We recommend 922 | | leaving these options alone unless you absolutely need to change them. 923 | | 924 | */ 925 | 926 | options: { 927 | prefix: '', 928 | important: false, 929 | separator: ':', 930 | }, 931 | 932 | } 933 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | ajv@^4.9.1: 10 | version "4.11.8" 11 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 12 | dependencies: 13 | co "^4.6.0" 14 | json-stable-stringify "^1.0.1" 15 | 16 | ansi-align@^2.0.0: 17 | version "2.0.0" 18 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 19 | dependencies: 20 | string-width "^2.0.0" 21 | 22 | ansi-regex@^2.0.0: 23 | version "2.1.1" 24 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 25 | 26 | ansi-regex@^3.0.0: 27 | version "3.0.0" 28 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 29 | 30 | ansi-styles@^2.2.1: 31 | version "2.2.1" 32 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 33 | 34 | ansi-styles@^3.2.1: 35 | version "3.2.1" 36 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 37 | dependencies: 38 | color-convert "^1.9.0" 39 | 40 | anymatch@^2.0.0: 41 | version "2.0.0" 42 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 43 | dependencies: 44 | micromatch "^3.1.4" 45 | normalize-path "^2.1.1" 46 | 47 | aproba@^1.0.3: 48 | version "1.2.0" 49 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 50 | 51 | are-we-there-yet@~1.1.2: 52 | version "1.1.4" 53 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 54 | dependencies: 55 | delegates "^1.0.0" 56 | readable-stream "^2.0.6" 57 | 58 | arr-diff@^4.0.0: 59 | version "4.0.0" 60 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 61 | 62 | arr-flatten@^1.1.0: 63 | version "1.1.0" 64 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 65 | 66 | arr-union@^3.1.0: 67 | version "3.1.0" 68 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 69 | 70 | array-unique@^0.3.2: 71 | version "0.3.2" 72 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 73 | 74 | asn1@~0.2.3: 75 | version "0.2.3" 76 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 77 | 78 | assert-plus@1.0.0, assert-plus@^1.0.0: 79 | version "1.0.0" 80 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 81 | 82 | assert-plus@^0.2.0: 83 | version "0.2.0" 84 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 85 | 86 | assign-symbols@^1.0.0: 87 | version "1.0.0" 88 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 89 | 90 | async-each@^1.0.0: 91 | version "1.0.1" 92 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 93 | 94 | asynckit@^0.4.0: 95 | version "0.4.0" 96 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 97 | 98 | atob@^2.0.0: 99 | version "2.0.3" 100 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.0.3.tgz#19c7a760473774468f20b2d2d03372ad7d4cbf5d" 101 | 102 | aws-sign2@~0.6.0: 103 | version "0.6.0" 104 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 105 | 106 | aws4@^1.2.1: 107 | version "1.6.0" 108 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 109 | 110 | balanced-match@^1.0.0: 111 | version "1.0.0" 112 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 113 | 114 | base@^0.11.1: 115 | version "0.11.2" 116 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 117 | dependencies: 118 | cache-base "^1.0.1" 119 | class-utils "^0.3.5" 120 | component-emitter "^1.2.1" 121 | define-property "^1.0.0" 122 | isobject "^3.0.1" 123 | mixin-deep "^1.2.0" 124 | pascalcase "^0.1.1" 125 | 126 | bcrypt-pbkdf@^1.0.0: 127 | version "1.0.1" 128 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 129 | dependencies: 130 | tweetnacl "^0.14.3" 131 | 132 | binary-extensions@^1.0.0: 133 | version "1.11.0" 134 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 135 | 136 | block-stream@*: 137 | version "0.0.9" 138 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 139 | dependencies: 140 | inherits "~2.0.0" 141 | 142 | boom@2.x.x: 143 | version "2.10.1" 144 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 145 | dependencies: 146 | hoek "2.x.x" 147 | 148 | boxen@^1.2.1: 149 | version "1.3.0" 150 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 151 | dependencies: 152 | ansi-align "^2.0.0" 153 | camelcase "^4.0.0" 154 | chalk "^2.0.1" 155 | cli-boxes "^1.0.0" 156 | string-width "^2.0.0" 157 | term-size "^1.2.0" 158 | widest-line "^2.0.0" 159 | 160 | brace-expansion@^1.1.7: 161 | version "1.1.11" 162 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 163 | dependencies: 164 | balanced-match "^1.0.0" 165 | concat-map "0.0.1" 166 | 167 | braces@^2.3.0, braces@^2.3.1: 168 | version "2.3.1" 169 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.1.tgz#7086c913b4e5a08dbe37ac0ee6a2500c4ba691bb" 170 | dependencies: 171 | arr-flatten "^1.1.0" 172 | array-unique "^0.3.2" 173 | define-property "^1.0.0" 174 | extend-shallow "^2.0.1" 175 | fill-range "^4.0.0" 176 | isobject "^3.0.1" 177 | kind-of "^6.0.2" 178 | repeat-element "^1.1.2" 179 | snapdragon "^0.8.1" 180 | snapdragon-node "^2.0.1" 181 | split-string "^3.0.2" 182 | to-regex "^3.0.1" 183 | 184 | cache-base@^1.0.1: 185 | version "1.0.1" 186 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 187 | dependencies: 188 | collection-visit "^1.0.0" 189 | component-emitter "^1.2.1" 190 | get-value "^2.0.6" 191 | has-value "^1.0.0" 192 | isobject "^3.0.1" 193 | set-value "^2.0.0" 194 | to-object-path "^0.3.0" 195 | union-value "^1.0.0" 196 | unset-value "^1.0.0" 197 | 198 | camelcase-css@^1.0.1: 199 | version "1.0.1" 200 | resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-1.0.1.tgz#157c4238265f5cf94a1dffde86446552cbf3f705" 201 | 202 | camelcase@^4.0.0: 203 | version "4.1.0" 204 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 205 | 206 | capture-stack-trace@^1.0.0: 207 | version "1.0.0" 208 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 209 | 210 | caseless@~0.12.0: 211 | version "0.12.0" 212 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 213 | 214 | chalk@^1.1.3: 215 | version "1.1.3" 216 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 217 | dependencies: 218 | ansi-styles "^2.2.1" 219 | escape-string-regexp "^1.0.2" 220 | has-ansi "^2.0.0" 221 | strip-ansi "^3.0.0" 222 | supports-color "^2.0.0" 223 | 224 | chalk@^2.0.1, chalk@^2.3.1: 225 | version "2.3.2" 226 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.2.tgz#250dc96b07491bfd601e648d66ddf5f60c7a5c65" 227 | dependencies: 228 | ansi-styles "^3.2.1" 229 | escape-string-regexp "^1.0.5" 230 | supports-color "^5.3.0" 231 | 232 | chokidar@^2.0.2: 233 | version "2.0.2" 234 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.2.tgz#4dc65139eeb2714977735b6a35d06e97b494dfd7" 235 | dependencies: 236 | anymatch "^2.0.0" 237 | async-each "^1.0.0" 238 | braces "^2.3.0" 239 | glob-parent "^3.1.0" 240 | inherits "^2.0.1" 241 | is-binary-path "^1.0.0" 242 | is-glob "^4.0.0" 243 | normalize-path "^2.1.1" 244 | path-is-absolute "^1.0.0" 245 | readdirp "^2.0.0" 246 | upath "^1.0.0" 247 | optionalDependencies: 248 | fsevents "^1.0.0" 249 | 250 | class-utils@^0.3.5: 251 | version "0.3.6" 252 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 253 | dependencies: 254 | arr-union "^3.1.0" 255 | define-property "^0.2.5" 256 | isobject "^3.0.0" 257 | static-extend "^0.1.1" 258 | 259 | cli-boxes@^1.0.0: 260 | version "1.0.0" 261 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 262 | 263 | co@^4.6.0: 264 | version "4.6.0" 265 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 266 | 267 | code-point-at@^1.0.0: 268 | version "1.1.0" 269 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 270 | 271 | collection-visit@^1.0.0: 272 | version "1.0.0" 273 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 274 | dependencies: 275 | map-visit "^1.0.0" 276 | object-visit "^1.0.0" 277 | 278 | color-convert@^1.9.0, color-convert@^1.9.1: 279 | version "1.9.1" 280 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 281 | dependencies: 282 | color-name "^1.1.1" 283 | 284 | color-name@^1.0.0, color-name@^1.1.1: 285 | version "1.1.3" 286 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 287 | 288 | color-string@^1.5.2: 289 | version "1.5.2" 290 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.2.tgz#26e45814bc3c9a7cbd6751648a41434514a773a9" 291 | dependencies: 292 | color-name "^1.0.0" 293 | simple-swizzle "^0.2.2" 294 | 295 | color@^3.0.0: 296 | version "3.0.0" 297 | resolved "https://registry.yarnpkg.com/color/-/color-3.0.0.tgz#d920b4328d534a3ac8295d68f7bd4ba6c427be9a" 298 | dependencies: 299 | color-convert "^1.9.1" 300 | color-string "^1.5.2" 301 | 302 | combined-stream@^1.0.5, combined-stream@~1.0.5: 303 | version "1.0.6" 304 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 305 | dependencies: 306 | delayed-stream "~1.0.0" 307 | 308 | commander@^2.11.0: 309 | version "2.15.0" 310 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.0.tgz#ad2a23a1c3b036e392469b8012cec6b33b4c1322" 311 | 312 | comment-regex@^1.0.0: 313 | version "1.0.0" 314 | resolved "https://registry.yarnpkg.com/comment-regex/-/comment-regex-1.0.0.tgz#7dd70268c83648a9c4cc19bf472d52e64f63918d" 315 | 316 | component-emitter@^1.2.1: 317 | version "1.2.1" 318 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 319 | 320 | concat-map@0.0.1: 321 | version "0.0.1" 322 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 323 | 324 | configstore@^3.0.0: 325 | version "3.1.1" 326 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" 327 | dependencies: 328 | dot-prop "^4.1.0" 329 | graceful-fs "^4.1.2" 330 | make-dir "^1.0.0" 331 | unique-string "^1.0.0" 332 | write-file-atomic "^2.0.0" 333 | xdg-basedir "^3.0.0" 334 | 335 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 336 | version "1.1.0" 337 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 338 | 339 | copy-descriptor@^0.1.0: 340 | version "0.1.1" 341 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 342 | 343 | core-util-is@1.0.2, core-util-is@~1.0.0: 344 | version "1.0.2" 345 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 346 | 347 | create-error-class@^3.0.0: 348 | version "3.0.2" 349 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 350 | dependencies: 351 | capture-stack-trace "^1.0.0" 352 | 353 | cross-env@^5.1: 354 | version "5.1.4" 355 | resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-5.1.4.tgz#f61c14291f7cc653bb86457002ea80a04699d022" 356 | dependencies: 357 | cross-spawn "^5.1.0" 358 | is-windows "^1.0.0" 359 | 360 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 361 | version "5.1.0" 362 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 363 | dependencies: 364 | lru-cache "^4.0.1" 365 | shebang-command "^1.2.0" 366 | which "^1.2.9" 367 | 368 | cryptiles@2.x.x: 369 | version "2.0.5" 370 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 371 | dependencies: 372 | boom "2.x.x" 373 | 374 | crypto-random-string@^1.0.0: 375 | version "1.0.0" 376 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 377 | 378 | dashdash@^1.12.0: 379 | version "1.14.1" 380 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 381 | dependencies: 382 | assert-plus "^1.0.0" 383 | 384 | debug@^2.2.0, debug@^2.3.3: 385 | version "2.6.9" 386 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 387 | dependencies: 388 | ms "2.0.0" 389 | 390 | debug@^3.1.0: 391 | version "3.1.0" 392 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 393 | dependencies: 394 | ms "2.0.0" 395 | 396 | decode-uri-component@^0.2.0: 397 | version "0.2.0" 398 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 399 | 400 | deep-extend@~0.4.0: 401 | version "0.4.2" 402 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 403 | 404 | define-property@^0.2.5: 405 | version "0.2.5" 406 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 407 | dependencies: 408 | is-descriptor "^0.1.0" 409 | 410 | define-property@^1.0.0: 411 | version "1.0.0" 412 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 413 | dependencies: 414 | is-descriptor "^1.0.0" 415 | 416 | define-property@^2.0.2: 417 | version "2.0.2" 418 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 419 | dependencies: 420 | is-descriptor "^1.0.2" 421 | isobject "^3.0.1" 422 | 423 | defined@^1.0.0: 424 | version "1.0.0" 425 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 426 | 427 | delayed-stream@~1.0.0: 428 | version "1.0.0" 429 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 430 | 431 | delegates@^1.0.0: 432 | version "1.0.0" 433 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 434 | 435 | detect-libc@^1.0.2: 436 | version "1.0.3" 437 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 438 | 439 | dot-prop@^4.1.0, dot-prop@^4.1.1: 440 | version "4.2.0" 441 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 442 | dependencies: 443 | is-obj "^1.0.0" 444 | 445 | duplexer3@^0.1.4: 446 | version "0.1.4" 447 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 448 | 449 | duplexer@~0.1.1: 450 | version "0.1.1" 451 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 452 | 453 | ecc-jsbn@~0.1.1: 454 | version "0.1.1" 455 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 456 | dependencies: 457 | jsbn "~0.1.0" 458 | 459 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 460 | version "1.0.5" 461 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 462 | 463 | event-stream@~3.3.0: 464 | version "3.3.4" 465 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 466 | dependencies: 467 | duplexer "~0.1.1" 468 | from "~0" 469 | map-stream "~0.1.0" 470 | pause-stream "0.0.11" 471 | split "0.3" 472 | stream-combiner "~0.0.4" 473 | through "~2.3.1" 474 | 475 | execa@^0.7.0: 476 | version "0.7.0" 477 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 478 | dependencies: 479 | cross-spawn "^5.0.1" 480 | get-stream "^3.0.0" 481 | is-stream "^1.1.0" 482 | npm-run-path "^2.0.0" 483 | p-finally "^1.0.0" 484 | signal-exit "^3.0.0" 485 | strip-eof "^1.0.0" 486 | 487 | expand-brackets@^2.1.4: 488 | version "2.1.4" 489 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 490 | dependencies: 491 | debug "^2.3.3" 492 | define-property "^0.2.5" 493 | extend-shallow "^2.0.1" 494 | posix-character-classes "^0.1.0" 495 | regex-not "^1.0.0" 496 | snapdragon "^0.8.1" 497 | to-regex "^3.0.1" 498 | 499 | extend-shallow@^2.0.1: 500 | version "2.0.1" 501 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 502 | dependencies: 503 | is-extendable "^0.1.0" 504 | 505 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 506 | version "3.0.2" 507 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 508 | dependencies: 509 | assign-symbols "^1.0.0" 510 | is-extendable "^1.0.1" 511 | 512 | extend@~3.0.0: 513 | version "3.0.1" 514 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 515 | 516 | extglob@^2.0.4: 517 | version "2.0.4" 518 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 519 | dependencies: 520 | array-unique "^0.3.2" 521 | define-property "^1.0.0" 522 | expand-brackets "^2.1.4" 523 | extend-shallow "^2.0.1" 524 | fragment-cache "^0.2.1" 525 | regex-not "^1.0.0" 526 | snapdragon "^0.8.1" 527 | to-regex "^3.0.1" 528 | 529 | extsprintf@1.3.0: 530 | version "1.3.0" 531 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 532 | 533 | extsprintf@^1.2.0: 534 | version "1.4.0" 535 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 536 | 537 | fill-range@^4.0.0: 538 | version "4.0.0" 539 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 540 | dependencies: 541 | extend-shallow "^2.0.1" 542 | is-number "^3.0.0" 543 | repeat-string "^1.6.1" 544 | to-regex-range "^2.1.0" 545 | 546 | for-in@^1.0.2: 547 | version "1.0.2" 548 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 549 | 550 | forever-agent@~0.6.1: 551 | version "0.6.1" 552 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 553 | 554 | form-data@~2.1.1: 555 | version "2.1.4" 556 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 557 | dependencies: 558 | asynckit "^0.4.0" 559 | combined-stream "^1.0.5" 560 | mime-types "^2.1.12" 561 | 562 | fragment-cache@^0.2.1: 563 | version "0.2.1" 564 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 565 | dependencies: 566 | map-cache "^0.2.2" 567 | 568 | from@~0: 569 | version "0.1.7" 570 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 571 | 572 | fs-extra@^4.0.2: 573 | version "4.0.3" 574 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" 575 | dependencies: 576 | graceful-fs "^4.1.2" 577 | jsonfile "^4.0.0" 578 | universalify "^0.1.0" 579 | 580 | fs.realpath@^1.0.0: 581 | version "1.0.0" 582 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 583 | 584 | fsevents@^1.0.0: 585 | version "1.1.3" 586 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 587 | dependencies: 588 | nan "^2.3.0" 589 | node-pre-gyp "^0.6.39" 590 | 591 | fstream-ignore@^1.0.5: 592 | version "1.0.5" 593 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 594 | dependencies: 595 | fstream "^1.0.0" 596 | inherits "2" 597 | minimatch "^3.0.0" 598 | 599 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 600 | version "1.0.11" 601 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 602 | dependencies: 603 | graceful-fs "^4.1.2" 604 | inherits "~2.0.0" 605 | mkdirp ">=0.5 0" 606 | rimraf "2" 607 | 608 | gather-stream@^1.0.0: 609 | version "1.0.0" 610 | resolved "https://registry.yarnpkg.com/gather-stream/-/gather-stream-1.0.0.tgz#b33994af457a8115700d410f317733cbe7a0904b" 611 | 612 | gauge@~2.7.3: 613 | version "2.7.4" 614 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 615 | dependencies: 616 | aproba "^1.0.3" 617 | console-control-strings "^1.0.0" 618 | has-unicode "^2.0.0" 619 | object-assign "^4.1.0" 620 | signal-exit "^3.0.0" 621 | string-width "^1.0.1" 622 | strip-ansi "^3.0.1" 623 | wide-align "^1.1.0" 624 | 625 | get-stream@^3.0.0: 626 | version "3.0.0" 627 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 628 | 629 | get-value@^2.0.3, get-value@^2.0.6: 630 | version "2.0.6" 631 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 632 | 633 | getpass@^0.1.1: 634 | version "0.1.7" 635 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 636 | dependencies: 637 | assert-plus "^1.0.0" 638 | 639 | glob-parent@^3.1.0: 640 | version "3.1.0" 641 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 642 | dependencies: 643 | is-glob "^3.1.0" 644 | path-dirname "^1.0.0" 645 | 646 | glob@^7.0.5, glob@^7.1.2: 647 | version "7.1.2" 648 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 649 | dependencies: 650 | fs.realpath "^1.0.0" 651 | inflight "^1.0.4" 652 | inherits "2" 653 | minimatch "^3.0.4" 654 | once "^1.3.0" 655 | path-is-absolute "^1.0.0" 656 | 657 | global-dirs@^0.1.0: 658 | version "0.1.1" 659 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 660 | dependencies: 661 | ini "^1.3.4" 662 | 663 | got@^6.7.1: 664 | version "6.7.1" 665 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 666 | dependencies: 667 | create-error-class "^3.0.0" 668 | duplexer3 "^0.1.4" 669 | get-stream "^3.0.0" 670 | is-redirect "^1.0.0" 671 | is-retry-allowed "^1.0.0" 672 | is-stream "^1.0.0" 673 | lowercase-keys "^1.0.0" 674 | safe-buffer "^5.0.1" 675 | timed-out "^4.0.0" 676 | unzip-response "^2.0.1" 677 | url-parse-lax "^1.0.0" 678 | 679 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 680 | version "4.1.11" 681 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 682 | 683 | har-schema@^1.0.5: 684 | version "1.0.5" 685 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 686 | 687 | har-validator@~4.2.1: 688 | version "4.2.1" 689 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 690 | dependencies: 691 | ajv "^4.9.1" 692 | har-schema "^1.0.5" 693 | 694 | has-ansi@^2.0.0: 695 | version "2.0.0" 696 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 697 | dependencies: 698 | ansi-regex "^2.0.0" 699 | 700 | has-flag@^1.0.0: 701 | version "1.0.0" 702 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 703 | 704 | has-flag@^3.0.0: 705 | version "3.0.0" 706 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 707 | 708 | has-unicode@^2.0.0: 709 | version "2.0.1" 710 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 711 | 712 | has-value@^0.3.1: 713 | version "0.3.1" 714 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 715 | dependencies: 716 | get-value "^2.0.3" 717 | has-values "^0.1.4" 718 | isobject "^2.0.0" 719 | 720 | has-value@^1.0.0: 721 | version "1.0.0" 722 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 723 | dependencies: 724 | get-value "^2.0.6" 725 | has-values "^1.0.0" 726 | isobject "^3.0.0" 727 | 728 | has-values@^0.1.4: 729 | version "0.1.4" 730 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 731 | 732 | has-values@^1.0.0: 733 | version "1.0.0" 734 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 735 | dependencies: 736 | is-number "^3.0.0" 737 | kind-of "^4.0.0" 738 | 739 | hawk@3.1.3, hawk@~3.1.3: 740 | version "3.1.3" 741 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 742 | dependencies: 743 | boom "2.x.x" 744 | cryptiles "2.x.x" 745 | hoek "2.x.x" 746 | sntp "1.x.x" 747 | 748 | hoek@2.x.x: 749 | version "2.16.3" 750 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 751 | 752 | http-signature@~1.1.0: 753 | version "1.1.1" 754 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 755 | dependencies: 756 | assert-plus "^0.2.0" 757 | jsprim "^1.2.2" 758 | sshpk "^1.7.0" 759 | 760 | ignore-by-default@^1.0.1: 761 | version "1.0.1" 762 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 763 | 764 | import-lazy@^2.1.0: 765 | version "2.1.0" 766 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 767 | 768 | imurmurhash@^0.1.4: 769 | version "0.1.4" 770 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 771 | 772 | indexes-of@^1.0.1: 773 | version "1.0.1" 774 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 775 | 776 | inflight@^1.0.4: 777 | version "1.0.6" 778 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 779 | dependencies: 780 | once "^1.3.0" 781 | wrappy "1" 782 | 783 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 784 | version "2.0.3" 785 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 786 | 787 | ini@^1.3.4, ini@~1.3.0: 788 | version "1.3.5" 789 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 790 | 791 | is-accessor-descriptor@^0.1.6: 792 | version "0.1.6" 793 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 794 | dependencies: 795 | kind-of "^3.0.2" 796 | 797 | is-accessor-descriptor@^1.0.0: 798 | version "1.0.0" 799 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 800 | dependencies: 801 | kind-of "^6.0.0" 802 | 803 | is-arrayish@^0.3.1: 804 | version "0.3.1" 805 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.1.tgz#c2dfc386abaa0c3e33c48db3fe87059e69065efd" 806 | 807 | is-binary-path@^1.0.0: 808 | version "1.0.1" 809 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 810 | dependencies: 811 | binary-extensions "^1.0.0" 812 | 813 | is-buffer@^1.1.5: 814 | version "1.1.6" 815 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 816 | 817 | is-data-descriptor@^0.1.4: 818 | version "0.1.4" 819 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 820 | dependencies: 821 | kind-of "^3.0.2" 822 | 823 | is-data-descriptor@^1.0.0: 824 | version "1.0.0" 825 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 826 | dependencies: 827 | kind-of "^6.0.0" 828 | 829 | is-descriptor@^0.1.0: 830 | version "0.1.6" 831 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 832 | dependencies: 833 | is-accessor-descriptor "^0.1.6" 834 | is-data-descriptor "^0.1.4" 835 | kind-of "^5.0.0" 836 | 837 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 838 | version "1.0.2" 839 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 840 | dependencies: 841 | is-accessor-descriptor "^1.0.0" 842 | is-data-descriptor "^1.0.0" 843 | kind-of "^6.0.2" 844 | 845 | is-extendable@^0.1.0, is-extendable@^0.1.1: 846 | version "0.1.1" 847 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 848 | 849 | is-extendable@^1.0.1: 850 | version "1.0.1" 851 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 852 | dependencies: 853 | is-plain-object "^2.0.4" 854 | 855 | is-extglob@^2.1.0, is-extglob@^2.1.1: 856 | version "2.1.1" 857 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 858 | 859 | is-fullwidth-code-point@^1.0.0: 860 | version "1.0.0" 861 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 862 | dependencies: 863 | number-is-nan "^1.0.0" 864 | 865 | is-fullwidth-code-point@^2.0.0: 866 | version "2.0.0" 867 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 868 | 869 | is-glob@^3.1.0: 870 | version "3.1.0" 871 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 872 | dependencies: 873 | is-extglob "^2.1.0" 874 | 875 | is-glob@^4.0.0: 876 | version "4.0.0" 877 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 878 | dependencies: 879 | is-extglob "^2.1.1" 880 | 881 | is-installed-globally@^0.1.0: 882 | version "0.1.0" 883 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 884 | dependencies: 885 | global-dirs "^0.1.0" 886 | is-path-inside "^1.0.0" 887 | 888 | is-npm@^1.0.0: 889 | version "1.0.0" 890 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 891 | 892 | is-number@^3.0.0: 893 | version "3.0.0" 894 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 895 | dependencies: 896 | kind-of "^3.0.2" 897 | 898 | is-number@^4.0.0: 899 | version "4.0.0" 900 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 901 | 902 | is-obj@^1.0.0: 903 | version "1.0.1" 904 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 905 | 906 | is-odd@^2.0.0: 907 | version "2.0.0" 908 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 909 | dependencies: 910 | is-number "^4.0.0" 911 | 912 | is-path-inside@^1.0.0: 913 | version "1.0.1" 914 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 915 | dependencies: 916 | path-is-inside "^1.0.1" 917 | 918 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 919 | version "2.0.4" 920 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 921 | dependencies: 922 | isobject "^3.0.1" 923 | 924 | is-redirect@^1.0.0: 925 | version "1.0.0" 926 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 927 | 928 | is-retry-allowed@^1.0.0: 929 | version "1.1.0" 930 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 931 | 932 | is-stream@^1.0.0, is-stream@^1.1.0: 933 | version "1.1.0" 934 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 935 | 936 | is-typedarray@~1.0.0: 937 | version "1.0.0" 938 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 939 | 940 | is-windows@^1.0.0, is-windows@^1.0.2: 941 | version "1.0.2" 942 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 943 | 944 | isarray@1.0.0, isarray@~1.0.0: 945 | version "1.0.0" 946 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 947 | 948 | isexe@^2.0.0: 949 | version "2.0.0" 950 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 951 | 952 | isobject@^2.0.0: 953 | version "2.1.0" 954 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 955 | dependencies: 956 | isarray "1.0.0" 957 | 958 | isobject@^3.0.0, isobject@^3.0.1: 959 | version "3.0.1" 960 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 961 | 962 | isstream@~0.1.2: 963 | version "0.1.2" 964 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 965 | 966 | js-base64@^2.1.9: 967 | version "2.4.3" 968 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.4.3.tgz#2e545ec2b0f2957f41356510205214e98fad6582" 969 | 970 | jsbn@~0.1.0: 971 | version "0.1.1" 972 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 973 | 974 | json-schema@0.2.3: 975 | version "0.2.3" 976 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 977 | 978 | json-stable-stringify@^1.0.1: 979 | version "1.0.1" 980 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 981 | dependencies: 982 | jsonify "~0.0.0" 983 | 984 | json-stringify-safe@~5.0.1: 985 | version "5.0.1" 986 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 987 | 988 | jsonfile@^4.0.0: 989 | version "4.0.0" 990 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 991 | optionalDependencies: 992 | graceful-fs "^4.1.6" 993 | 994 | jsonify@~0.0.0: 995 | version "0.0.0" 996 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 997 | 998 | jsprim@^1.2.2: 999 | version "1.4.1" 1000 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1001 | dependencies: 1002 | assert-plus "1.0.0" 1003 | extsprintf "1.3.0" 1004 | json-schema "0.2.3" 1005 | verror "1.10.0" 1006 | 1007 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1008 | version "3.2.2" 1009 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1010 | dependencies: 1011 | is-buffer "^1.1.5" 1012 | 1013 | kind-of@^4.0.0: 1014 | version "4.0.0" 1015 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1016 | dependencies: 1017 | is-buffer "^1.1.5" 1018 | 1019 | kind-of@^5.0.0: 1020 | version "5.1.0" 1021 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1022 | 1023 | kind-of@^6.0.0, kind-of@^6.0.2: 1024 | version "6.0.2" 1025 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1026 | 1027 | latest-version@^3.0.0: 1028 | version "3.1.0" 1029 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 1030 | dependencies: 1031 | package-json "^4.0.0" 1032 | 1033 | lodash@^4.17.4, lodash@^4.17.5: 1034 | version "4.17.5" 1035 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 1036 | 1037 | lowercase-keys@^1.0.0: 1038 | version "1.0.0" 1039 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 1040 | 1041 | lru-cache@^4.0.1: 1042 | version "4.1.2" 1043 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f" 1044 | dependencies: 1045 | pseudomap "^1.0.2" 1046 | yallist "^2.1.2" 1047 | 1048 | make-dir@^1.0.0: 1049 | version "1.2.0" 1050 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.2.0.tgz#6d6a49eead4aae296c53bbf3a1a008bd6c89469b" 1051 | dependencies: 1052 | pify "^3.0.0" 1053 | 1054 | map-cache@^0.2.2: 1055 | version "0.2.2" 1056 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1057 | 1058 | map-stream@~0.1.0: 1059 | version "0.1.0" 1060 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 1061 | 1062 | map-visit@^1.0.0: 1063 | version "1.0.0" 1064 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 1065 | dependencies: 1066 | object-visit "^1.0.0" 1067 | 1068 | micromatch@^3.1.4: 1069 | version "3.1.9" 1070 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.9.tgz#15dc93175ae39e52e93087847096effc73efcf89" 1071 | dependencies: 1072 | arr-diff "^4.0.0" 1073 | array-unique "^0.3.2" 1074 | braces "^2.3.1" 1075 | define-property "^2.0.2" 1076 | extend-shallow "^3.0.2" 1077 | extglob "^2.0.4" 1078 | fragment-cache "^0.2.1" 1079 | kind-of "^6.0.2" 1080 | nanomatch "^1.2.9" 1081 | object.pick "^1.3.0" 1082 | regex-not "^1.0.0" 1083 | snapdragon "^0.8.1" 1084 | to-regex "^3.0.1" 1085 | 1086 | mime-db@~1.33.0: 1087 | version "1.33.0" 1088 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 1089 | 1090 | mime-types@^2.1.12, mime-types@~2.1.7: 1091 | version "2.1.18" 1092 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 1093 | dependencies: 1094 | mime-db "~1.33.0" 1095 | 1096 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1097 | version "3.0.4" 1098 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1099 | dependencies: 1100 | brace-expansion "^1.1.7" 1101 | 1102 | minimist@0.0.8: 1103 | version "0.0.8" 1104 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1105 | 1106 | minimist@^1.2.0: 1107 | version "1.2.0" 1108 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1109 | 1110 | mixin-deep@^1.2.0: 1111 | version "1.3.1" 1112 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 1113 | dependencies: 1114 | for-in "^1.0.2" 1115 | is-extendable "^1.0.1" 1116 | 1117 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1118 | version "0.5.1" 1119 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1120 | dependencies: 1121 | minimist "0.0.8" 1122 | 1123 | ms@2.0.0: 1124 | version "2.0.0" 1125 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1126 | 1127 | nan@^2.3.0: 1128 | version "2.9.2" 1129 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.9.2.tgz#f564d75f5f8f36a6d9456cca7a6c4fe488ab7866" 1130 | 1131 | nanomatch@^1.2.9: 1132 | version "1.2.9" 1133 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 1134 | dependencies: 1135 | arr-diff "^4.0.0" 1136 | array-unique "^0.3.2" 1137 | define-property "^2.0.2" 1138 | extend-shallow "^3.0.2" 1139 | fragment-cache "^0.2.1" 1140 | is-odd "^2.0.0" 1141 | is-windows "^1.0.2" 1142 | kind-of "^6.0.2" 1143 | object.pick "^1.3.0" 1144 | regex-not "^1.0.0" 1145 | snapdragon "^0.8.1" 1146 | to-regex "^3.0.1" 1147 | 1148 | node-pre-gyp@^0.6.39: 1149 | version "0.6.39" 1150 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1151 | dependencies: 1152 | detect-libc "^1.0.2" 1153 | hawk "3.1.3" 1154 | mkdirp "^0.5.1" 1155 | nopt "^4.0.1" 1156 | npmlog "^4.0.2" 1157 | rc "^1.1.7" 1158 | request "2.81.0" 1159 | rimraf "^2.6.1" 1160 | semver "^5.3.0" 1161 | tar "^2.2.1" 1162 | tar-pack "^3.4.0" 1163 | 1164 | nodemon@^1.11.0: 1165 | version "1.17.2" 1166 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.17.2.tgz#17c0062629610e03dd01241c576f1c4068da9fdd" 1167 | dependencies: 1168 | chokidar "^2.0.2" 1169 | debug "^3.1.0" 1170 | ignore-by-default "^1.0.1" 1171 | minimatch "^3.0.4" 1172 | pstree.remy "^1.1.0" 1173 | semver "^5.5.0" 1174 | supports-color "^5.2.0" 1175 | touch "^3.1.0" 1176 | undefsafe "^2.0.2" 1177 | update-notifier "^2.3.0" 1178 | 1179 | nopt@^4.0.1: 1180 | version "4.0.1" 1181 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1182 | dependencies: 1183 | abbrev "1" 1184 | osenv "^0.1.4" 1185 | 1186 | nopt@~1.0.10: 1187 | version "1.0.10" 1188 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 1189 | dependencies: 1190 | abbrev "1" 1191 | 1192 | normalize-path@^2.1.1: 1193 | version "2.1.1" 1194 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1195 | dependencies: 1196 | remove-trailing-separator "^1.0.1" 1197 | 1198 | npm-run-path@^2.0.0: 1199 | version "2.0.2" 1200 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1201 | dependencies: 1202 | path-key "^2.0.0" 1203 | 1204 | npmlog@^4.0.2: 1205 | version "4.1.2" 1206 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1207 | dependencies: 1208 | are-we-there-yet "~1.1.2" 1209 | console-control-strings "~1.1.0" 1210 | gauge "~2.7.3" 1211 | set-blocking "~2.0.0" 1212 | 1213 | number-is-nan@^1.0.0: 1214 | version "1.0.1" 1215 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1216 | 1217 | oauth-sign@~0.8.1: 1218 | version "0.8.2" 1219 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1220 | 1221 | object-assign@^4.1.0, object-assign@^4.1.1: 1222 | version "4.1.1" 1223 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1224 | 1225 | object-copy@^0.1.0: 1226 | version "0.1.0" 1227 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 1228 | dependencies: 1229 | copy-descriptor "^0.1.0" 1230 | define-property "^0.2.5" 1231 | kind-of "^3.0.3" 1232 | 1233 | object-visit@^1.0.0: 1234 | version "1.0.1" 1235 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 1236 | dependencies: 1237 | isobject "^3.0.0" 1238 | 1239 | object.pick@^1.3.0: 1240 | version "1.3.0" 1241 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 1242 | dependencies: 1243 | isobject "^3.0.1" 1244 | 1245 | once@^1.3.0, once@^1.3.3: 1246 | version "1.4.0" 1247 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1248 | dependencies: 1249 | wrappy "1" 1250 | 1251 | os-homedir@^1.0.0: 1252 | version "1.0.2" 1253 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1254 | 1255 | os-tmpdir@^1.0.0: 1256 | version "1.0.2" 1257 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1258 | 1259 | osenv@^0.1.4: 1260 | version "0.1.5" 1261 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1262 | dependencies: 1263 | os-homedir "^1.0.0" 1264 | os-tmpdir "^1.0.0" 1265 | 1266 | p-finally@^1.0.0: 1267 | version "1.0.0" 1268 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1269 | 1270 | package-json@^4.0.0: 1271 | version "4.0.1" 1272 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 1273 | dependencies: 1274 | got "^6.7.1" 1275 | registry-auth-token "^3.0.1" 1276 | registry-url "^3.0.3" 1277 | semver "^5.1.0" 1278 | 1279 | pascalcase@^0.1.1: 1280 | version "0.1.1" 1281 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 1282 | 1283 | path-dirname@^1.0.0: 1284 | version "1.0.2" 1285 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 1286 | 1287 | path-is-absolute@^1.0.0: 1288 | version "1.0.1" 1289 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1290 | 1291 | path-is-inside@^1.0.1: 1292 | version "1.0.2" 1293 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1294 | 1295 | path-key@^2.0.0: 1296 | version "2.0.1" 1297 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1298 | 1299 | pause-stream@0.0.11: 1300 | version "0.0.11" 1301 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 1302 | dependencies: 1303 | through "~2.3" 1304 | 1305 | perfectionist@^2.4.0: 1306 | version "2.4.0" 1307 | resolved "https://registry.yarnpkg.com/perfectionist/-/perfectionist-2.4.0.tgz#c147ad3714e126467f1764129ee72df861d47ea0" 1308 | dependencies: 1309 | comment-regex "^1.0.0" 1310 | defined "^1.0.0" 1311 | minimist "^1.2.0" 1312 | postcss "^5.0.8" 1313 | postcss-scss "^0.3.0" 1314 | postcss-value-parser "^3.3.0" 1315 | read-file-stdin "^0.2.0" 1316 | string.prototype.repeat "^0.2.0" 1317 | vendors "^1.0.0" 1318 | write-file-stdout "0.0.2" 1319 | 1320 | performance-now@^0.2.0: 1321 | version "0.2.0" 1322 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1323 | 1324 | pify@^3.0.0: 1325 | version "3.0.0" 1326 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1327 | 1328 | posix-character-classes@^0.1.0: 1329 | version "0.1.1" 1330 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 1331 | 1332 | postcss-functions@^3.0.0: 1333 | version "3.0.0" 1334 | resolved "https://registry.yarnpkg.com/postcss-functions/-/postcss-functions-3.0.0.tgz#0e94d01444700a481de20de4d55fb2640564250e" 1335 | dependencies: 1336 | glob "^7.1.2" 1337 | object-assign "^4.1.1" 1338 | postcss "^6.0.9" 1339 | postcss-value-parser "^3.3.0" 1340 | 1341 | postcss-js@^1.0.1: 1342 | version "1.0.1" 1343 | resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-1.0.1.tgz#ffaf29226e399ea74b5dce02cab1729d7addbc7b" 1344 | dependencies: 1345 | camelcase-css "^1.0.1" 1346 | postcss "^6.0.11" 1347 | 1348 | postcss-nested@^3.0.0: 1349 | version "3.0.0" 1350 | resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-3.0.0.tgz#cde40bd07a078565f3df72e2dc2665871c724852" 1351 | dependencies: 1352 | postcss "^6.0.14" 1353 | postcss-selector-parser "^3.1.1" 1354 | 1355 | postcss-scss@^0.3.0: 1356 | version "0.3.1" 1357 | resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-0.3.1.tgz#65c610d8e2a7ee0e62b1835b71b8870734816e4b" 1358 | dependencies: 1359 | postcss "^5.2.4" 1360 | 1361 | postcss-selector-parser@^3.1.1: 1362 | version "3.1.1" 1363 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz#4f875f4afb0c96573d5cf4d74011aee250a7e865" 1364 | dependencies: 1365 | dot-prop "^4.1.1" 1366 | indexes-of "^1.0.1" 1367 | uniq "^1.0.1" 1368 | 1369 | postcss-value-parser@^3.3.0: 1370 | version "3.3.0" 1371 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 1372 | 1373 | postcss@^5.0.8, postcss@^5.2.4: 1374 | version "5.2.18" 1375 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" 1376 | dependencies: 1377 | chalk "^1.1.3" 1378 | js-base64 "^2.1.9" 1379 | source-map "^0.5.6" 1380 | supports-color "^3.2.3" 1381 | 1382 | postcss@^6.0.11, postcss@^6.0.14, postcss@^6.0.9: 1383 | version "6.0.19" 1384 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.19.tgz#76a78386f670b9d9494a655bf23ac012effd1555" 1385 | dependencies: 1386 | chalk "^2.3.1" 1387 | source-map "^0.6.1" 1388 | supports-color "^5.2.0" 1389 | 1390 | prepend-http@^1.0.1: 1391 | version "1.0.4" 1392 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 1393 | 1394 | process-nextick-args@~2.0.0: 1395 | version "2.0.0" 1396 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1397 | 1398 | ps-tree@^1.1.0: 1399 | version "1.1.0" 1400 | resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" 1401 | dependencies: 1402 | event-stream "~3.3.0" 1403 | 1404 | pseudomap@^1.0.2: 1405 | version "1.0.2" 1406 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1407 | 1408 | pstree.remy@^1.1.0: 1409 | version "1.1.0" 1410 | resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.0.tgz#f2af27265bd3e5b32bbfcc10e80bac55ba78688b" 1411 | dependencies: 1412 | ps-tree "^1.1.0" 1413 | 1414 | punycode@^1.4.1: 1415 | version "1.4.1" 1416 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1417 | 1418 | qs@~6.4.0: 1419 | version "6.4.0" 1420 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1421 | 1422 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 1423 | version "1.2.6" 1424 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.6.tgz#eb18989c6d4f4f162c399f79ddd29f3835568092" 1425 | dependencies: 1426 | deep-extend "~0.4.0" 1427 | ini "~1.3.0" 1428 | minimist "^1.2.0" 1429 | strip-json-comments "~2.0.1" 1430 | 1431 | read-file-stdin@^0.2.0: 1432 | version "0.2.1" 1433 | resolved "https://registry.yarnpkg.com/read-file-stdin/-/read-file-stdin-0.2.1.tgz#25eccff3a153b6809afacb23ee15387db9e0ee61" 1434 | dependencies: 1435 | gather-stream "^1.0.0" 1436 | 1437 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 1438 | version "2.3.5" 1439 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.5.tgz#b4f85003a938cbb6ecbce2a124fb1012bd1a838d" 1440 | dependencies: 1441 | core-util-is "~1.0.0" 1442 | inherits "~2.0.3" 1443 | isarray "~1.0.0" 1444 | process-nextick-args "~2.0.0" 1445 | safe-buffer "~5.1.1" 1446 | string_decoder "~1.0.3" 1447 | util-deprecate "~1.0.1" 1448 | 1449 | readdirp@^2.0.0: 1450 | version "2.1.0" 1451 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1452 | dependencies: 1453 | graceful-fs "^4.1.2" 1454 | minimatch "^3.0.2" 1455 | readable-stream "^2.0.2" 1456 | set-immediate-shim "^1.0.1" 1457 | 1458 | regex-not@^1.0.0, regex-not@^1.0.2: 1459 | version "1.0.2" 1460 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 1461 | dependencies: 1462 | extend-shallow "^3.0.2" 1463 | safe-regex "^1.1.0" 1464 | 1465 | registry-auth-token@^3.0.1: 1466 | version "3.3.2" 1467 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" 1468 | dependencies: 1469 | rc "^1.1.6" 1470 | safe-buffer "^5.0.1" 1471 | 1472 | registry-url@^3.0.3: 1473 | version "3.1.0" 1474 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 1475 | dependencies: 1476 | rc "^1.0.1" 1477 | 1478 | remove-trailing-separator@^1.0.1: 1479 | version "1.1.0" 1480 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1481 | 1482 | repeat-element@^1.1.2: 1483 | version "1.1.2" 1484 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1485 | 1486 | repeat-string@^1.6.1: 1487 | version "1.6.1" 1488 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1489 | 1490 | request@2.81.0: 1491 | version "2.81.0" 1492 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1493 | dependencies: 1494 | aws-sign2 "~0.6.0" 1495 | aws4 "^1.2.1" 1496 | caseless "~0.12.0" 1497 | combined-stream "~1.0.5" 1498 | extend "~3.0.0" 1499 | forever-agent "~0.6.1" 1500 | form-data "~2.1.1" 1501 | har-validator "~4.2.1" 1502 | hawk "~3.1.3" 1503 | http-signature "~1.1.0" 1504 | is-typedarray "~1.0.0" 1505 | isstream "~0.1.2" 1506 | json-stringify-safe "~5.0.1" 1507 | mime-types "~2.1.7" 1508 | oauth-sign "~0.8.1" 1509 | performance-now "^0.2.0" 1510 | qs "~6.4.0" 1511 | safe-buffer "^5.0.1" 1512 | stringstream "~0.0.4" 1513 | tough-cookie "~2.3.0" 1514 | tunnel-agent "^0.6.0" 1515 | uuid "^3.0.0" 1516 | 1517 | resolve-url@^0.2.1: 1518 | version "0.2.1" 1519 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 1520 | 1521 | ret@~0.1.10: 1522 | version "0.1.15" 1523 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 1524 | 1525 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 1526 | version "2.6.2" 1527 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1528 | dependencies: 1529 | glob "^7.0.5" 1530 | 1531 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1532 | version "5.1.1" 1533 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1534 | 1535 | safe-regex@^1.1.0: 1536 | version "1.1.0" 1537 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 1538 | dependencies: 1539 | ret "~0.1.10" 1540 | 1541 | semver-diff@^2.0.0: 1542 | version "2.1.0" 1543 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 1544 | dependencies: 1545 | semver "^5.0.3" 1546 | 1547 | semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.5.0: 1548 | version "5.5.0" 1549 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 1550 | 1551 | set-blocking@~2.0.0: 1552 | version "2.0.0" 1553 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1554 | 1555 | set-immediate-shim@^1.0.1: 1556 | version "1.0.1" 1557 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1558 | 1559 | set-value@^0.4.3: 1560 | version "0.4.3" 1561 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 1562 | dependencies: 1563 | extend-shallow "^2.0.1" 1564 | is-extendable "^0.1.1" 1565 | is-plain-object "^2.0.1" 1566 | to-object-path "^0.3.0" 1567 | 1568 | set-value@^2.0.0: 1569 | version "2.0.0" 1570 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 1571 | dependencies: 1572 | extend-shallow "^2.0.1" 1573 | is-extendable "^0.1.1" 1574 | is-plain-object "^2.0.3" 1575 | split-string "^3.0.1" 1576 | 1577 | shebang-command@^1.2.0: 1578 | version "1.2.0" 1579 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1580 | dependencies: 1581 | shebang-regex "^1.0.0" 1582 | 1583 | shebang-regex@^1.0.0: 1584 | version "1.0.0" 1585 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1586 | 1587 | signal-exit@^3.0.0, signal-exit@^3.0.2: 1588 | version "3.0.2" 1589 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1590 | 1591 | simple-swizzle@^0.2.2: 1592 | version "0.2.2" 1593 | resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" 1594 | dependencies: 1595 | is-arrayish "^0.3.1" 1596 | 1597 | snapdragon-node@^2.0.1: 1598 | version "2.1.1" 1599 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 1600 | dependencies: 1601 | define-property "^1.0.0" 1602 | isobject "^3.0.0" 1603 | snapdragon-util "^3.0.1" 1604 | 1605 | snapdragon-util@^3.0.1: 1606 | version "3.0.1" 1607 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 1608 | dependencies: 1609 | kind-of "^3.2.0" 1610 | 1611 | snapdragon@^0.8.1: 1612 | version "0.8.2" 1613 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 1614 | dependencies: 1615 | base "^0.11.1" 1616 | debug "^2.2.0" 1617 | define-property "^0.2.5" 1618 | extend-shallow "^2.0.1" 1619 | map-cache "^0.2.2" 1620 | source-map "^0.5.6" 1621 | source-map-resolve "^0.5.0" 1622 | use "^3.1.0" 1623 | 1624 | sntp@1.x.x: 1625 | version "1.0.9" 1626 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1627 | dependencies: 1628 | hoek "2.x.x" 1629 | 1630 | source-map-resolve@^0.5.0: 1631 | version "0.5.1" 1632 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a" 1633 | dependencies: 1634 | atob "^2.0.0" 1635 | decode-uri-component "^0.2.0" 1636 | resolve-url "^0.2.1" 1637 | source-map-url "^0.4.0" 1638 | urix "^0.1.0" 1639 | 1640 | source-map-url@^0.4.0: 1641 | version "0.4.0" 1642 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 1643 | 1644 | source-map@^0.5.6: 1645 | version "0.5.7" 1646 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1647 | 1648 | source-map@^0.6.1: 1649 | version "0.6.1" 1650 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1651 | 1652 | split-string@^3.0.1, split-string@^3.0.2: 1653 | version "3.1.0" 1654 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 1655 | dependencies: 1656 | extend-shallow "^3.0.0" 1657 | 1658 | split@0.3: 1659 | version "0.3.3" 1660 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 1661 | dependencies: 1662 | through "2" 1663 | 1664 | sshpk@^1.7.0: 1665 | version "1.14.1" 1666 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb" 1667 | dependencies: 1668 | asn1 "~0.2.3" 1669 | assert-plus "^1.0.0" 1670 | dashdash "^1.12.0" 1671 | getpass "^0.1.1" 1672 | optionalDependencies: 1673 | bcrypt-pbkdf "^1.0.0" 1674 | ecc-jsbn "~0.1.1" 1675 | jsbn "~0.1.0" 1676 | tweetnacl "~0.14.0" 1677 | 1678 | static-extend@^0.1.1: 1679 | version "0.1.2" 1680 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 1681 | dependencies: 1682 | define-property "^0.2.5" 1683 | object-copy "^0.1.0" 1684 | 1685 | stream-combiner@~0.0.4: 1686 | version "0.0.4" 1687 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 1688 | dependencies: 1689 | duplexer "~0.1.1" 1690 | 1691 | string-width@^1.0.1, string-width@^1.0.2: 1692 | version "1.0.2" 1693 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1694 | dependencies: 1695 | code-point-at "^1.0.0" 1696 | is-fullwidth-code-point "^1.0.0" 1697 | strip-ansi "^3.0.0" 1698 | 1699 | string-width@^2.0.0, string-width@^2.1.1: 1700 | version "2.1.1" 1701 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1702 | dependencies: 1703 | is-fullwidth-code-point "^2.0.0" 1704 | strip-ansi "^4.0.0" 1705 | 1706 | string.prototype.repeat@^0.2.0: 1707 | version "0.2.0" 1708 | resolved "https://registry.yarnpkg.com/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz#aba36de08dcee6a5a337d49b2ea1da1b28fc0ecf" 1709 | 1710 | string_decoder@~1.0.3: 1711 | version "1.0.3" 1712 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1713 | dependencies: 1714 | safe-buffer "~5.1.0" 1715 | 1716 | stringstream@~0.0.4: 1717 | version "0.0.5" 1718 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1719 | 1720 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1721 | version "3.0.1" 1722 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1723 | dependencies: 1724 | ansi-regex "^2.0.0" 1725 | 1726 | strip-ansi@^4.0.0: 1727 | version "4.0.0" 1728 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1729 | dependencies: 1730 | ansi-regex "^3.0.0" 1731 | 1732 | strip-eof@^1.0.0: 1733 | version "1.0.0" 1734 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 1735 | 1736 | strip-json-comments@~2.0.1: 1737 | version "2.0.1" 1738 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1739 | 1740 | supports-color@^2.0.0: 1741 | version "2.0.0" 1742 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1743 | 1744 | supports-color@^3.2.3: 1745 | version "3.2.3" 1746 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 1747 | dependencies: 1748 | has-flag "^1.0.0" 1749 | 1750 | supports-color@^5.2.0, supports-color@^5.3.0: 1751 | version "5.3.0" 1752 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.3.0.tgz#5b24ac15db80fa927cf5227a4a33fd3c4c7676c0" 1753 | dependencies: 1754 | has-flag "^3.0.0" 1755 | 1756 | tailwindcss@^0.5.1: 1757 | version "0.5.1" 1758 | resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-0.5.1.tgz#e1b5d510f46b3491d719cfae6b791d0ffc1cdd7d" 1759 | dependencies: 1760 | commander "^2.11.0" 1761 | fs-extra "^4.0.2" 1762 | lodash "^4.17.4" 1763 | nodemon "^1.11.0" 1764 | perfectionist "^2.4.0" 1765 | postcss "^6.0.9" 1766 | postcss-functions "^3.0.0" 1767 | postcss-js "^1.0.1" 1768 | postcss-nested "^3.0.0" 1769 | postcss-selector-parser "^3.1.1" 1770 | 1771 | tar-pack@^3.4.0: 1772 | version "3.4.1" 1773 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 1774 | dependencies: 1775 | debug "^2.2.0" 1776 | fstream "^1.0.10" 1777 | fstream-ignore "^1.0.5" 1778 | once "^1.3.3" 1779 | readable-stream "^2.1.4" 1780 | rimraf "^2.5.1" 1781 | tar "^2.2.1" 1782 | uid-number "^0.0.6" 1783 | 1784 | tar@^2.2.1: 1785 | version "2.2.1" 1786 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1787 | dependencies: 1788 | block-stream "*" 1789 | fstream "^1.0.2" 1790 | inherits "2" 1791 | 1792 | term-size@^1.2.0: 1793 | version "1.2.0" 1794 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 1795 | dependencies: 1796 | execa "^0.7.0" 1797 | 1798 | through@2, through@~2.3, through@~2.3.1: 1799 | version "2.3.8" 1800 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1801 | 1802 | timed-out@^4.0.0: 1803 | version "4.0.1" 1804 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 1805 | 1806 | to-object-path@^0.3.0: 1807 | version "0.3.0" 1808 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 1809 | dependencies: 1810 | kind-of "^3.0.2" 1811 | 1812 | to-regex-range@^2.1.0: 1813 | version "2.1.1" 1814 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 1815 | dependencies: 1816 | is-number "^3.0.0" 1817 | repeat-string "^1.6.1" 1818 | 1819 | to-regex@^3.0.1: 1820 | version "3.0.2" 1821 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 1822 | dependencies: 1823 | define-property "^2.0.2" 1824 | extend-shallow "^3.0.2" 1825 | regex-not "^1.0.2" 1826 | safe-regex "^1.1.0" 1827 | 1828 | touch@^3.1.0: 1829 | version "3.1.0" 1830 | resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" 1831 | dependencies: 1832 | nopt "~1.0.10" 1833 | 1834 | tough-cookie@~2.3.0: 1835 | version "2.3.4" 1836 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 1837 | dependencies: 1838 | punycode "^1.4.1" 1839 | 1840 | tunnel-agent@^0.6.0: 1841 | version "0.6.0" 1842 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1843 | dependencies: 1844 | safe-buffer "^5.0.1" 1845 | 1846 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1847 | version "0.14.5" 1848 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1849 | 1850 | uid-number@^0.0.6: 1851 | version "0.0.6" 1852 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1853 | 1854 | undefsafe@^2.0.2: 1855 | version "2.0.2" 1856 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.2.tgz#225f6b9e0337663e0d8e7cfd686fc2836ccace76" 1857 | dependencies: 1858 | debug "^2.2.0" 1859 | 1860 | union-value@^1.0.0: 1861 | version "1.0.0" 1862 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 1863 | dependencies: 1864 | arr-union "^3.1.0" 1865 | get-value "^2.0.6" 1866 | is-extendable "^0.1.1" 1867 | set-value "^0.4.3" 1868 | 1869 | uniq@^1.0.1: 1870 | version "1.0.1" 1871 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 1872 | 1873 | unique-string@^1.0.0: 1874 | version "1.0.0" 1875 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 1876 | dependencies: 1877 | crypto-random-string "^1.0.0" 1878 | 1879 | universalify@^0.1.0: 1880 | version "0.1.1" 1881 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" 1882 | 1883 | unset-value@^1.0.0: 1884 | version "1.0.0" 1885 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 1886 | dependencies: 1887 | has-value "^0.3.1" 1888 | isobject "^3.0.0" 1889 | 1890 | unzip-response@^2.0.1: 1891 | version "2.0.1" 1892 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 1893 | 1894 | upath@^1.0.0: 1895 | version "1.0.4" 1896 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.0.4.tgz#ee2321ba0a786c50973db043a50b7bcba822361d" 1897 | 1898 | update-notifier@^2.3.0: 1899 | version "2.3.0" 1900 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.3.0.tgz#4e8827a6bb915140ab093559d7014e3ebb837451" 1901 | dependencies: 1902 | boxen "^1.2.1" 1903 | chalk "^2.0.1" 1904 | configstore "^3.0.0" 1905 | import-lazy "^2.1.0" 1906 | is-installed-globally "^0.1.0" 1907 | is-npm "^1.0.0" 1908 | latest-version "^3.0.0" 1909 | semver-diff "^2.0.0" 1910 | xdg-basedir "^3.0.0" 1911 | 1912 | urix@^0.1.0: 1913 | version "0.1.0" 1914 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 1915 | 1916 | url-parse-lax@^1.0.0: 1917 | version "1.0.0" 1918 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 1919 | dependencies: 1920 | prepend-http "^1.0.1" 1921 | 1922 | use@^3.1.0: 1923 | version "3.1.0" 1924 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544" 1925 | dependencies: 1926 | kind-of "^6.0.2" 1927 | 1928 | util-deprecate@~1.0.1: 1929 | version "1.0.2" 1930 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1931 | 1932 | uuid@^3.0.0: 1933 | version "3.2.1" 1934 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 1935 | 1936 | vendors@^1.0.0: 1937 | version "1.0.1" 1938 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" 1939 | 1940 | verror@1.10.0: 1941 | version "1.10.0" 1942 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1943 | dependencies: 1944 | assert-plus "^1.0.0" 1945 | core-util-is "1.0.2" 1946 | extsprintf "^1.2.0" 1947 | 1948 | which@^1.2.9: 1949 | version "1.3.0" 1950 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 1951 | dependencies: 1952 | isexe "^2.0.0" 1953 | 1954 | wide-align@^1.1.0: 1955 | version "1.1.2" 1956 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 1957 | dependencies: 1958 | string-width "^1.0.2" 1959 | 1960 | widest-line@^2.0.0: 1961 | version "2.0.0" 1962 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.0.tgz#0142a4e8a243f8882c0233aa0e0281aa76152273" 1963 | dependencies: 1964 | string-width "^2.1.1" 1965 | 1966 | wrappy@1: 1967 | version "1.0.2" 1968 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1969 | 1970 | write-file-atomic@^2.0.0: 1971 | version "2.3.0" 1972 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 1973 | dependencies: 1974 | graceful-fs "^4.1.11" 1975 | imurmurhash "^0.1.4" 1976 | signal-exit "^3.0.2" 1977 | 1978 | write-file-stdout@0.0.2: 1979 | version "0.0.2" 1980 | resolved "https://registry.yarnpkg.com/write-file-stdout/-/write-file-stdout-0.0.2.tgz#c252d7c7c5b1b402897630e3453c7bfe690d9ca1" 1981 | 1982 | xdg-basedir@^3.0.0: 1983 | version "3.0.0" 1984 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 1985 | 1986 | yallist@^2.1.2: 1987 | version "2.1.2" 1988 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 1989 | --------------------------------------------------------------------------------