├── .gitignore ├── .editorconfig ├── src └── scss │ ├── build.scss │ ├── _component-variables.scss │ └── _component-custom-switch.scss ├── bower.json ├── gulpfile.js ├── LICENSE ├── package.json ├── README.md ├── HISTORY.md ├── example.html ├── dist └── css │ ├── component-custom-switch.min.css │ └── component-custom-switch.css └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | Thumbs.db 2 | .DS_Store 3 | /node_modules/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = 2 9 | indent_style = space 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | -------------------------------------------------------------------------------- /src/scss/build.scss: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * 4 | * 5 | * Bootstrap 4 Component - Custom switch 6 | * Version: 1.1.2 7 | * Copyright (c) 2017-18 Martin Haubek 8 | * 9 | * 10 | * 11 | */ 12 | 13 | @import "./node_modules/sass-svg-uri/_svg-uri.scss"; 14 | 15 | @import "./node_modules/bootstrap/scss/functions"; 16 | @import "./node_modules/bootstrap/scss/variables"; 17 | @import "./node_modules/bootstrap/scss/mixins"; 18 | 19 | @import "component-variables"; 20 | @import "component-custom-switch"; 21 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap4c-custom-switch", 3 | "description": "Bootstrap 4 Component - Custom switch", 4 | "version": "1.1.2", 5 | "license": "MIT", 6 | "authors": [ 7 | { "name": "Martin Haubek", "email": "haubek@gmail.com", "homepage": "https://haubek.github.io" } 8 | ], 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/haubek/bootstrap4c-custom-switch" 12 | }, 13 | "main": [ 14 | "dist/css/bootstrap4c-custom-switch.css" 15 | ], 16 | "ignore": [ 17 | "**/.*", 18 | "node_modules", 19 | "bower_components", 20 | "test", 21 | "tests" 22 | ], 23 | "dependencies": {}, 24 | "devDependencies": {} 25 | } 26 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | // gulp + gulp plug-ins 2 | var gulp = require('gulp'); 3 | var plumber = require('gulp-plumber'); 4 | var autoprefixer = require('gulp-autoprefixer'); 5 | var sass = require('gulp-sass'); 6 | var rename = require("gulp-rename"); 7 | var cleanCSS = require('gulp-clean-css'); 8 | var stripCssComments = require('gulp-strip-css-comments'); 9 | 10 | // build 11 | gulp.task('build', function() { 12 | gulp.src(['./src/scss/build.scss']) 13 | .pipe(plumber()) 14 | .pipe(sass()) 15 | .pipe(autoprefixer({browsers: ['last 2 versions']})) 16 | .pipe(rename("component-custom-switch.css")) 17 | .pipe(gulp.dest('./dist/css/')) 18 | .pipe(cleanCSS({compatibility: '*'})) 19 | .pipe(stripCssComments({all: true})) 20 | .pipe(rename("component-custom-switch.min.css")) 21 | .pipe(gulp.dest('./dist/css/')); 22 | }); 23 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017-18 Martin Haubek 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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap4c-custom-switch", 3 | "description": "Bootstrap 4 Component - Custom switch", 4 | "version": "1.1.2", 5 | "license": "MIT", 6 | "author": { 7 | "name": "Martin Haubek", 8 | "email": "haubek@gmail.com" 9 | }, 10 | "scripts": { 11 | "build": "gulp build" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "https://github.com/haubek/bootstrap4c-custom-switch" 16 | }, 17 | "main": "dist/css/bootstrap4c-custom-switch.css", 18 | "homepage": "https://haubek.github.io", 19 | "bugs": { 20 | "url": "https://github.com/haubek/bootstrap4c-custom-switch/issues" 21 | }, 22 | "keywords": [ 23 | "bootstrap", 24 | "component", 25 | "custom", 26 | "switch", 27 | "sass", 28 | "scss", 29 | "css" 30 | ], 31 | "dependencies": { 32 | "bootstrap": "^4.0.0" 33 | }, 34 | "devDependencies": { 35 | "gulp": "^3.9.1", 36 | "gulp-autoprefixer": "^3.1.1", 37 | "gulp-clean-css": "^2.3.2", 38 | "gulp-plumber": "^1.0.1", 39 | "gulp-rename": "^1.2.2", 40 | "gulp-sass": "^2.1.0", 41 | "gulp-strip-css-comments": "^1.2.0", 42 | "sass-svg-uri": "^1.0.0" 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Bootstrap4C 2 | 3 | ### Custom switch 4 | 5 | The *Custom switch* is a simple Bootstrap 4 component that turn your default HTML checkbox inputs `` into beautiful iOS style switches — and allow you to display different content depening on the `checked` attribute. The component is 100% CSS, no JavaScript. 6 | 7 | See demo here => https://haubek.github.io 8 | 9 | ### Yarn install 10 | 11 | ``` 12 | yarn add bootstrap4c-custom-switch 13 | ``` 14 | 15 | ### CSS 16 | 17 | ``` 18 | 19 | ``` 20 | 21 | ### HTML5 markup 22 | 23 | See `example.html` for all markup examples. 24 | 25 | ``` 26 |
27 | 28 | 29 |
30 | ``` 31 | 32 | ``` 33 |
34 | 35 | 36 |
37 | I'm checked 38 |
39 |
40 | I'm unchecked 41 |
42 |
43 | ``` 44 | -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- 1 | # Release History 2 | 3 | ## 1.1.2 4 | 5 | * Improved `:before` and `:after` calculation 6 | 7 | ## 1.1.1 8 | 9 | * Fixed `line-height` issue 10 | 11 | ## 1.1.0 12 | 13 | * Fixed keyboard accessibility 14 | * Added required styling 15 | * Added validation state styling 16 | 17 | ## 1.0.12 18 | 19 | * Upgraded to Bootstrap 4.3.1 20 | * Added `box-shadow` styling for accessibility 21 | * Added `text-hide` styling for accessibility 22 | 23 | ## 1.0.11 24 | 25 | * Added `custom-switch-sm` and `custom-switch-xs` sizes 26 | 27 | ## 1.0.10 28 | 29 | * Added support for the `[disabled]` attribute 30 | 31 | ## 1.0.9 32 | 33 | * Upgraded to Bootstrap 4.1.3 34 | 35 | ## 1.0.8 36 | 37 | * Upgraded to Bootstrap 4.1.0 38 | * Added example.html 39 | 40 | ## 1.0.7 41 | 42 | * Upgraded to Bootstrap 4.0.0 43 | 44 | ## 1.0.6 45 | 46 | * SASS SVG URI 47 | 48 | ## 1.0.5 49 | 50 | * Fixed error 51 | 52 | ## 1.0.4 53 | 54 | * New `status` variable 55 | 56 | ## 1.0.3 57 | 58 | * Better integration with Boostrap variables and mixins 59 | * Removed `block-inline` 60 | 61 | ## 1.0.2 62 | 63 | * Killed emoji class 64 | 65 | ## 1.0.1 66 | 67 | * More variables for the SCSS build 68 | * New I/O class 69 | * New Yes/No class 70 | * New emoji class 71 | 72 | ## 1.0.0 73 | 74 | * First release 75 | -------------------------------------------------------------------------------- /src/scss/_component-variables.scss: -------------------------------------------------------------------------------- 1 | $switch-unit: px; 2 | $switch-width: 68; 3 | $switch-width-sm: 60; 4 | $switch-width-xs: 48; 5 | $switch-width-status: 96; 6 | $switch-width-status-sm: 88; 7 | $switch-width-status-xs: 76; 8 | $switch-height: 38; // The default Bootstrap btn height in px 9 | $switch-height-sm: 31; // The default Bootstrap small btn height in px 10 | $switch-height-xs: 24; // Extra small btn height in px 11 | $switch-font-size: 12; 12 | $switch-font-size-sm: 11; 13 | $switch-font-size-xs: 10; 14 | $switch-font-family: $font-family-sans-serif; 15 | $switch-duration: 150ms; 16 | $switch-required-color: $danger; 17 | $switch-invalid-color: $form-feedback-invalid-color; 18 | 19 | $switch-checked-color: $white; 20 | $switch-checked-bg: $green; 21 | $switch-checked-disabled-opacity: .4; 22 | $switch-checked-text-io: "I"; 23 | $switch-checked-text-onoff: "On"; 24 | $switch-checked-text-yesno: "Yes"; 25 | $switch-checked-text-status: "Enabled"; 26 | 27 | $switch-unchecked-color: $white; 28 | $switch-unchecked-bg: $gray-500; 29 | $switch-unchecked-disabled-opacity: .6; 30 | $switch-unchecked-text-io: "O"; 31 | $switch-unchecked-text-onoff: "Off"; 32 | $switch-unchecked-text-yesno: "No"; 33 | $switch-unchecked-text-status: "Disabled"; 34 | -------------------------------------------------------------------------------- /example.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Example 7 | 8 | 9 | 10 | 11 |
12 |
13 |
14 | 15 |
16 | 17 | 18 |
19 | 20 |
21 | 22 |
23 | 24 | 25 |
26 | 27 |
28 | 29 |
30 | 31 | 32 |
33 | 34 |
35 | 36 |
37 | 38 | 39 |
40 | 41 |
42 | 43 |
44 | 45 | 46 |
47 | 48 |
49 | 50 |
51 | 52 | 53 |
54 |

I'm custom-switch-sm

55 | 56 |
57 | 58 |
59 | 60 | 61 |
62 |

I'm custom-switch-xs

63 | 64 |
65 | 66 |
67 | 68 | 69 |
70 | I'm checked 71 |
72 |
73 | I'm unchecked (click me!) 74 |
75 |
76 | 77 |
78 | 79 |
80 | 81 | 82 |
83 |

I'm required

84 | 85 |
86 | 87 |
88 | 89 | 90 |
91 |
92 |
93 | 94 | 95 |
96 |

I'm disabled

97 | 98 |
99 | 100 |
101 | 102 |
103 | 104 | 105 |
106 |
107 | 108 |
109 | Validation 110 |
111 |
112 |
113 | 114 | 115 |
116 |
117 |
118 |

I'm invalid

119 | 120 |
121 |
122 |
123 | 124 | 125 | -------------------------------------------------------------------------------- /dist/css/component-custom-switch.min.css: -------------------------------------------------------------------------------- 1 | .custom-switch{line-height:12px}.custom-switch .custom-switch-input{position:absolute;z-index:-1;opacity:0}.custom-switch .custom-switch-input,.custom-switch .custom-switch-input *,.custom-switch .custom-switch-input :after,.custom-switch .custom-switch-input :before,.custom-switch .custom-switch-input+.custom-switch-btn,.custom-switch .custom-switch-input:after,.custom-switch .custom-switch-input:before{box-sizing:border-box}.custom-switch .custom-switch-input :after:selection,.custom-switch .custom-switch-input :before:selection,.custom-switch .custom-switch-input :selection,.custom-switch .custom-switch-input+.custom-switch-btn:selection,.custom-switch .custom-switch-input:after:selection,.custom-switch .custom-switch-input:before:selection,.custom-switch .custom-switch-input:selection{background:0 0}.custom-switch .custom-switch-input+.custom-switch-btn{outline:0;display:inline-block;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;width:68px;height:38px;margin:0;padding:4px;background:#adb5bd;border-radius:76px;transition:all 150ms ease}.custom-switch .custom-switch-input+.custom-switch-btn:after,.custom-switch .custom-switch-input+.custom-switch-btn:before{position:relative;display:block;content:"";width:29px;height:29px}.custom-switch .custom-switch-input+.custom-switch-btn:after{left:2px;border-radius:50%;background:#fff;transition:all 150ms ease}.custom-switch .custom-switch-input+.custom-switch-btn:before{display:none}.custom-switch .custom-switch-input+.custom-switch-btn.text-hide{top:-.8rem}.custom-switch .custom-switch-input:checked+.custom-switch-btn{background:#28a745}.custom-switch .custom-switch-input:checked+.custom-switch-btn:after{left:30px}.custom-switch .custom-switch-input:checked+.custom-switch-btn~.custom-switch-content-checked{opacity:1;height:auto}.custom-switch .custom-switch-input:checked+.custom-switch-btn~.custom-switch-content-unchecked{display:none;opacity:0;height:0}.custom-switch .custom-switch-input:not(:checked)+.custom-switch-btn~.custom-switch-content-checked{display:none;opacity:0;height:0}.custom-switch .custom-switch-input:not(:checked)+.custom-switch-btn~.custom-switch-content-unchecked{opacity:1;height:auto}.custom-switch .custom-switch-input[disabled]+.custom-switch-btn{background:rgba(173,181,189,.6);cursor:default}.custom-switch .custom-switch-input[disabled]:checked+.custom-switch-btn{background:rgba(40,167,69,.4)}.custom-switch .custom-switch-input:not([disabled]):focus~.custom-switch-btn{box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem rgba(56,123,189,.25)}.custom-switch .custom-switch-input[required]~.custom-switch-btn{box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 0 .125rem rgba(220,53,69,.5)}.custom-switch .custom-switch-form-text{display:inline-block;height:38px;margin-left:.5rem;line-height:38px;vertical-align:top}.custom-switch.custom-switch-label-io .custom-switch-input+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='42.5' y='23.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EO%3C/text%3E%3C/svg%3E")}.custom-switch.custom-switch-label-io .custom-switch-input:checked+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='18.13333' y='23.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EI%3C/text%3E%3C/svg%3E")}.custom-switch.custom-switch-label-onoff .custom-switch-input+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='38.85714' y='23.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EOff%3C/text%3E%3C/svg%3E")}.custom-switch.custom-switch-label-onoff .custom-switch-input:checked+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='9.71429' y='23.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EOn%3C/text%3E%3C/svg%3E")}.custom-switch.custom-switch-label-yesno .custom-switch-input+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='38.85714' y='23.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3ENo%3C/text%3E%3C/svg%3E")}.custom-switch.custom-switch-label-yesno .custom-switch-input:checked+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='9.71429' y='23.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EYes%3C/text%3E%3C/svg%3E")}.custom-switch.custom-switch-label-status .custom-switch-input+.custom-switch-btn{width:96px;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='38'%3E%3Ctext x='38.85714' y='23.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EDisabled%3C/text%3E%3C/svg%3E")}.custom-switch.custom-switch-label-status .custom-switch-input:checked+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='38'%3E%3Ctext x='9.71429' y='23.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EEnabled%3C/text%3E%3C/svg%3E")}.custom-switch.custom-switch-label-status .custom-switch-input:checked+.custom-switch-btn:after{left:58px}.custom-switch-sm{line-height:11px}.custom-switch-sm .custom-switch-input+.custom-switch-btn{width:60px;height:31px;padding:3px;border-radius:62px}.custom-switch-sm .custom-switch-input+.custom-switch-btn:after,.custom-switch-sm .custom-switch-input+.custom-switch-btn:before{width:23px;height:23px}.custom-switch-sm .custom-switch-input+.custom-switch-btn:after{left:2px}.custom-switch-sm .custom-switch-input:checked+.custom-switch-btn:after{left:29px}.custom-switch-sm .custom-switch-form-text{height:31px;margin-left:.5rem;line-height:31px}.custom-switch-sm.custom-switch-label-io .custom-switch-input+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='31'%3E%3Ctext x='37.5' y='19.375' font-size='11px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EO%3C/text%3E%3C/svg%3E")}.custom-switch-sm.custom-switch-label-io .custom-switch-input:checked+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='31'%3E%3Ctext x='16' y='19.375' font-size='11px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EI%3C/text%3E%3C/svg%3E")}.custom-switch-sm.custom-switch-label-onoff .custom-switch-input+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='31'%3E%3Ctext x='32.87671' y='19.375' font-size='11px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EOff%3C/text%3E%3C/svg%3E")}.custom-switch-sm.custom-switch-label-onoff .custom-switch-input:checked+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='31'%3E%3Ctext x='8.57143' y='19.375' font-size='11px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EOn%3C/text%3E%3C/svg%3E")}.custom-switch-sm.custom-switch-label-yesno .custom-switch-input+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='31'%3E%3Ctext x='32.87671' y='19.375' font-size='11px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3ENo%3C/text%3E%3C/svg%3E")}.custom-switch-sm.custom-switch-label-yesno .custom-switch-input:checked+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='31'%3E%3Ctext x='8.57143' y='19.375' font-size='11px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EYes%3C/text%3E%3C/svg%3E")}.custom-switch-sm.custom-switch-label-status .custom-switch-input+.custom-switch-btn{width:88px;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='31'%3E%3Ctext x='32.87671' y='19.375' font-size='11px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EDisabled%3C/text%3E%3C/svg%3E")}.custom-switch-sm.custom-switch-label-status .custom-switch-input:checked+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='31'%3E%3Ctext x='8.57143' y='19.375' font-size='11px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EEnabled%3C/text%3E%3C/svg%3E")}.custom-switch-sm.custom-switch-label-status .custom-switch-input:checked+.custom-switch-btn:after{left:57px}.custom-switch-xs{line-height:10px}.custom-switch-xs .custom-switch-input+.custom-switch-btn{width:48px;height:24px;padding:3px;border-radius:48px}.custom-switch-xs .custom-switch-input+.custom-switch-btn:after,.custom-switch-xs .custom-switch-input+.custom-switch-btn:before{width:18px;height:18px}.custom-switch-xs .custom-switch-input+.custom-switch-btn:after{left:1px}.custom-switch-xs .custom-switch-input:checked+.custom-switch-btn:after{left:24px}.custom-switch-xs .custom-switch-form-text{height:24px;margin-left:.5rem;line-height:24px}.custom-switch-xs.custom-switch-label-io .custom-switch-input+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24'%3E%3Ctext x='27.42857' y='15' font-size='10px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EO%3C/text%3E%3C/svg%3E")}.custom-switch-xs.custom-switch-label-io .custom-switch-input:checked+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24'%3E%3Ctext x='12.8' y='15' font-size='10px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EI%3C/text%3E%3C/svg%3E")}.custom-switch-xs.custom-switch-label-onoff .custom-switch-input+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24'%3E%3Ctext x='25.6' y='15' font-size='10px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EOff%3C/text%3E%3C/svg%3E")}.custom-switch-xs.custom-switch-label-onoff .custom-switch-input:checked+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24'%3E%3Ctext x='6.85714' y='15' font-size='10px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EOn%3C/text%3E%3C/svg%3E")}.custom-switch-xs.custom-switch-label-yesno .custom-switch-input+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24'%3E%3Ctext x='25.6' y='15' font-size='10px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3ENo%3C/text%3E%3C/svg%3E")}.custom-switch-xs.custom-switch-label-yesno .custom-switch-input:checked+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24'%3E%3Ctext x='6.85714' y='15' font-size='10px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EYes%3C/text%3E%3C/svg%3E")}.custom-switch-xs.custom-switch-label-status .custom-switch-input+.custom-switch-btn{width:76px;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='76' height='24'%3E%3Ctext x='25.6' y='15' font-size='10px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EDisabled%3C/text%3E%3C/svg%3E")}.custom-switch-xs.custom-switch-label-status .custom-switch-input:checked+.custom-switch-btn{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='76' height='24'%3E%3Ctext x='6.85714' y='15' font-size='10px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EEnabled%3C/text%3E%3C/svg%3E")}.custom-switch-xs.custom-switch-label-status .custom-switch-input:checked+.custom-switch-btn:after{left:52px}.is-invalid .custom-switch .custom-switch-input~.custom-switch-btn,.was-validated .custom-switch:invalid .custom-switch-input~.custom-switch-btn{box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 0 .25rem #dc3545} -------------------------------------------------------------------------------- /src/scss/_component-custom-switch.scss: -------------------------------------------------------------------------------- 1 | .custom-switch { 2 | line-height: ($switch-font-size + $switch-unit); 3 | .custom-switch-input { 4 | position: absolute; 5 | z-index: -1; 6 | opacity: 0; 7 | &, 8 | &:after, 9 | &:before, 10 | & *, 11 | & *:after, 12 | & *:before, 13 | & + .custom-switch-btn { 14 | box-sizing: border-box; 15 | &:selection { 16 | background: none; 17 | } 18 | } 19 | + .custom-switch-btn { 20 | outline: 0; 21 | display: inline-block; 22 | position: relative; 23 | user-select: none; 24 | cursor: pointer; 25 | width: ($switch-width + $switch-unit); 26 | height: ($switch-height + $switch-unit); 27 | margin: 0; 28 | padding: ((round(($switch-height - (round($switch-height * .75))) / 2) - 1) + $switch-unit); 29 | background: $switch-unchecked-bg; 30 | border-radius: (($switch-height * 2) + $switch-unit); 31 | transition: all $switch-duration ease; 32 | &:after, 33 | &:before { 34 | position: relative; 35 | display: block; 36 | content: ""; 37 | width: (round($switch-height * .75) + $switch-unit); 38 | height: (round($switch-height * .75) + $switch-unit); 39 | } 40 | &:after { 41 | left: ((round(($switch-height - (round($switch-height * .75))) / 2) - 3) + $switch-unit); 42 | border-radius: 50%; 43 | background: white; 44 | transition: all $switch-duration ease; 45 | } 46 | &:before { 47 | display: none; 48 | } 49 | &.text-hide { 50 | top: -.80rem; 51 | } 52 | } 53 | &:checked + .custom-switch-btn { 54 | background: $switch-checked-bg; 55 | &:after { 56 | left: (($switch-width - $switch-height) + $switch-unit); 57 | } 58 | ~ .custom-switch-content-checked { 59 | opacity: 1; 60 | height: auto; 61 | } 62 | ~ .custom-switch-content-unchecked { 63 | display: none; 64 | opacity: 0; 65 | height: 0; 66 | } 67 | } 68 | &:not(:checked) + .custom-switch-btn { 69 | ~ .custom-switch-content-checked { 70 | display: none; 71 | opacity: 0; 72 | height: 0; 73 | } 74 | ~ .custom-switch-content-unchecked { 75 | opacity: 1; 76 | height: auto; 77 | } 78 | } 79 | &[disabled] { 80 | + .custom-switch-btn { 81 | background: rgba($switch-unchecked-bg, $switch-unchecked-disabled-opacity); 82 | cursor: default; 83 | } 84 | &:checked + .custom-switch-btn { 85 | background: rgba($switch-checked-bg, $switch-checked-disabled-opacity); 86 | } 87 | } 88 | &:not([disabled]) { 89 | &:focus { 90 | ~ .custom-switch-btn { 91 | box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 0 .25rem rgba(56,123,189,.25); 92 | } 93 | } 94 | } 95 | &[required] { 96 | ~ .custom-switch-btn { 97 | box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 0 .125rem rgba($switch-required-color,.5); 98 | } 99 | } 100 | } 101 | .custom-switch-form-text { 102 | display: inline-block; 103 | height: ($switch-height + $switch-unit); 104 | margin-left: .5rem; 105 | line-height: ($switch-height + $switch-unit); 106 | vertical-align: top; 107 | } 108 | &.custom-switch-label-io { 109 | .custom-switch-input { 110 | + .custom-switch-btn { 111 | background-image: svg-uri("#{$switch-unchecked-text-io}"); 112 | } 113 | &:checked + .custom-switch-btn { 114 | background-image: svg-uri("#{$switch-checked-text-io}"); 115 | } 116 | } 117 | } 118 | &.custom-switch-label-onoff { 119 | .custom-switch-input { 120 | + .custom-switch-btn { 121 | background-image: svg-uri("#{$switch-unchecked-text-onoff}"); 122 | } 123 | &:checked + .custom-switch-btn { 124 | background-image: svg-uri("#{$switch-checked-text-onoff}"); 125 | } 126 | } 127 | } 128 | &.custom-switch-label-yesno { 129 | .custom-switch-input { 130 | + .custom-switch-btn { 131 | background-image: svg-uri("#{$switch-unchecked-text-yesno}"); 132 | } 133 | &:checked + .custom-switch-btn { 134 | background-image: svg-uri("#{$switch-checked-text-yesno}"); 135 | } 136 | } 137 | } 138 | &.custom-switch-label-status { 139 | .custom-switch-input { 140 | + .custom-switch-btn { 141 | width: ($switch-width-status + $switch-unit); 142 | background-image: svg-uri("#{$switch-unchecked-text-status}"); 143 | } 144 | &:checked + .custom-switch-btn { 145 | background-image: svg-uri("#{$switch-checked-text-status}"); 146 | &:after { 147 | left: (($switch-width-status - $switch-height) + $switch-unit); 148 | } 149 | } 150 | } 151 | } 152 | } 153 | .custom-switch-sm { 154 | line-height: ($switch-font-size-sm + $switch-unit); 155 | .custom-switch-input { 156 | + .custom-switch-btn { 157 | width: ($switch-width-sm + $switch-unit); 158 | height: ($switch-height-sm + $switch-unit); 159 | padding: ((round(($switch-height-sm - (round($switch-height-sm * .75))) / 2) - 1) + $switch-unit); 160 | border-radius: (($switch-height-sm * 2) + $switch-unit); 161 | &:after, 162 | &:before { 163 | width: (round($switch-height-sm * .75) + $switch-unit); 164 | height: (round($switch-height-sm * .75) + $switch-unit); 165 | } 166 | &:after { 167 | left: ((round(($switch-height-sm - (round($switch-height-sm * .75))) / 2) - 2) + $switch-unit); 168 | } 169 | } 170 | &:checked + .custom-switch-btn { 171 | &:after { 172 | left: (($switch-width-sm - $switch-height-sm) + $switch-unit); 173 | } 174 | } 175 | } 176 | .custom-switch-form-text { 177 | height: ($switch-height-sm + $switch-unit); 178 | margin-left: .5rem; 179 | line-height: ($switch-height-sm + $switch-unit); 180 | } 181 | &.custom-switch-label-io { 182 | .custom-switch-input { 183 | + .custom-switch-btn { 184 | background-image: svg-uri("#{$switch-unchecked-text-io}"); 185 | } 186 | &:checked + .custom-switch-btn { 187 | background-image: svg-uri("#{$switch-checked-text-io}"); 188 | } 189 | } 190 | } 191 | &.custom-switch-label-onoff { 192 | .custom-switch-input { 193 | + .custom-switch-btn { 194 | background-image: svg-uri("#{$switch-unchecked-text-onoff}"); 195 | } 196 | &:checked + .custom-switch-btn { 197 | background-image: svg-uri("#{$switch-checked-text-onoff}"); 198 | } 199 | } 200 | } 201 | &.custom-switch-label-yesno { 202 | .custom-switch-input { 203 | + .custom-switch-btn { 204 | background-image: svg-uri("#{$switch-unchecked-text-yesno}"); 205 | } 206 | &:checked + .custom-switch-btn { 207 | background-image: svg-uri("#{$switch-checked-text-yesno}"); 208 | } 209 | } 210 | } 211 | &.custom-switch-label-status { 212 | .custom-switch-input { 213 | + .custom-switch-btn { 214 | width: ($switch-width-status-sm + $switch-unit); 215 | background-image: svg-uri("#{$switch-unchecked-text-status}"); 216 | } 217 | &:checked + .custom-switch-btn { 218 | background-image: svg-uri("#{$switch-checked-text-status}"); 219 | &:after { 220 | left: (($switch-width-status-sm - $switch-height-sm) + $switch-unit); 221 | } 222 | } 223 | } 224 | } 225 | } 226 | .custom-switch-xs { 227 | line-height: ($switch-font-size-xs + $switch-unit); 228 | .custom-switch-input { 229 | + .custom-switch-btn { 230 | width: ($switch-width-xs + $switch-unit); 231 | height: ($switch-height-xs + $switch-unit); 232 | padding: ((round(($switch-height-xs - (round($switch-height-xs * .75))) / 2)) + $switch-unit); 233 | border-radius: (($switch-height-xs * 2) + $switch-unit); 234 | &:after, 235 | &:before { 236 | width: (round($switch-height-xs * .75) + $switch-unit); 237 | height: (round($switch-height-xs * .75) + $switch-unit); 238 | } 239 | &:after { 240 | left: ((round(($switch-height-xs - (round($switch-height-xs * .75))) / 2) - 2) + $switch-unit); 241 | } 242 | } 243 | &:checked + .custom-switch-btn { 244 | &:after { 245 | left: (($switch-width-xs - $switch-height-xs) + $switch-unit); 246 | } 247 | } 248 | } 249 | .custom-switch-form-text { 250 | height: ($switch-height-xs + $switch-unit); 251 | margin-left: .5rem; 252 | line-height: ($switch-height-xs + $switch-unit); 253 | } 254 | &.custom-switch-label-io { 255 | .custom-switch-input { 256 | + .custom-switch-btn { 257 | background-image: svg-uri("#{$switch-unchecked-text-io}"); 258 | } 259 | &:checked + .custom-switch-btn { 260 | background-image: svg-uri("#{$switch-checked-text-io}"); 261 | } 262 | } 263 | } 264 | &.custom-switch-label-onoff { 265 | .custom-switch-input { 266 | + .custom-switch-btn { 267 | background-image: svg-uri("#{$switch-unchecked-text-onoff}"); 268 | } 269 | &:checked + .custom-switch-btn { 270 | background-image: svg-uri("#{$switch-checked-text-onoff}"); 271 | } 272 | } 273 | } 274 | &.custom-switch-label-yesno { 275 | .custom-switch-input { 276 | + .custom-switch-btn { 277 | background-image: svg-uri("#{$switch-unchecked-text-yesno}"); 278 | } 279 | &:checked + .custom-switch-btn { 280 | background-image: svg-uri("#{$switch-checked-text-yesno}"); 281 | } 282 | } 283 | } 284 | &.custom-switch-label-status { 285 | .custom-switch-input { 286 | + .custom-switch-btn { 287 | width: ($switch-width-status-xs + $switch-unit); 288 | background-image: svg-uri("#{$switch-unchecked-text-status}"); 289 | } 290 | &:checked + .custom-switch-btn { 291 | background-image: svg-uri("#{$switch-checked-text-status}"); 292 | &:after { 293 | left: (($switch-width-status-xs - $switch-height-xs) + $switch-unit); 294 | } 295 | } 296 | } 297 | } 298 | } 299 | 300 | // Validation 301 | 302 | .is-invalid .custom-switch .custom-switch-input ~ .custom-switch-btn, 303 | .was-validated .custom-switch:invalid .custom-switch-input ~ .custom-switch-btn { 304 | box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 0 .25rem rgba($switch-invalid-color,1); 305 | } 306 | -------------------------------------------------------------------------------- /dist/css/component-custom-switch.css: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * 4 | * 5 | * Bootstrap 4 Component - Custom switch 6 | * Version: 1.1.2 7 | * Copyright (c) 2017-18 Martin Haubek 8 | * 9 | * 10 | * 11 | */ 12 | .custom-switch { 13 | line-height: 12px; } 14 | .custom-switch .custom-switch-input { 15 | position: absolute; 16 | z-index: -1; 17 | opacity: 0; } 18 | .custom-switch .custom-switch-input, .custom-switch .custom-switch-input:after, .custom-switch .custom-switch-input:before, 19 | .custom-switch .custom-switch-input *, 20 | .custom-switch .custom-switch-input *:after, 21 | .custom-switch .custom-switch-input *:before, 22 | .custom-switch .custom-switch-input + .custom-switch-btn { 23 | box-sizing: border-box; } 24 | .custom-switch .custom-switch-input:selection, .custom-switch .custom-switch-input:after:selection, .custom-switch .custom-switch-input:before:selection, 25 | .custom-switch .custom-switch-input *:selection, 26 | .custom-switch .custom-switch-input *:after:selection, 27 | .custom-switch .custom-switch-input *:before:selection, 28 | .custom-switch .custom-switch-input + .custom-switch-btn:selection { 29 | background: none; } 30 | .custom-switch .custom-switch-input + .custom-switch-btn { 31 | outline: 0; 32 | display: inline-block; 33 | position: relative; 34 | -webkit-user-select: none; 35 | -moz-user-select: none; 36 | -ms-user-select: none; 37 | user-select: none; 38 | cursor: pointer; 39 | width: 68px; 40 | height: 38px; 41 | margin: 0; 42 | padding: 4px; 43 | background: #adb5bd; 44 | border-radius: 76px; 45 | transition: all 150ms ease; } 46 | .custom-switch .custom-switch-input + .custom-switch-btn:after, .custom-switch .custom-switch-input + .custom-switch-btn:before { 47 | position: relative; 48 | display: block; 49 | content: ""; 50 | width: 29px; 51 | height: 29px; } 52 | .custom-switch .custom-switch-input + .custom-switch-btn:after { 53 | left: 2px; 54 | border-radius: 50%; 55 | background: white; 56 | transition: all 150ms ease; } 57 | .custom-switch .custom-switch-input + .custom-switch-btn:before { 58 | display: none; } 59 | .custom-switch .custom-switch-input + .custom-switch-btn.text-hide { 60 | top: -.80rem; } 61 | .custom-switch .custom-switch-input:checked + .custom-switch-btn { 62 | background: #28a745; } 63 | .custom-switch .custom-switch-input:checked + .custom-switch-btn:after { 64 | left: 30px; } 65 | .custom-switch .custom-switch-input:checked + .custom-switch-btn ~ .custom-switch-content-checked { 66 | opacity: 1; 67 | height: auto; } 68 | .custom-switch .custom-switch-input:checked + .custom-switch-btn ~ .custom-switch-content-unchecked { 69 | display: none; 70 | opacity: 0; 71 | height: 0; } 72 | .custom-switch .custom-switch-input:not(:checked) + .custom-switch-btn ~ .custom-switch-content-checked { 73 | display: none; 74 | opacity: 0; 75 | height: 0; } 76 | .custom-switch .custom-switch-input:not(:checked) + .custom-switch-btn ~ .custom-switch-content-unchecked { 77 | opacity: 1; 78 | height: auto; } 79 | .custom-switch .custom-switch-input[disabled] + .custom-switch-btn { 80 | background: rgba(173, 181, 189, 0.6); 81 | cursor: default; } 82 | .custom-switch .custom-switch-input[disabled]:checked + .custom-switch-btn { 83 | background: rgba(40, 167, 69, 0.4); } 84 | .custom-switch .custom-switch-input:not([disabled]):focus ~ .custom-switch-btn { 85 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(56, 123, 189, 0.25); } 86 | .custom-switch .custom-switch-input[required] ~ .custom-switch-btn { 87 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.125rem rgba(220, 53, 69, 0.5); } 88 | .custom-switch .custom-switch-form-text { 89 | display: inline-block; 90 | height: 38px; 91 | margin-left: .5rem; 92 | line-height: 38px; 93 | vertical-align: top; } 94 | .custom-switch.custom-switch-label-io .custom-switch-input + .custom-switch-btn { 95 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='42.5' y='23.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EO%3C/text%3E%3C/svg%3E"); } 96 | .custom-switch.custom-switch-label-io .custom-switch-input:checked + .custom-switch-btn { 97 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='18.13333' y='23.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EI%3C/text%3E%3C/svg%3E"); } 98 | .custom-switch.custom-switch-label-onoff .custom-switch-input + .custom-switch-btn { 99 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='38.85714' y='23.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EOff%3C/text%3E%3C/svg%3E"); } 100 | .custom-switch.custom-switch-label-onoff .custom-switch-input:checked + .custom-switch-btn { 101 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='9.71429' y='23.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EOn%3C/text%3E%3C/svg%3E"); } 102 | .custom-switch.custom-switch-label-yesno .custom-switch-input + .custom-switch-btn { 103 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='38.85714' y='23.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3ENo%3C/text%3E%3C/svg%3E"); } 104 | .custom-switch.custom-switch-label-yesno .custom-switch-input:checked + .custom-switch-btn { 105 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='9.71429' y='23.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EYes%3C/text%3E%3C/svg%3E"); } 106 | .custom-switch.custom-switch-label-status .custom-switch-input + .custom-switch-btn { 107 | width: 96px; 108 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='38'%3E%3Ctext x='38.85714' y='23.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EDisabled%3C/text%3E%3C/svg%3E"); } 109 | .custom-switch.custom-switch-label-status .custom-switch-input:checked + .custom-switch-btn { 110 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='38'%3E%3Ctext x='9.71429' y='23.75' font-size='12px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EEnabled%3C/text%3E%3C/svg%3E"); } 111 | .custom-switch.custom-switch-label-status .custom-switch-input:checked + .custom-switch-btn:after { 112 | left: 58px; } 113 | 114 | .custom-switch-sm { 115 | line-height: 11px; } 116 | .custom-switch-sm .custom-switch-input + .custom-switch-btn { 117 | width: 60px; 118 | height: 31px; 119 | padding: 3px; 120 | border-radius: 62px; } 121 | .custom-switch-sm .custom-switch-input + .custom-switch-btn:after, .custom-switch-sm .custom-switch-input + .custom-switch-btn:before { 122 | width: 23px; 123 | height: 23px; } 124 | .custom-switch-sm .custom-switch-input + .custom-switch-btn:after { 125 | left: 2px; } 126 | .custom-switch-sm .custom-switch-input:checked + .custom-switch-btn:after { 127 | left: 29px; } 128 | .custom-switch-sm .custom-switch-form-text { 129 | height: 31px; 130 | margin-left: .5rem; 131 | line-height: 31px; } 132 | .custom-switch-sm.custom-switch-label-io .custom-switch-input + .custom-switch-btn { 133 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='31'%3E%3Ctext x='37.5' y='19.375' font-size='11px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EO%3C/text%3E%3C/svg%3E"); } 134 | .custom-switch-sm.custom-switch-label-io .custom-switch-input:checked + .custom-switch-btn { 135 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='31'%3E%3Ctext x='16' y='19.375' font-size='11px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EI%3C/text%3E%3C/svg%3E"); } 136 | .custom-switch-sm.custom-switch-label-onoff .custom-switch-input + .custom-switch-btn { 137 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='31'%3E%3Ctext x='32.87671' y='19.375' font-size='11px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EOff%3C/text%3E%3C/svg%3E"); } 138 | .custom-switch-sm.custom-switch-label-onoff .custom-switch-input:checked + .custom-switch-btn { 139 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='31'%3E%3Ctext x='8.57143' y='19.375' font-size='11px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EOn%3C/text%3E%3C/svg%3E"); } 140 | .custom-switch-sm.custom-switch-label-yesno .custom-switch-input + .custom-switch-btn { 141 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='31'%3E%3Ctext x='32.87671' y='19.375' font-size='11px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3ENo%3C/text%3E%3C/svg%3E"); } 142 | .custom-switch-sm.custom-switch-label-yesno .custom-switch-input:checked + .custom-switch-btn { 143 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='31'%3E%3Ctext x='8.57143' y='19.375' font-size='11px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EYes%3C/text%3E%3C/svg%3E"); } 144 | .custom-switch-sm.custom-switch-label-status .custom-switch-input + .custom-switch-btn { 145 | width: 88px; 146 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='31'%3E%3Ctext x='32.87671' y='19.375' font-size='11px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EDisabled%3C/text%3E%3C/svg%3E"); } 147 | .custom-switch-sm.custom-switch-label-status .custom-switch-input:checked + .custom-switch-btn { 148 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='31'%3E%3Ctext x='8.57143' y='19.375' font-size='11px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EEnabled%3C/text%3E%3C/svg%3E"); } 149 | .custom-switch-sm.custom-switch-label-status .custom-switch-input:checked + .custom-switch-btn:after { 150 | left: 57px; } 151 | 152 | .custom-switch-xs { 153 | line-height: 10px; } 154 | .custom-switch-xs .custom-switch-input + .custom-switch-btn { 155 | width: 48px; 156 | height: 24px; 157 | padding: 3px; 158 | border-radius: 48px; } 159 | .custom-switch-xs .custom-switch-input + .custom-switch-btn:after, .custom-switch-xs .custom-switch-input + .custom-switch-btn:before { 160 | width: 18px; 161 | height: 18px; } 162 | .custom-switch-xs .custom-switch-input + .custom-switch-btn:after { 163 | left: 1px; } 164 | .custom-switch-xs .custom-switch-input:checked + .custom-switch-btn:after { 165 | left: 24px; } 166 | .custom-switch-xs .custom-switch-form-text { 167 | height: 24px; 168 | margin-left: .5rem; 169 | line-height: 24px; } 170 | .custom-switch-xs.custom-switch-label-io .custom-switch-input + .custom-switch-btn { 171 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24'%3E%3Ctext x='27.42857' y='15' font-size='10px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EO%3C/text%3E%3C/svg%3E"); } 172 | .custom-switch-xs.custom-switch-label-io .custom-switch-input:checked + .custom-switch-btn { 173 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24'%3E%3Ctext x='12.8' y='15' font-size='10px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EI%3C/text%3E%3C/svg%3E"); } 174 | .custom-switch-xs.custom-switch-label-onoff .custom-switch-input + .custom-switch-btn { 175 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24'%3E%3Ctext x='25.6' y='15' font-size='10px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EOff%3C/text%3E%3C/svg%3E"); } 176 | .custom-switch-xs.custom-switch-label-onoff .custom-switch-input:checked + .custom-switch-btn { 177 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24'%3E%3Ctext x='6.85714' y='15' font-size='10px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EOn%3C/text%3E%3C/svg%3E"); } 178 | .custom-switch-xs.custom-switch-label-yesno .custom-switch-input + .custom-switch-btn { 179 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24'%3E%3Ctext x='25.6' y='15' font-size='10px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3ENo%3C/text%3E%3C/svg%3E"); } 180 | .custom-switch-xs.custom-switch-label-yesno .custom-switch-input:checked + .custom-switch-btn { 181 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24'%3E%3Ctext x='6.85714' y='15' font-size='10px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EYes%3C/text%3E%3C/svg%3E"); } 182 | .custom-switch-xs.custom-switch-label-status .custom-switch-input + .custom-switch-btn { 183 | width: 76px; 184 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='76' height='24'%3E%3Ctext x='25.6' y='15' font-size='10px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EDisabled%3C/text%3E%3C/svg%3E"); } 185 | .custom-switch-xs.custom-switch-label-status .custom-switch-input:checked + .custom-switch-btn { 186 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='76' height='24'%3E%3Ctext x='6.85714' y='15' font-size='10px' font-family='-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EEnabled%3C/text%3E%3C/svg%3E"); } 187 | .custom-switch-xs.custom-switch-label-status .custom-switch-input:checked + .custom-switch-btn:after { 188 | left: 52px; } 189 | 190 | .is-invalid .custom-switch .custom-switch-input ~ .custom-switch-btn, 191 | .was-validated .custom-switch:invalid .custom-switch-input ~ .custom-switch-btn { 192 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem #dc3545; } 193 | -------------------------------------------------------------------------------- /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@^5.1.0: 10 | version "5.5.2" 11 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 12 | dependencies: 13 | co "^4.6.0" 14 | fast-deep-equal "^1.0.0" 15 | fast-json-stable-stringify "^2.0.0" 16 | json-schema-traverse "^0.3.0" 17 | 18 | amdefine@>=0.0.4: 19 | version "1.0.1" 20 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 21 | 22 | ansi-cyan@^0.1.1: 23 | version "0.1.1" 24 | resolved "https://registry.yarnpkg.com/ansi-cyan/-/ansi-cyan-0.1.1.tgz#538ae528af8982f28ae30d86f2f17456d2609873" 25 | integrity sha1-U4rlKK+JgvKK4w2G8vF0VtJgmHM= 26 | dependencies: 27 | ansi-wrap "0.1.0" 28 | 29 | ansi-gray@^0.1.1: 30 | version "0.1.1" 31 | resolved "https://registry.yarnpkg.com/ansi-gray/-/ansi-gray-0.1.1.tgz#2962cf54ec9792c48510a3deb524436861ef7251" 32 | integrity sha1-KWLPVOyXksSFEKPetSRDaGHvclE= 33 | dependencies: 34 | ansi-wrap "0.1.0" 35 | 36 | ansi-red@^0.1.1: 37 | version "0.1.1" 38 | resolved "https://registry.yarnpkg.com/ansi-red/-/ansi-red-0.1.1.tgz#8c638f9d1080800a353c9c28c8a81ca4705d946c" 39 | integrity sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw= 40 | dependencies: 41 | ansi-wrap "0.1.0" 42 | 43 | ansi-regex@^2.0.0: 44 | version "2.1.1" 45 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 46 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 47 | 48 | ansi-styles@^2.2.1: 49 | version "2.2.1" 50 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 51 | integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= 52 | 53 | ansi-wrap@0.1.0: 54 | version "0.1.0" 55 | resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" 56 | integrity sha1-qCJQ3bABXponyoLoLqYDu/pF768= 57 | 58 | aproba@^1.0.3: 59 | version "1.2.0" 60 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 61 | 62 | archy@^1.0.0: 63 | version "1.0.0" 64 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 65 | 66 | are-we-there-yet@~1.1.2: 67 | version "1.1.4" 68 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 69 | dependencies: 70 | delegates "^1.0.0" 71 | readable-stream "^2.0.6" 72 | 73 | arr-diff@^1.0.1: 74 | version "1.1.0" 75 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-1.1.0.tgz#687c32758163588fef7de7b36fabe495eb1a399a" 76 | integrity sha1-aHwydYFjWI/vfeezb6vklesaOZo= 77 | dependencies: 78 | arr-flatten "^1.0.1" 79 | array-slice "^0.2.3" 80 | 81 | arr-diff@^4.0.0: 82 | version "4.0.0" 83 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 84 | 85 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 86 | version "1.1.0" 87 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 88 | 89 | arr-union@^2.0.1: 90 | version "2.1.0" 91 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-2.1.0.tgz#20f9eab5ec70f5c7d215b1077b1c39161d292c7d" 92 | integrity sha1-IPnqtexw9cfSFbEHexw5Fh0pLH0= 93 | 94 | arr-union@^3.1.0: 95 | version "3.1.0" 96 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 97 | 98 | array-differ@^1.0.0: 99 | version "1.0.0" 100 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 101 | 102 | array-each@^1.0.1: 103 | version "1.0.1" 104 | resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f" 105 | 106 | array-find-index@^1.0.1: 107 | version "1.0.2" 108 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 109 | 110 | array-slice@^0.2.3: 111 | version "0.2.3" 112 | resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-0.2.3.tgz#dd3cfb80ed7973a75117cdac69b0b99ec86186f5" 113 | integrity sha1-3Tz7gO15c6dRF82sabC5nshhhvU= 114 | 115 | array-slice@^1.0.0: 116 | version "1.1.0" 117 | resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4" 118 | 119 | array-uniq@^1.0.2: 120 | version "1.0.3" 121 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 122 | 123 | array-unique@^0.3.2: 124 | version "0.3.2" 125 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 126 | 127 | asn1@~0.2.3: 128 | version "0.2.3" 129 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 130 | 131 | assert-plus@1.0.0, assert-plus@^1.0.0: 132 | version "1.0.0" 133 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 134 | 135 | assign-symbols@^1.0.0: 136 | version "1.0.0" 137 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 138 | 139 | async-foreach@^0.1.3: 140 | version "0.1.3" 141 | resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" 142 | 143 | asynckit@^0.4.0: 144 | version "0.4.0" 145 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 146 | 147 | atob@^2.0.0: 148 | version "2.0.3" 149 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.0.3.tgz#19c7a760473774468f20b2d2d03372ad7d4cbf5d" 150 | 151 | autoprefixer@^6.0.0: 152 | version "6.7.7" 153 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" 154 | dependencies: 155 | browserslist "^1.7.6" 156 | caniuse-db "^1.0.30000634" 157 | normalize-range "^0.1.2" 158 | num2fraction "^1.2.2" 159 | postcss "^5.2.16" 160 | postcss-value-parser "^3.2.3" 161 | 162 | aws-sign2@~0.7.0: 163 | version "0.7.0" 164 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 165 | 166 | aws4@^1.6.0: 167 | version "1.6.0" 168 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 169 | 170 | balanced-match@^1.0.0: 171 | version "1.0.0" 172 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 173 | 174 | base@^0.11.1: 175 | version "0.11.2" 176 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 177 | dependencies: 178 | cache-base "^1.0.1" 179 | class-utils "^0.3.5" 180 | component-emitter "^1.2.1" 181 | define-property "^1.0.0" 182 | isobject "^3.0.1" 183 | mixin-deep "^1.2.0" 184 | pascalcase "^0.1.1" 185 | 186 | bcrypt-pbkdf@^1.0.0: 187 | version "1.0.1" 188 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 189 | dependencies: 190 | tweetnacl "^0.14.3" 191 | 192 | beeper@^1.0.0: 193 | version "1.1.1" 194 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809" 195 | 196 | block-stream@*: 197 | version "0.0.9" 198 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 199 | dependencies: 200 | inherits "~2.0.0" 201 | 202 | boom@4.x.x: 203 | version "4.3.1" 204 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 205 | dependencies: 206 | hoek "4.x.x" 207 | 208 | boom@5.x.x: 209 | version "5.2.0" 210 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 211 | dependencies: 212 | hoek "4.x.x" 213 | 214 | bootstrap@^4.0.0: 215 | version "4.3.1" 216 | resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.3.1.tgz#280ca8f610504d99d7b6b4bfc4b68cec601704ac" 217 | integrity sha512-rXqOmH1VilAt2DyPzluTi2blhk17bO7ef+zLLPlWvG494pDxcM234pJ8wTc/6R40UWizAIIMgxjvxZg5kmsbag== 218 | 219 | brace-expansion@^1.0.0, brace-expansion@^1.1.7: 220 | version "1.1.11" 221 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 222 | dependencies: 223 | balanced-match "^1.0.0" 224 | concat-map "0.0.1" 225 | 226 | braces@^2.3.0: 227 | version "2.3.0" 228 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.0.tgz#a46941cb5fb492156b3d6a656e06c35364e3e66e" 229 | dependencies: 230 | arr-flatten "^1.1.0" 231 | array-unique "^0.3.2" 232 | define-property "^1.0.0" 233 | extend-shallow "^2.0.1" 234 | fill-range "^4.0.0" 235 | isobject "^3.0.1" 236 | repeat-element "^1.1.2" 237 | snapdragon "^0.8.1" 238 | snapdragon-node "^2.0.1" 239 | split-string "^3.0.2" 240 | to-regex "^3.0.1" 241 | 242 | browserslist@^1.7.6: 243 | version "1.7.7" 244 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" 245 | dependencies: 246 | caniuse-db "^1.0.30000639" 247 | electron-to-chromium "^1.2.7" 248 | 249 | builtin-modules@^1.0.0: 250 | version "1.1.1" 251 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 252 | 253 | cache-base@^1.0.1: 254 | version "1.0.1" 255 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 256 | dependencies: 257 | collection-visit "^1.0.0" 258 | component-emitter "^1.2.1" 259 | get-value "^2.0.6" 260 | has-value "^1.0.0" 261 | isobject "^3.0.1" 262 | set-value "^2.0.0" 263 | to-object-path "^0.3.0" 264 | union-value "^1.0.0" 265 | unset-value "^1.0.0" 266 | 267 | camelcase-keys@^2.0.0: 268 | version "2.1.0" 269 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 270 | dependencies: 271 | camelcase "^2.0.0" 272 | map-obj "^1.0.0" 273 | 274 | camelcase@^2.0.0: 275 | version "2.1.1" 276 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 277 | 278 | camelcase@^3.0.0: 279 | version "3.0.0" 280 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 281 | 282 | caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: 283 | version "1.0.30000808" 284 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000808.tgz#30dfd83009d5704f02dffb37725068ed12a366bb" 285 | 286 | caseless@~0.12.0: 287 | version "0.12.0" 288 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 289 | 290 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 291 | version "1.1.3" 292 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 293 | dependencies: 294 | ansi-styles "^2.2.1" 295 | escape-string-regexp "^1.0.2" 296 | has-ansi "^2.0.0" 297 | strip-ansi "^3.0.0" 298 | supports-color "^2.0.0" 299 | 300 | class-utils@^0.3.5: 301 | version "0.3.6" 302 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 303 | dependencies: 304 | arr-union "^3.1.0" 305 | define-property "^0.2.5" 306 | isobject "^3.0.0" 307 | static-extend "^0.1.1" 308 | 309 | clean-css@^4.0.4: 310 | version "4.1.9" 311 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.1.9.tgz#35cee8ae7687a49b98034f70de00c4edd3826301" 312 | dependencies: 313 | source-map "0.5.x" 314 | 315 | cliui@^3.2.0: 316 | version "3.2.0" 317 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 318 | dependencies: 319 | string-width "^1.0.1" 320 | strip-ansi "^3.0.1" 321 | wrap-ansi "^2.0.0" 322 | 323 | clone-stats@^0.0.1: 324 | version "0.0.1" 325 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 326 | 327 | clone@^0.2.0: 328 | version "0.2.0" 329 | resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" 330 | 331 | clone@^1.0.0, clone@^1.0.2: 332 | version "1.0.3" 333 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.3.tgz#298d7e2231660f40c003c2ed3140decf3f53085f" 334 | 335 | co@^4.6.0: 336 | version "4.6.0" 337 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 338 | 339 | code-point-at@^1.0.0: 340 | version "1.1.0" 341 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 342 | 343 | collection-visit@^1.0.0: 344 | version "1.0.0" 345 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 346 | dependencies: 347 | map-visit "^1.0.0" 348 | object-visit "^1.0.0" 349 | 350 | color-support@^1.1.3: 351 | version "1.1.3" 352 | resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" 353 | integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== 354 | 355 | combined-stream@1.0.6, combined-stream@~1.0.5: 356 | version "1.0.6" 357 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 358 | dependencies: 359 | delayed-stream "~1.0.0" 360 | 361 | component-emitter@^1.2.1: 362 | version "1.2.1" 363 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 364 | 365 | concat-map@0.0.1: 366 | version "0.0.1" 367 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 368 | 369 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 370 | version "1.1.0" 371 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 372 | 373 | copy-descriptor@^0.1.0: 374 | version "0.1.1" 375 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 376 | 377 | core-util-is@1.0.2, core-util-is@~1.0.0: 378 | version "1.0.2" 379 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 380 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 381 | 382 | cross-spawn@^3.0.0: 383 | version "3.0.1" 384 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" 385 | dependencies: 386 | lru-cache "^4.0.1" 387 | which "^1.2.9" 388 | 389 | cryptiles@3.x.x: 390 | version "3.1.2" 391 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 392 | dependencies: 393 | boom "5.x.x" 394 | 395 | currently-unhandled@^0.4.1: 396 | version "0.4.1" 397 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 398 | dependencies: 399 | array-find-index "^1.0.1" 400 | 401 | dashdash@^1.12.0: 402 | version "1.14.1" 403 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 404 | dependencies: 405 | assert-plus "^1.0.0" 406 | 407 | dateformat@^2.0.0: 408 | version "2.2.0" 409 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.2.0.tgz#4065e2013cf9fb916ddfd82efb506ad4c6769062" 410 | 411 | debug@^2.2.0, debug@^2.3.3: 412 | version "2.6.9" 413 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 414 | dependencies: 415 | ms "2.0.0" 416 | 417 | decamelize@^1.1.1, decamelize@^1.1.2: 418 | version "1.2.0" 419 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 420 | 421 | decode-uri-component@^0.2.0: 422 | version "0.2.0" 423 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 424 | 425 | defaults@^1.0.0: 426 | version "1.0.3" 427 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 428 | dependencies: 429 | clone "^1.0.2" 430 | 431 | define-property@^0.2.5: 432 | version "0.2.5" 433 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 434 | dependencies: 435 | is-descriptor "^0.1.0" 436 | 437 | define-property@^1.0.0: 438 | version "1.0.0" 439 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 440 | dependencies: 441 | is-descriptor "^1.0.0" 442 | 443 | delayed-stream@~1.0.0: 444 | version "1.0.0" 445 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 446 | 447 | delegates@^1.0.0: 448 | version "1.0.0" 449 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 450 | 451 | deprecated@^0.0.1: 452 | version "0.0.1" 453 | resolved "https://registry.yarnpkg.com/deprecated/-/deprecated-0.0.1.tgz#f9c9af5464afa1e7a971458a8bdef2aa94d5bb19" 454 | 455 | detect-file@^1.0.0: 456 | version "1.0.0" 457 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" 458 | 459 | duplexer2@0.0.2: 460 | version "0.0.2" 461 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 462 | dependencies: 463 | readable-stream "~1.1.9" 464 | 465 | ecc-jsbn@~0.1.1: 466 | version "0.1.1" 467 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 468 | dependencies: 469 | jsbn "~0.1.0" 470 | 471 | electron-to-chromium@^1.2.7: 472 | version "1.3.33" 473 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.33.tgz#bf00703d62a7c65238136578c352d6c5c042a545" 474 | 475 | end-of-stream@~0.1.5: 476 | version "0.1.5" 477 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-0.1.5.tgz#8e177206c3c80837d85632e8b9359dfe8b2f6eaf" 478 | dependencies: 479 | once "~1.3.0" 480 | 481 | error-ex@^1.2.0: 482 | version "1.3.1" 483 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 484 | dependencies: 485 | is-arrayish "^0.2.1" 486 | 487 | escape-string-regexp@^1.0.2: 488 | version "1.0.5" 489 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 490 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 491 | 492 | expand-brackets@^2.1.4: 493 | version "2.1.4" 494 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 495 | dependencies: 496 | debug "^2.3.3" 497 | define-property "^0.2.5" 498 | extend-shallow "^2.0.1" 499 | posix-character-classes "^0.1.0" 500 | regex-not "^1.0.0" 501 | snapdragon "^0.8.1" 502 | to-regex "^3.0.1" 503 | 504 | expand-tilde@^2.0.0, expand-tilde@^2.0.2: 505 | version "2.0.2" 506 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" 507 | dependencies: 508 | homedir-polyfill "^1.0.1" 509 | 510 | extend-shallow@^1.1.2: 511 | version "1.1.4" 512 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-1.1.4.tgz#19d6bf94dfc09d76ba711f39b872d21ff4dd9071" 513 | integrity sha1-Gda/lN/AnXa6cR85uHLSH/TdkHE= 514 | dependencies: 515 | kind-of "^1.1.0" 516 | 517 | extend-shallow@^2.0.1: 518 | version "2.0.1" 519 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 520 | dependencies: 521 | is-extendable "^0.1.0" 522 | 523 | extend-shallow@^3.0.0: 524 | version "3.0.2" 525 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 526 | dependencies: 527 | assign-symbols "^1.0.0" 528 | is-extendable "^1.0.1" 529 | 530 | extend@^3.0.0, extend@~3.0.1: 531 | version "3.0.1" 532 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 533 | 534 | extglob@^2.0.2: 535 | version "2.0.4" 536 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 537 | dependencies: 538 | array-unique "^0.3.2" 539 | define-property "^1.0.0" 540 | expand-brackets "^2.1.4" 541 | extend-shallow "^2.0.1" 542 | fragment-cache "^0.2.1" 543 | regex-not "^1.0.0" 544 | snapdragon "^0.8.1" 545 | to-regex "^3.0.1" 546 | 547 | extsprintf@1.3.0: 548 | version "1.3.0" 549 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 550 | 551 | extsprintf@^1.2.0: 552 | version "1.4.0" 553 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 554 | 555 | fancy-log@^1.1.0: 556 | version "1.3.2" 557 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.2.tgz#f41125e3d84f2e7d89a43d06d958c8f78be16be1" 558 | dependencies: 559 | ansi-gray "^0.1.1" 560 | color-support "^1.1.3" 561 | time-stamp "^1.0.0" 562 | 563 | fancy-log@^1.3.2: 564 | version "1.3.3" 565 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.3.tgz#dbc19154f558690150a23953a0adbd035be45fc7" 566 | integrity sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw== 567 | dependencies: 568 | ansi-gray "^0.1.1" 569 | color-support "^1.1.3" 570 | parse-node-version "^1.0.0" 571 | time-stamp "^1.0.0" 572 | 573 | fast-deep-equal@^1.0.0: 574 | version "1.0.0" 575 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 576 | 577 | fast-json-stable-stringify@^2.0.0: 578 | version "2.0.0" 579 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 580 | 581 | fill-range@^4.0.0: 582 | version "4.0.0" 583 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 584 | dependencies: 585 | extend-shallow "^2.0.1" 586 | is-number "^3.0.0" 587 | repeat-string "^1.6.1" 588 | to-regex-range "^2.1.0" 589 | 590 | find-index@^0.1.1: 591 | version "0.1.1" 592 | resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" 593 | 594 | find-up@^1.0.0: 595 | version "1.1.2" 596 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 597 | dependencies: 598 | path-exists "^2.0.0" 599 | pinkie-promise "^2.0.0" 600 | 601 | findup-sync@^2.0.0: 602 | version "2.0.0" 603 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc" 604 | dependencies: 605 | detect-file "^1.0.0" 606 | is-glob "^3.1.0" 607 | micromatch "^3.0.4" 608 | resolve-dir "^1.0.1" 609 | 610 | fined@^1.0.1: 611 | version "1.1.0" 612 | resolved "https://registry.yarnpkg.com/fined/-/fined-1.1.0.tgz#b37dc844b76a2f5e7081e884f7c0ae344f153476" 613 | dependencies: 614 | expand-tilde "^2.0.2" 615 | is-plain-object "^2.0.3" 616 | object.defaults "^1.1.0" 617 | object.pick "^1.2.0" 618 | parse-filepath "^1.0.1" 619 | 620 | first-chunk-stream@^1.0.0: 621 | version "1.0.0" 622 | resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" 623 | 624 | flagged-respawn@^1.0.0: 625 | version "1.0.0" 626 | resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-1.0.0.tgz#4e79ae9b2eb38bf86b3bb56bf3e0a56aa5fcabd7" 627 | 628 | for-in@^1.0.1, for-in@^1.0.2: 629 | version "1.0.2" 630 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 631 | 632 | for-own@^1.0.0: 633 | version "1.0.0" 634 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" 635 | dependencies: 636 | for-in "^1.0.1" 637 | 638 | forever-agent@~0.6.1: 639 | version "0.6.1" 640 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 641 | 642 | form-data@~2.3.1: 643 | version "2.3.2" 644 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 645 | dependencies: 646 | asynckit "^0.4.0" 647 | combined-stream "1.0.6" 648 | mime-types "^2.1.12" 649 | 650 | fragment-cache@^0.2.1: 651 | version "0.2.1" 652 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 653 | dependencies: 654 | map-cache "^0.2.2" 655 | 656 | fs.realpath@^1.0.0: 657 | version "1.0.0" 658 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 659 | 660 | fstream@^1.0.0, fstream@^1.0.2: 661 | version "1.0.11" 662 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 663 | dependencies: 664 | graceful-fs "^4.1.2" 665 | inherits "~2.0.0" 666 | mkdirp ">=0.5 0" 667 | rimraf "2" 668 | 669 | gauge@~2.7.3: 670 | version "2.7.4" 671 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 672 | dependencies: 673 | aproba "^1.0.3" 674 | console-control-strings "^1.0.0" 675 | has-unicode "^2.0.0" 676 | object-assign "^4.1.0" 677 | signal-exit "^3.0.0" 678 | string-width "^1.0.1" 679 | strip-ansi "^3.0.1" 680 | wide-align "^1.1.0" 681 | 682 | gaze@^0.5.1: 683 | version "0.5.2" 684 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-0.5.2.tgz#40b709537d24d1d45767db5a908689dfe69ac44f" 685 | dependencies: 686 | globule "~0.1.0" 687 | 688 | gaze@^1.0.0: 689 | version "1.1.2" 690 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.2.tgz#847224677adb8870d679257ed3388fdb61e40105" 691 | dependencies: 692 | globule "^1.0.0" 693 | 694 | get-caller-file@^1.0.1: 695 | version "1.0.2" 696 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 697 | 698 | get-stdin@^4.0.1: 699 | version "4.0.1" 700 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 701 | 702 | get-value@^2.0.3, get-value@^2.0.6: 703 | version "2.0.6" 704 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 705 | 706 | getpass@^0.1.1: 707 | version "0.1.7" 708 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 709 | dependencies: 710 | assert-plus "^1.0.0" 711 | 712 | glob-stream@^3.1.5: 713 | version "3.1.18" 714 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-3.1.18.tgz#9170a5f12b790306fdfe598f313f8f7954fd143b" 715 | dependencies: 716 | glob "^4.3.1" 717 | glob2base "^0.0.12" 718 | minimatch "^2.0.1" 719 | ordered-read-streams "^0.1.0" 720 | through2 "^0.6.1" 721 | unique-stream "^1.0.0" 722 | 723 | glob-watcher@^0.0.6: 724 | version "0.0.6" 725 | resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-0.0.6.tgz#b95b4a8df74b39c83298b0c05c978b4d9a3b710b" 726 | dependencies: 727 | gaze "^0.5.1" 728 | 729 | glob2base@^0.0.12: 730 | version "0.0.12" 731 | resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" 732 | dependencies: 733 | find-index "^0.1.1" 734 | 735 | glob@^4.3.1: 736 | version "4.5.3" 737 | resolved "https://registry.yarnpkg.com/glob/-/glob-4.5.3.tgz#c6cb73d3226c1efef04de3c56d012f03377ee15f" 738 | dependencies: 739 | inflight "^1.0.4" 740 | inherits "2" 741 | minimatch "^2.0.1" 742 | once "^1.3.0" 743 | 744 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@~7.1.1: 745 | version "7.1.2" 746 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 747 | dependencies: 748 | fs.realpath "^1.0.0" 749 | inflight "^1.0.4" 750 | inherits "2" 751 | minimatch "^3.0.4" 752 | once "^1.3.0" 753 | path-is-absolute "^1.0.0" 754 | 755 | glob@~3.1.21: 756 | version "3.1.21" 757 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.1.21.tgz#d29e0a055dea5138f4d07ed40e8982e83c2066cd" 758 | dependencies: 759 | graceful-fs "~1.2.0" 760 | inherits "1" 761 | minimatch "~0.2.11" 762 | 763 | global-modules@^1.0.0: 764 | version "1.0.0" 765 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" 766 | dependencies: 767 | global-prefix "^1.0.1" 768 | is-windows "^1.0.1" 769 | resolve-dir "^1.0.0" 770 | 771 | global-prefix@^1.0.1: 772 | version "1.0.2" 773 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" 774 | dependencies: 775 | expand-tilde "^2.0.2" 776 | homedir-polyfill "^1.0.1" 777 | ini "^1.3.4" 778 | is-windows "^1.0.1" 779 | which "^1.2.14" 780 | 781 | globule@^1.0.0: 782 | version "1.2.0" 783 | resolved "https://registry.yarnpkg.com/globule/-/globule-1.2.0.tgz#1dc49c6822dd9e8a2fa00ba2a295006e8664bd09" 784 | dependencies: 785 | glob "~7.1.1" 786 | lodash "~4.17.4" 787 | minimatch "~3.0.2" 788 | 789 | globule@~0.1.0: 790 | version "0.1.0" 791 | resolved "https://registry.yarnpkg.com/globule/-/globule-0.1.0.tgz#d9c8edde1da79d125a151b79533b978676346ae5" 792 | dependencies: 793 | glob "~3.1.21" 794 | lodash "~1.0.1" 795 | minimatch "~0.2.11" 796 | 797 | glogg@^1.0.0: 798 | version "1.0.1" 799 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.1.tgz#dcf758e44789cc3f3d32c1f3562a3676e6a34810" 800 | dependencies: 801 | sparkles "^1.0.0" 802 | 803 | graceful-fs@^3.0.0: 804 | version "3.0.11" 805 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.11.tgz#7613c778a1afea62f25c630a086d7f3acbbdd818" 806 | dependencies: 807 | natives "^1.1.0" 808 | 809 | graceful-fs@^4.1.2: 810 | version "4.1.11" 811 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 812 | 813 | graceful-fs@~1.2.0: 814 | version "1.2.3" 815 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364" 816 | 817 | gulp-autoprefixer@^3.1.1: 818 | version "3.1.1" 819 | resolved "https://registry.yarnpkg.com/gulp-autoprefixer/-/gulp-autoprefixer-3.1.1.tgz#75230051cd0d171343d783b7e9b5d1120eeef9b0" 820 | dependencies: 821 | autoprefixer "^6.0.0" 822 | gulp-util "^3.0.0" 823 | postcss "^5.0.4" 824 | through2 "^2.0.0" 825 | vinyl-sourcemaps-apply "^0.2.0" 826 | 827 | gulp-clean-css@^2.3.2: 828 | version "2.4.0" 829 | resolved "https://registry.yarnpkg.com/gulp-clean-css/-/gulp-clean-css-2.4.0.tgz#2ae48109fe83ccc967ff5ad53c044949a4863b36" 830 | dependencies: 831 | clean-css "^4.0.4" 832 | gulp-util "^3.0.8" 833 | object-assign "^4.1.1" 834 | through2 "^2.0.3" 835 | vinyl-sourcemaps-apply "^0.2.1" 836 | 837 | gulp-plumber@^1.0.1: 838 | version "1.2.1" 839 | resolved "https://registry.yarnpkg.com/gulp-plumber/-/gulp-plumber-1.2.1.tgz#d38700755a300b9d372318e4ffb5ff7ced0b2c84" 840 | integrity sha512-mctAi9msEAG7XzW5ytDVZ9PxWMzzi1pS2rBH7lA095DhMa6KEXjm+St0GOCc567pJKJ/oCvosVAZEpAey0q2eQ== 841 | dependencies: 842 | chalk "^1.1.3" 843 | fancy-log "^1.3.2" 844 | plugin-error "^0.1.2" 845 | through2 "^2.0.3" 846 | 847 | gulp-rename@^1.2.2: 848 | version "1.4.0" 849 | resolved "https://registry.yarnpkg.com/gulp-rename/-/gulp-rename-1.4.0.tgz#de1c718e7c4095ae861f7296ef4f3248648240bd" 850 | 851 | gulp-sass@^2.1.0: 852 | version "2.3.2" 853 | resolved "https://registry.yarnpkg.com/gulp-sass/-/gulp-sass-2.3.2.tgz#82b7ab90fe902cdc34c04f180d92f2c34902dd52" 854 | dependencies: 855 | gulp-util "^3.0" 856 | lodash.clonedeep "^4.3.2" 857 | node-sass "^3.4.2" 858 | through2 "^2.0.0" 859 | vinyl-sourcemaps-apply "^0.2.0" 860 | 861 | gulp-strip-css-comments@^1.2.0: 862 | version "1.2.0" 863 | resolved "https://registry.yarnpkg.com/gulp-strip-css-comments/-/gulp-strip-css-comments-1.2.0.tgz#fe79863ce32f50dd4cbe8d0db56f476c86cfb9b8" 864 | dependencies: 865 | gulp-util "^3.0.0" 866 | strip-css-comments "^3.0.0" 867 | through2 "^2.0.0" 868 | 869 | gulp-util@^3.0, gulp-util@^3.0.0, gulp-util@^3.0.8: 870 | version "3.0.8" 871 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" 872 | dependencies: 873 | array-differ "^1.0.0" 874 | array-uniq "^1.0.2" 875 | beeper "^1.0.0" 876 | chalk "^1.0.0" 877 | dateformat "^2.0.0" 878 | fancy-log "^1.1.0" 879 | gulplog "^1.0.0" 880 | has-gulplog "^0.1.0" 881 | lodash._reescape "^3.0.0" 882 | lodash._reevaluate "^3.0.0" 883 | lodash._reinterpolate "^3.0.0" 884 | lodash.template "^3.0.0" 885 | minimist "^1.1.0" 886 | multipipe "^0.1.2" 887 | object-assign "^3.0.0" 888 | replace-ext "0.0.1" 889 | through2 "^2.0.0" 890 | vinyl "^0.5.0" 891 | 892 | gulp@^3.9.1: 893 | version "3.9.1" 894 | resolved "https://registry.yarnpkg.com/gulp/-/gulp-3.9.1.tgz#571ce45928dd40af6514fc4011866016c13845b4" 895 | dependencies: 896 | archy "^1.0.0" 897 | chalk "^1.0.0" 898 | deprecated "^0.0.1" 899 | gulp-util "^3.0.0" 900 | interpret "^1.0.0" 901 | liftoff "^2.1.0" 902 | minimist "^1.1.0" 903 | orchestrator "^0.3.0" 904 | pretty-hrtime "^1.0.0" 905 | semver "^4.1.0" 906 | tildify "^1.0.0" 907 | v8flags "^2.0.2" 908 | vinyl-fs "^0.3.0" 909 | 910 | gulplog@^1.0.0: 911 | version "1.0.0" 912 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" 913 | dependencies: 914 | glogg "^1.0.0" 915 | 916 | har-schema@^2.0.0: 917 | version "2.0.0" 918 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 919 | 920 | har-validator@~5.0.3: 921 | version "5.0.3" 922 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 923 | dependencies: 924 | ajv "^5.1.0" 925 | har-schema "^2.0.0" 926 | 927 | has-ansi@^2.0.0: 928 | version "2.0.0" 929 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 930 | integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= 931 | dependencies: 932 | ansi-regex "^2.0.0" 933 | 934 | has-flag@^1.0.0: 935 | version "1.0.0" 936 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 937 | 938 | has-gulplog@^0.1.0: 939 | version "0.1.0" 940 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" 941 | dependencies: 942 | sparkles "^1.0.0" 943 | 944 | has-unicode@^2.0.0: 945 | version "2.0.1" 946 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 947 | 948 | has-value@^0.3.1: 949 | version "0.3.1" 950 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 951 | dependencies: 952 | get-value "^2.0.3" 953 | has-values "^0.1.4" 954 | isobject "^2.0.0" 955 | 956 | has-value@^1.0.0: 957 | version "1.0.0" 958 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 959 | dependencies: 960 | get-value "^2.0.6" 961 | has-values "^1.0.0" 962 | isobject "^3.0.0" 963 | 964 | has-values@^0.1.4: 965 | version "0.1.4" 966 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 967 | 968 | has-values@^1.0.0: 969 | version "1.0.0" 970 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 971 | dependencies: 972 | is-number "^3.0.0" 973 | kind-of "^4.0.0" 974 | 975 | hawk@~6.0.2: 976 | version "6.0.2" 977 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 978 | dependencies: 979 | boom "4.x.x" 980 | cryptiles "3.x.x" 981 | hoek "4.x.x" 982 | sntp "2.x.x" 983 | 984 | hoek@4.x.x: 985 | version "4.2.0" 986 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 987 | 988 | homedir-polyfill@^1.0.1: 989 | version "1.0.1" 990 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" 991 | dependencies: 992 | parse-passwd "^1.0.0" 993 | 994 | hosted-git-info@^2.1.4: 995 | version "2.5.0" 996 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 997 | 998 | http-signature@~1.2.0: 999 | version "1.2.0" 1000 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1001 | dependencies: 1002 | assert-plus "^1.0.0" 1003 | jsprim "^1.2.2" 1004 | sshpk "^1.7.0" 1005 | 1006 | in-publish@^2.0.0: 1007 | version "2.0.0" 1008 | resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" 1009 | 1010 | indent-string@^2.1.0: 1011 | version "2.1.0" 1012 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1013 | dependencies: 1014 | repeating "^2.0.0" 1015 | 1016 | inflight@^1.0.4: 1017 | version "1.0.6" 1018 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1019 | dependencies: 1020 | once "^1.3.0" 1021 | wrappy "1" 1022 | 1023 | inherits@1: 1024 | version "1.0.2" 1025 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-1.0.2.tgz#ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b" 1026 | 1027 | inherits@2, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1028 | version "2.0.3" 1029 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1030 | 1031 | ini@^1.3.4: 1032 | version "1.3.5" 1033 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1034 | 1035 | interpret@^1.0.0: 1036 | version "1.1.0" 1037 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 1038 | 1039 | invert-kv@^1.0.0: 1040 | version "1.0.0" 1041 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1042 | 1043 | is-absolute@^1.0.0: 1044 | version "1.0.0" 1045 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" 1046 | dependencies: 1047 | is-relative "^1.0.0" 1048 | is-windows "^1.0.1" 1049 | 1050 | is-accessor-descriptor@^0.1.6: 1051 | version "0.1.6" 1052 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1053 | dependencies: 1054 | kind-of "^3.0.2" 1055 | 1056 | is-accessor-descriptor@^1.0.0: 1057 | version "1.0.0" 1058 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1059 | dependencies: 1060 | kind-of "^6.0.0" 1061 | 1062 | is-arrayish@^0.2.1: 1063 | version "0.2.1" 1064 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1065 | 1066 | is-buffer@^1.1.5: 1067 | version "1.1.6" 1068 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1069 | 1070 | is-builtin-module@^1.0.0: 1071 | version "1.0.0" 1072 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1073 | dependencies: 1074 | builtin-modules "^1.0.0" 1075 | 1076 | is-data-descriptor@^0.1.4: 1077 | version "0.1.4" 1078 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1079 | dependencies: 1080 | kind-of "^3.0.2" 1081 | 1082 | is-data-descriptor@^1.0.0: 1083 | version "1.0.0" 1084 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1085 | dependencies: 1086 | kind-of "^6.0.0" 1087 | 1088 | is-descriptor@^0.1.0: 1089 | version "0.1.6" 1090 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1091 | dependencies: 1092 | is-accessor-descriptor "^0.1.6" 1093 | is-data-descriptor "^0.1.4" 1094 | kind-of "^5.0.0" 1095 | 1096 | is-descriptor@^1.0.0: 1097 | version "1.0.2" 1098 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1099 | dependencies: 1100 | is-accessor-descriptor "^1.0.0" 1101 | is-data-descriptor "^1.0.0" 1102 | kind-of "^6.0.2" 1103 | 1104 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1105 | version "0.1.1" 1106 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1107 | 1108 | is-extendable@^1.0.1: 1109 | version "1.0.1" 1110 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1111 | dependencies: 1112 | is-plain-object "^2.0.4" 1113 | 1114 | is-extglob@^2.1.0: 1115 | version "2.1.1" 1116 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1117 | 1118 | is-finite@^1.0.0: 1119 | version "1.0.2" 1120 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1121 | dependencies: 1122 | number-is-nan "^1.0.0" 1123 | 1124 | is-fullwidth-code-point@^1.0.0: 1125 | version "1.0.0" 1126 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1127 | dependencies: 1128 | number-is-nan "^1.0.0" 1129 | 1130 | is-glob@^3.1.0: 1131 | version "3.1.0" 1132 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1133 | dependencies: 1134 | is-extglob "^2.1.0" 1135 | 1136 | is-number@^3.0.0: 1137 | version "3.0.0" 1138 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1139 | dependencies: 1140 | kind-of "^3.0.2" 1141 | 1142 | is-odd@^1.0.0: 1143 | version "1.0.0" 1144 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-1.0.0.tgz#3b8a932eb028b3775c39bb09e91767accdb69088" 1145 | dependencies: 1146 | is-number "^3.0.0" 1147 | 1148 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1149 | version "2.0.4" 1150 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1151 | dependencies: 1152 | isobject "^3.0.1" 1153 | 1154 | is-regexp@^1.0.0: 1155 | version "1.0.0" 1156 | resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" 1157 | 1158 | is-relative@^1.0.0: 1159 | version "1.0.0" 1160 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" 1161 | dependencies: 1162 | is-unc-path "^1.0.0" 1163 | 1164 | is-typedarray@~1.0.0: 1165 | version "1.0.0" 1166 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1167 | 1168 | is-unc-path@^1.0.0: 1169 | version "1.0.0" 1170 | resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" 1171 | dependencies: 1172 | unc-path-regex "^0.1.2" 1173 | 1174 | is-utf8@^0.2.0: 1175 | version "0.2.1" 1176 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1177 | 1178 | is-windows@^1.0.1: 1179 | version "1.0.1" 1180 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.1.tgz#310db70f742d259a16a369202b51af84233310d9" 1181 | 1182 | isarray@0.0.1: 1183 | version "0.0.1" 1184 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1185 | 1186 | isarray@1.0.0, isarray@~1.0.0: 1187 | version "1.0.0" 1188 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1189 | 1190 | isexe@^2.0.0: 1191 | version "2.0.0" 1192 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1193 | 1194 | isobject@^2.0.0: 1195 | version "2.1.0" 1196 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1197 | dependencies: 1198 | isarray "1.0.0" 1199 | 1200 | isobject@^3.0.0, isobject@^3.0.1: 1201 | version "3.0.1" 1202 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1203 | 1204 | isstream@~0.1.2: 1205 | version "0.1.2" 1206 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1207 | 1208 | js-base64@^2.1.8, js-base64@^2.1.9: 1209 | version "2.4.3" 1210 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.4.3.tgz#2e545ec2b0f2957f41356510205214e98fad6582" 1211 | 1212 | jsbn@~0.1.0: 1213 | version "0.1.1" 1214 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1215 | 1216 | json-schema-traverse@^0.3.0: 1217 | version "0.3.1" 1218 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1219 | 1220 | json-schema@0.2.3: 1221 | version "0.2.3" 1222 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1223 | 1224 | json-stringify-safe@~5.0.1: 1225 | version "5.0.1" 1226 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1227 | 1228 | jsprim@^1.2.2: 1229 | version "1.4.1" 1230 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1231 | dependencies: 1232 | assert-plus "1.0.0" 1233 | extsprintf "1.3.0" 1234 | json-schema "0.2.3" 1235 | verror "1.10.0" 1236 | 1237 | kind-of@^1.1.0: 1238 | version "1.1.0" 1239 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-1.1.0.tgz#140a3d2d41a36d2efcfa9377b62c24f8495a5c44" 1240 | integrity sha1-FAo9LUGjbS78+pN3tiwk+ElaXEQ= 1241 | 1242 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.1.0, kind-of@^3.2.0: 1243 | version "3.2.2" 1244 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1245 | dependencies: 1246 | is-buffer "^1.1.5" 1247 | 1248 | kind-of@^4.0.0: 1249 | version "4.0.0" 1250 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1251 | dependencies: 1252 | is-buffer "^1.1.5" 1253 | 1254 | kind-of@^5.0.0, kind-of@^5.0.2: 1255 | version "5.1.0" 1256 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1257 | 1258 | kind-of@^6.0.0, kind-of@^6.0.2: 1259 | version "6.0.2" 1260 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1261 | 1262 | lazy-cache@^2.0.2: 1263 | version "2.0.2" 1264 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-2.0.2.tgz#b9190a4f913354694840859f8a8f7084d8822264" 1265 | dependencies: 1266 | set-getter "^0.1.0" 1267 | 1268 | lcid@^1.0.0: 1269 | version "1.0.0" 1270 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1271 | dependencies: 1272 | invert-kv "^1.0.0" 1273 | 1274 | liftoff@^2.1.0: 1275 | version "2.5.0" 1276 | resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.5.0.tgz#2009291bb31cea861bbf10a7c15a28caf75c31ec" 1277 | dependencies: 1278 | extend "^3.0.0" 1279 | findup-sync "^2.0.0" 1280 | fined "^1.0.1" 1281 | flagged-respawn "^1.0.0" 1282 | is-plain-object "^2.0.4" 1283 | object.map "^1.0.0" 1284 | rechoir "^0.6.2" 1285 | resolve "^1.1.7" 1286 | 1287 | load-json-file@^1.0.0: 1288 | version "1.1.0" 1289 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1290 | dependencies: 1291 | graceful-fs "^4.1.2" 1292 | parse-json "^2.2.0" 1293 | pify "^2.0.0" 1294 | pinkie-promise "^2.0.0" 1295 | strip-bom "^2.0.0" 1296 | 1297 | lodash._basecopy@^3.0.0: 1298 | version "3.0.1" 1299 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1300 | 1301 | lodash._basetostring@^3.0.0: 1302 | version "3.0.1" 1303 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" 1304 | 1305 | lodash._basevalues@^3.0.0: 1306 | version "3.0.0" 1307 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" 1308 | 1309 | lodash._getnative@^3.0.0: 1310 | version "3.9.1" 1311 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1312 | 1313 | lodash._isiterateecall@^3.0.0: 1314 | version "3.0.9" 1315 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1316 | 1317 | lodash._reescape@^3.0.0: 1318 | version "3.0.0" 1319 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" 1320 | 1321 | lodash._reevaluate@^3.0.0: 1322 | version "3.0.0" 1323 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" 1324 | 1325 | lodash._reinterpolate@^3.0.0: 1326 | version "3.0.0" 1327 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 1328 | 1329 | lodash._root@^3.0.0: 1330 | version "3.0.1" 1331 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 1332 | 1333 | lodash.assign@^4.2.0: 1334 | version "4.2.0" 1335 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 1336 | 1337 | lodash.clonedeep@^4.3.2: 1338 | version "4.5.0" 1339 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 1340 | 1341 | lodash.escape@^3.0.0: 1342 | version "3.2.0" 1343 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" 1344 | dependencies: 1345 | lodash._root "^3.0.0" 1346 | 1347 | lodash.isarguments@^3.0.0: 1348 | version "3.1.0" 1349 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1350 | 1351 | lodash.isarray@^3.0.0: 1352 | version "3.0.4" 1353 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1354 | 1355 | lodash.keys@^3.0.0: 1356 | version "3.1.2" 1357 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1358 | dependencies: 1359 | lodash._getnative "^3.0.0" 1360 | lodash.isarguments "^3.0.0" 1361 | lodash.isarray "^3.0.0" 1362 | 1363 | lodash.restparam@^3.0.0: 1364 | version "3.6.1" 1365 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 1366 | 1367 | lodash.template@^3.0.0: 1368 | version "3.6.2" 1369 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" 1370 | dependencies: 1371 | lodash._basecopy "^3.0.0" 1372 | lodash._basetostring "^3.0.0" 1373 | lodash._basevalues "^3.0.0" 1374 | lodash._isiterateecall "^3.0.0" 1375 | lodash._reinterpolate "^3.0.0" 1376 | lodash.escape "^3.0.0" 1377 | lodash.keys "^3.0.0" 1378 | lodash.restparam "^3.0.0" 1379 | lodash.templatesettings "^3.0.0" 1380 | 1381 | lodash.templatesettings@^3.0.0: 1382 | version "3.1.1" 1383 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" 1384 | dependencies: 1385 | lodash._reinterpolate "^3.0.0" 1386 | lodash.escape "^3.0.0" 1387 | 1388 | lodash@^4.0.0, lodash@~4.17.4: 1389 | version "4.17.5" 1390 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 1391 | 1392 | lodash@~1.0.1: 1393 | version "1.0.2" 1394 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-1.0.2.tgz#8f57560c83b59fc270bd3d561b690043430e2551" 1395 | 1396 | loud-rejection@^1.0.0: 1397 | version "1.6.0" 1398 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1399 | dependencies: 1400 | currently-unhandled "^0.4.1" 1401 | signal-exit "^3.0.0" 1402 | 1403 | lru-cache@2: 1404 | version "2.7.3" 1405 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 1406 | 1407 | lru-cache@^4.0.1: 1408 | version "4.1.1" 1409 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1410 | dependencies: 1411 | pseudomap "^1.0.2" 1412 | yallist "^2.1.2" 1413 | 1414 | make-iterator@^1.0.0: 1415 | version "1.0.0" 1416 | resolved "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.0.tgz#57bef5dc85d23923ba23767324d8e8f8f3d9694b" 1417 | dependencies: 1418 | kind-of "^3.1.0" 1419 | 1420 | map-cache@^0.2.0, map-cache@^0.2.2: 1421 | version "0.2.2" 1422 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1423 | 1424 | map-obj@^1.0.0, map-obj@^1.0.1: 1425 | version "1.0.1" 1426 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1427 | 1428 | map-visit@^1.0.0: 1429 | version "1.0.0" 1430 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 1431 | dependencies: 1432 | object-visit "^1.0.0" 1433 | 1434 | meow@^3.7.0: 1435 | version "3.7.0" 1436 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1437 | dependencies: 1438 | camelcase-keys "^2.0.0" 1439 | decamelize "^1.1.2" 1440 | loud-rejection "^1.0.0" 1441 | map-obj "^1.0.1" 1442 | minimist "^1.1.3" 1443 | normalize-package-data "^2.3.4" 1444 | object-assign "^4.0.1" 1445 | read-pkg-up "^1.0.1" 1446 | redent "^1.0.0" 1447 | trim-newlines "^1.0.0" 1448 | 1449 | micromatch@^3.0.4: 1450 | version "3.1.5" 1451 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.5.tgz#d05e168c206472dfbca985bfef4f57797b4cd4ba" 1452 | dependencies: 1453 | arr-diff "^4.0.0" 1454 | array-unique "^0.3.2" 1455 | braces "^2.3.0" 1456 | define-property "^1.0.0" 1457 | extend-shallow "^2.0.1" 1458 | extglob "^2.0.2" 1459 | fragment-cache "^0.2.1" 1460 | kind-of "^6.0.0" 1461 | nanomatch "^1.2.5" 1462 | object.pick "^1.3.0" 1463 | regex-not "^1.0.0" 1464 | snapdragon "^0.8.1" 1465 | to-regex "^3.0.1" 1466 | 1467 | mime-db@~1.30.0: 1468 | version "1.30.0" 1469 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1470 | 1471 | mime-types@^2.1.12, mime-types@~2.1.17: 1472 | version "2.1.17" 1473 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1474 | dependencies: 1475 | mime-db "~1.30.0" 1476 | 1477 | minimatch@^2.0.1: 1478 | version "2.0.10" 1479 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" 1480 | dependencies: 1481 | brace-expansion "^1.0.0" 1482 | 1483 | minimatch@^3.0.2, minimatch@^3.0.4, minimatch@~3.0.2: 1484 | version "3.0.4" 1485 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1486 | dependencies: 1487 | brace-expansion "^1.1.7" 1488 | 1489 | minimatch@~0.2.11: 1490 | version "0.2.14" 1491 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.2.14.tgz#c74e780574f63c6f9a090e90efbe6ef53a6a756a" 1492 | dependencies: 1493 | lru-cache "2" 1494 | sigmund "~1.0.0" 1495 | 1496 | minimist@0.0.8: 1497 | version "0.0.8" 1498 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1499 | 1500 | minimist@^1.1.0, minimist@^1.1.3: 1501 | version "1.2.0" 1502 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1503 | 1504 | mixin-deep@^1.2.0: 1505 | version "1.3.1" 1506 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 1507 | dependencies: 1508 | for-in "^1.0.2" 1509 | is-extendable "^1.0.1" 1510 | 1511 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 1512 | version "0.5.1" 1513 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1514 | dependencies: 1515 | minimist "0.0.8" 1516 | 1517 | ms@2.0.0: 1518 | version "2.0.0" 1519 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1520 | 1521 | multipipe@^0.1.2: 1522 | version "0.1.2" 1523 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" 1524 | dependencies: 1525 | duplexer2 "0.0.2" 1526 | 1527 | nan@^2.3.2: 1528 | version "2.8.0" 1529 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 1530 | 1531 | nanomatch@^1.2.5: 1532 | version "1.2.7" 1533 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.7.tgz#53cd4aa109ff68b7f869591fdc9d10daeeea3e79" 1534 | dependencies: 1535 | arr-diff "^4.0.0" 1536 | array-unique "^0.3.2" 1537 | define-property "^1.0.0" 1538 | extend-shallow "^2.0.1" 1539 | fragment-cache "^0.2.1" 1540 | is-odd "^1.0.0" 1541 | kind-of "^5.0.2" 1542 | object.pick "^1.3.0" 1543 | regex-not "^1.0.0" 1544 | snapdragon "^0.8.1" 1545 | to-regex "^3.0.1" 1546 | 1547 | natives@^1.1.0: 1548 | version "1.1.1" 1549 | resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.1.tgz#011acce1f7cbd87f7ba6b3093d6cd9392be1c574" 1550 | 1551 | node-gyp@^3.3.1: 1552 | version "3.6.2" 1553 | resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.6.2.tgz#9bfbe54562286284838e750eac05295853fa1c60" 1554 | dependencies: 1555 | fstream "^1.0.0" 1556 | glob "^7.0.3" 1557 | graceful-fs "^4.1.2" 1558 | minimatch "^3.0.2" 1559 | mkdirp "^0.5.0" 1560 | nopt "2 || 3" 1561 | npmlog "0 || 1 || 2 || 3 || 4" 1562 | osenv "0" 1563 | request "2" 1564 | rimraf "2" 1565 | semver "~5.3.0" 1566 | tar "^2.0.0" 1567 | which "1" 1568 | 1569 | node-sass@^3.4.2: 1570 | version "3.13.1" 1571 | resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-3.13.1.tgz#7240fbbff2396304b4223527ed3020589c004fc2" 1572 | dependencies: 1573 | async-foreach "^0.1.3" 1574 | chalk "^1.1.1" 1575 | cross-spawn "^3.0.0" 1576 | gaze "^1.0.0" 1577 | get-stdin "^4.0.1" 1578 | glob "^7.0.3" 1579 | in-publish "^2.0.0" 1580 | lodash.assign "^4.2.0" 1581 | lodash.clonedeep "^4.3.2" 1582 | meow "^3.7.0" 1583 | mkdirp "^0.5.1" 1584 | nan "^2.3.2" 1585 | node-gyp "^3.3.1" 1586 | npmlog "^4.0.0" 1587 | request "^2.61.0" 1588 | sass-graph "^2.1.1" 1589 | 1590 | "nopt@2 || 3": 1591 | version "3.0.6" 1592 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1593 | dependencies: 1594 | abbrev "1" 1595 | 1596 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1597 | version "2.4.0" 1598 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1599 | dependencies: 1600 | hosted-git-info "^2.1.4" 1601 | is-builtin-module "^1.0.0" 1602 | semver "2 || 3 || 4 || 5" 1603 | validate-npm-package-license "^3.0.1" 1604 | 1605 | normalize-range@^0.1.2: 1606 | version "0.1.2" 1607 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 1608 | 1609 | "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0: 1610 | version "4.1.2" 1611 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1612 | dependencies: 1613 | are-we-there-yet "~1.1.2" 1614 | console-control-strings "~1.1.0" 1615 | gauge "~2.7.3" 1616 | set-blocking "~2.0.0" 1617 | 1618 | num2fraction@^1.2.2: 1619 | version "1.2.2" 1620 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 1621 | 1622 | number-is-nan@^1.0.0: 1623 | version "1.0.1" 1624 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1625 | 1626 | oauth-sign@~0.8.2: 1627 | version "0.8.2" 1628 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1629 | 1630 | object-assign@^3.0.0: 1631 | version "3.0.0" 1632 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 1633 | 1634 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 1635 | version "4.1.1" 1636 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1637 | 1638 | object-copy@^0.1.0: 1639 | version "0.1.0" 1640 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 1641 | dependencies: 1642 | copy-descriptor "^0.1.0" 1643 | define-property "^0.2.5" 1644 | kind-of "^3.0.3" 1645 | 1646 | object-visit@^1.0.0: 1647 | version "1.0.1" 1648 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 1649 | dependencies: 1650 | isobject "^3.0.0" 1651 | 1652 | object.defaults@^1.1.0: 1653 | version "1.1.0" 1654 | resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf" 1655 | dependencies: 1656 | array-each "^1.0.1" 1657 | array-slice "^1.0.0" 1658 | for-own "^1.0.0" 1659 | isobject "^3.0.0" 1660 | 1661 | object.map@^1.0.0: 1662 | version "1.0.1" 1663 | resolved "https://registry.yarnpkg.com/object.map/-/object.map-1.0.1.tgz#cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37" 1664 | dependencies: 1665 | for-own "^1.0.0" 1666 | make-iterator "^1.0.0" 1667 | 1668 | object.pick@^1.2.0, object.pick@^1.3.0: 1669 | version "1.3.0" 1670 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 1671 | dependencies: 1672 | isobject "^3.0.1" 1673 | 1674 | once@^1.3.0: 1675 | version "1.4.0" 1676 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1677 | dependencies: 1678 | wrappy "1" 1679 | 1680 | once@~1.3.0: 1681 | version "1.3.3" 1682 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1683 | dependencies: 1684 | wrappy "1" 1685 | 1686 | orchestrator@^0.3.0: 1687 | version "0.3.8" 1688 | resolved "https://registry.yarnpkg.com/orchestrator/-/orchestrator-0.3.8.tgz#14e7e9e2764f7315fbac184e506c7aa6df94ad7e" 1689 | dependencies: 1690 | end-of-stream "~0.1.5" 1691 | sequencify "~0.0.7" 1692 | stream-consume "~0.1.0" 1693 | 1694 | ordered-read-streams@^0.1.0: 1695 | version "0.1.0" 1696 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz#fd565a9af8eb4473ba69b6ed8a34352cb552f126" 1697 | 1698 | os-homedir@^1.0.0: 1699 | version "1.0.2" 1700 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1701 | 1702 | os-locale@^1.4.0: 1703 | version "1.4.0" 1704 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1705 | dependencies: 1706 | lcid "^1.0.0" 1707 | 1708 | os-tmpdir@^1.0.0: 1709 | version "1.0.2" 1710 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1711 | 1712 | osenv@0: 1713 | version "0.1.4" 1714 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1715 | dependencies: 1716 | os-homedir "^1.0.0" 1717 | os-tmpdir "^1.0.0" 1718 | 1719 | parse-filepath@^1.0.1: 1720 | version "1.0.2" 1721 | resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" 1722 | dependencies: 1723 | is-absolute "^1.0.0" 1724 | map-cache "^0.2.0" 1725 | path-root "^0.1.1" 1726 | 1727 | parse-json@^2.2.0: 1728 | version "2.2.0" 1729 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1730 | dependencies: 1731 | error-ex "^1.2.0" 1732 | 1733 | parse-node-version@^1.0.0: 1734 | version "1.0.1" 1735 | resolved "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b" 1736 | integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== 1737 | 1738 | parse-passwd@^1.0.0: 1739 | version "1.0.0" 1740 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 1741 | 1742 | pascalcase@^0.1.1: 1743 | version "0.1.1" 1744 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 1745 | 1746 | path-exists@^2.0.0: 1747 | version "2.1.0" 1748 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1749 | dependencies: 1750 | pinkie-promise "^2.0.0" 1751 | 1752 | path-is-absolute@^1.0.0: 1753 | version "1.0.1" 1754 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1755 | 1756 | path-parse@^1.0.5: 1757 | version "1.0.5" 1758 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1759 | 1760 | path-root-regex@^0.1.0: 1761 | version "0.1.2" 1762 | resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" 1763 | 1764 | path-root@^0.1.1: 1765 | version "0.1.1" 1766 | resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" 1767 | dependencies: 1768 | path-root-regex "^0.1.0" 1769 | 1770 | path-type@^1.0.0: 1771 | version "1.1.0" 1772 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1773 | dependencies: 1774 | graceful-fs "^4.1.2" 1775 | pify "^2.0.0" 1776 | pinkie-promise "^2.0.0" 1777 | 1778 | performance-now@^2.1.0: 1779 | version "2.1.0" 1780 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1781 | 1782 | pify@^2.0.0: 1783 | version "2.3.0" 1784 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1785 | 1786 | pinkie-promise@^2.0.0: 1787 | version "2.0.1" 1788 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1789 | dependencies: 1790 | pinkie "^2.0.0" 1791 | 1792 | pinkie@^2.0.0: 1793 | version "2.0.4" 1794 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1795 | 1796 | plugin-error@^0.1.2: 1797 | version "0.1.2" 1798 | resolved "https://registry.yarnpkg.com/plugin-error/-/plugin-error-0.1.2.tgz#3b9bb3335ccf00f425e07437e19276967da47ace" 1799 | integrity sha1-O5uzM1zPAPQl4HQ34ZJ2ln2kes4= 1800 | dependencies: 1801 | ansi-cyan "^0.1.1" 1802 | ansi-red "^0.1.1" 1803 | arr-diff "^1.0.1" 1804 | arr-union "^2.0.1" 1805 | extend-shallow "^1.1.2" 1806 | 1807 | posix-character-classes@^0.1.0: 1808 | version "0.1.1" 1809 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 1810 | 1811 | postcss-value-parser@^3.2.3: 1812 | version "3.3.0" 1813 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 1814 | 1815 | postcss@^5.0.4, postcss@^5.2.16: 1816 | version "5.2.18" 1817 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" 1818 | dependencies: 1819 | chalk "^1.1.3" 1820 | js-base64 "^2.1.9" 1821 | source-map "^0.5.6" 1822 | supports-color "^3.2.3" 1823 | 1824 | pretty-hrtime@^1.0.0: 1825 | version "1.0.3" 1826 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 1827 | 1828 | process-nextick-args@~2.0.0: 1829 | version "2.0.0" 1830 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1831 | integrity sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw== 1832 | 1833 | pseudomap@^1.0.2: 1834 | version "1.0.2" 1835 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1836 | 1837 | punycode@^1.4.1: 1838 | version "1.4.1" 1839 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1840 | 1841 | qs@~6.5.1: 1842 | version "6.5.1" 1843 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 1844 | 1845 | read-pkg-up@^1.0.1: 1846 | version "1.0.1" 1847 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1848 | dependencies: 1849 | find-up "^1.0.0" 1850 | read-pkg "^1.0.0" 1851 | 1852 | read-pkg@^1.0.0: 1853 | version "1.1.0" 1854 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1855 | dependencies: 1856 | load-json-file "^1.0.0" 1857 | normalize-package-data "^2.3.2" 1858 | path-type "^1.0.0" 1859 | 1860 | "readable-stream@>=1.0.33-1 <1.1.0-0": 1861 | version "1.0.34" 1862 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 1863 | dependencies: 1864 | core-util-is "~1.0.0" 1865 | inherits "~2.0.1" 1866 | isarray "0.0.1" 1867 | string_decoder "~0.10.x" 1868 | 1869 | readable-stream@^2.0.6: 1870 | version "2.3.4" 1871 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.4.tgz#c946c3f47fa7d8eabc0b6150f4a12f69a4574071" 1872 | dependencies: 1873 | core-util-is "~1.0.0" 1874 | inherits "~2.0.3" 1875 | isarray "~1.0.0" 1876 | process-nextick-args "~2.0.0" 1877 | safe-buffer "~5.1.1" 1878 | string_decoder "~1.0.3" 1879 | util-deprecate "~1.0.1" 1880 | 1881 | readable-stream@^2.1.5, readable-stream@~2.3.6: 1882 | version "2.3.6" 1883 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1884 | integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== 1885 | dependencies: 1886 | core-util-is "~1.0.0" 1887 | inherits "~2.0.3" 1888 | isarray "~1.0.0" 1889 | process-nextick-args "~2.0.0" 1890 | safe-buffer "~5.1.1" 1891 | string_decoder "~1.1.1" 1892 | util-deprecate "~1.0.1" 1893 | 1894 | readable-stream@~1.1.9: 1895 | version "1.1.14" 1896 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 1897 | dependencies: 1898 | core-util-is "~1.0.0" 1899 | inherits "~2.0.1" 1900 | isarray "0.0.1" 1901 | string_decoder "~0.10.x" 1902 | 1903 | rechoir@^0.6.2: 1904 | version "0.6.2" 1905 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 1906 | dependencies: 1907 | resolve "^1.1.6" 1908 | 1909 | redent@^1.0.0: 1910 | version "1.0.0" 1911 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 1912 | dependencies: 1913 | indent-string "^2.1.0" 1914 | strip-indent "^1.0.1" 1915 | 1916 | regex-not@^1.0.0: 1917 | version "1.0.0" 1918 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.0.tgz#42f83e39771622df826b02af176525d6a5f157f9" 1919 | dependencies: 1920 | extend-shallow "^2.0.1" 1921 | 1922 | repeat-element@^1.1.2: 1923 | version "1.1.2" 1924 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1925 | 1926 | repeat-string@^1.6.1: 1927 | version "1.6.1" 1928 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1929 | 1930 | repeating@^2.0.0: 1931 | version "2.0.1" 1932 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1933 | dependencies: 1934 | is-finite "^1.0.0" 1935 | 1936 | replace-ext@0.0.1: 1937 | version "0.0.1" 1938 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 1939 | 1940 | request@2, request@^2.61.0: 1941 | version "2.83.0" 1942 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 1943 | dependencies: 1944 | aws-sign2 "~0.7.0" 1945 | aws4 "^1.6.0" 1946 | caseless "~0.12.0" 1947 | combined-stream "~1.0.5" 1948 | extend "~3.0.1" 1949 | forever-agent "~0.6.1" 1950 | form-data "~2.3.1" 1951 | har-validator "~5.0.3" 1952 | hawk "~6.0.2" 1953 | http-signature "~1.2.0" 1954 | is-typedarray "~1.0.0" 1955 | isstream "~0.1.2" 1956 | json-stringify-safe "~5.0.1" 1957 | mime-types "~2.1.17" 1958 | oauth-sign "~0.8.2" 1959 | performance-now "^2.1.0" 1960 | qs "~6.5.1" 1961 | safe-buffer "^5.1.1" 1962 | stringstream "~0.0.5" 1963 | tough-cookie "~2.3.3" 1964 | tunnel-agent "^0.6.0" 1965 | uuid "^3.1.0" 1966 | 1967 | require-directory@^2.1.1: 1968 | version "2.1.1" 1969 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1970 | 1971 | require-main-filename@^1.0.1: 1972 | version "1.0.1" 1973 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1974 | 1975 | resolve-dir@^1.0.0, resolve-dir@^1.0.1: 1976 | version "1.0.1" 1977 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" 1978 | dependencies: 1979 | expand-tilde "^2.0.0" 1980 | global-modules "^1.0.0" 1981 | 1982 | resolve-url@^0.2.1: 1983 | version "0.2.1" 1984 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 1985 | 1986 | resolve@^1.1.6, resolve@^1.1.7: 1987 | version "1.5.0" 1988 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 1989 | dependencies: 1990 | path-parse "^1.0.5" 1991 | 1992 | rimraf@2: 1993 | version "2.6.2" 1994 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1995 | dependencies: 1996 | glob "^7.0.5" 1997 | 1998 | safe-buffer@^5.0.1, safe-buffer@^5.1.1: 1999 | version "5.1.1" 2000 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2001 | 2002 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2003 | version "5.1.2" 2004 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2005 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2006 | 2007 | sass-graph@^2.1.1: 2008 | version "2.2.4" 2009 | resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.4.tgz#13fbd63cd1caf0908b9fd93476ad43a51d1e0b49" 2010 | dependencies: 2011 | glob "^7.0.0" 2012 | lodash "^4.0.0" 2013 | scss-tokenizer "^0.2.3" 2014 | yargs "^7.0.0" 2015 | 2016 | sass-svg-uri@^1.0.0: 2017 | version "1.0.0" 2018 | resolved "https://registry.yarnpkg.com/sass-svg-uri/-/sass-svg-uri-1.0.0.tgz#01e992e4e3ce8d1ec4eac4c8280c0f2ef45c6be8" 2019 | 2020 | scss-tokenizer@^0.2.3: 2021 | version "0.2.3" 2022 | resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" 2023 | dependencies: 2024 | js-base64 "^2.1.8" 2025 | source-map "^0.4.2" 2026 | 2027 | "semver@2 || 3 || 4 || 5": 2028 | version "5.5.0" 2029 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2030 | 2031 | semver@^4.1.0: 2032 | version "4.3.6" 2033 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" 2034 | 2035 | semver@~5.3.0: 2036 | version "5.3.0" 2037 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2038 | 2039 | sequencify@~0.0.7: 2040 | version "0.0.7" 2041 | resolved "https://registry.yarnpkg.com/sequencify/-/sequencify-0.0.7.tgz#90cff19d02e07027fd767f5ead3e7b95d1e7380c" 2042 | 2043 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2044 | version "2.0.0" 2045 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2046 | 2047 | set-getter@^0.1.0: 2048 | version "0.1.0" 2049 | resolved "https://registry.yarnpkg.com/set-getter/-/set-getter-0.1.0.tgz#d769c182c9d5a51f409145f2fba82e5e86e80376" 2050 | dependencies: 2051 | to-object-path "^0.3.0" 2052 | 2053 | set-value@^0.4.3: 2054 | version "0.4.3" 2055 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 2056 | dependencies: 2057 | extend-shallow "^2.0.1" 2058 | is-extendable "^0.1.1" 2059 | is-plain-object "^2.0.1" 2060 | to-object-path "^0.3.0" 2061 | 2062 | set-value@^2.0.0: 2063 | version "2.0.0" 2064 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 2065 | dependencies: 2066 | extend-shallow "^2.0.1" 2067 | is-extendable "^0.1.1" 2068 | is-plain-object "^2.0.3" 2069 | split-string "^3.0.1" 2070 | 2071 | sigmund@~1.0.0: 2072 | version "1.0.1" 2073 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 2074 | 2075 | signal-exit@^3.0.0: 2076 | version "3.0.2" 2077 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2078 | 2079 | snapdragon-node@^2.0.1: 2080 | version "2.1.1" 2081 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 2082 | dependencies: 2083 | define-property "^1.0.0" 2084 | isobject "^3.0.0" 2085 | snapdragon-util "^3.0.1" 2086 | 2087 | snapdragon-util@^3.0.1: 2088 | version "3.0.1" 2089 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 2090 | dependencies: 2091 | kind-of "^3.2.0" 2092 | 2093 | snapdragon@^0.8.1: 2094 | version "0.8.1" 2095 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.1.tgz#e12b5487faded3e3dea0ac91e9400bf75b401370" 2096 | dependencies: 2097 | base "^0.11.1" 2098 | debug "^2.2.0" 2099 | define-property "^0.2.5" 2100 | extend-shallow "^2.0.1" 2101 | map-cache "^0.2.2" 2102 | source-map "^0.5.6" 2103 | source-map-resolve "^0.5.0" 2104 | use "^2.0.0" 2105 | 2106 | sntp@2.x.x: 2107 | version "2.1.0" 2108 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 2109 | dependencies: 2110 | hoek "4.x.x" 2111 | 2112 | source-map-resolve@^0.5.0: 2113 | version "0.5.1" 2114 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a" 2115 | dependencies: 2116 | atob "^2.0.0" 2117 | decode-uri-component "^0.2.0" 2118 | resolve-url "^0.2.1" 2119 | source-map-url "^0.4.0" 2120 | urix "^0.1.0" 2121 | 2122 | source-map-url@^0.4.0: 2123 | version "0.4.0" 2124 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 2125 | 2126 | source-map@0.5.x, source-map@^0.5.1, source-map@^0.5.6: 2127 | version "0.5.7" 2128 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2129 | 2130 | source-map@^0.4.2: 2131 | version "0.4.4" 2132 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2133 | dependencies: 2134 | amdefine ">=0.0.4" 2135 | 2136 | sparkles@^1.0.0: 2137 | version "1.0.0" 2138 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3" 2139 | 2140 | spdx-correct@~1.0.0: 2141 | version "1.0.2" 2142 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2143 | dependencies: 2144 | spdx-license-ids "^1.0.2" 2145 | 2146 | spdx-expression-parse@~1.0.0: 2147 | version "1.0.4" 2148 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2149 | 2150 | spdx-license-ids@^1.0.2: 2151 | version "1.2.2" 2152 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2153 | 2154 | split-string@^3.0.1, split-string@^3.0.2: 2155 | version "3.1.0" 2156 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 2157 | dependencies: 2158 | extend-shallow "^3.0.0" 2159 | 2160 | sshpk@^1.7.0: 2161 | version "1.13.1" 2162 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2163 | dependencies: 2164 | asn1 "~0.2.3" 2165 | assert-plus "^1.0.0" 2166 | dashdash "^1.12.0" 2167 | getpass "^0.1.1" 2168 | optionalDependencies: 2169 | bcrypt-pbkdf "^1.0.0" 2170 | ecc-jsbn "~0.1.1" 2171 | jsbn "~0.1.0" 2172 | tweetnacl "~0.14.0" 2173 | 2174 | static-extend@^0.1.1: 2175 | version "0.1.2" 2176 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 2177 | dependencies: 2178 | define-property "^0.2.5" 2179 | object-copy "^0.1.0" 2180 | 2181 | stream-consume@~0.1.0: 2182 | version "0.1.0" 2183 | resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.0.tgz#a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f" 2184 | 2185 | string-width@^1.0.1, string-width@^1.0.2: 2186 | version "1.0.2" 2187 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2188 | dependencies: 2189 | code-point-at "^1.0.0" 2190 | is-fullwidth-code-point "^1.0.0" 2191 | strip-ansi "^3.0.0" 2192 | 2193 | string_decoder@~0.10.x: 2194 | version "0.10.31" 2195 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2196 | 2197 | string_decoder@~1.0.3: 2198 | version "1.0.3" 2199 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2200 | integrity sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ== 2201 | dependencies: 2202 | safe-buffer "~5.1.0" 2203 | 2204 | string_decoder@~1.1.1: 2205 | version "1.1.1" 2206 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2207 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 2208 | dependencies: 2209 | safe-buffer "~5.1.0" 2210 | 2211 | stringstream@~0.0.5: 2212 | version "0.0.5" 2213 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2214 | 2215 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2216 | version "3.0.1" 2217 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2218 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 2219 | dependencies: 2220 | ansi-regex "^2.0.0" 2221 | 2222 | strip-bom@^1.0.0: 2223 | version "1.0.0" 2224 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-1.0.0.tgz#85b8862f3844b5a6d5ec8467a93598173a36f794" 2225 | dependencies: 2226 | first-chunk-stream "^1.0.0" 2227 | is-utf8 "^0.2.0" 2228 | 2229 | strip-bom@^2.0.0: 2230 | version "2.0.0" 2231 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2232 | dependencies: 2233 | is-utf8 "^0.2.0" 2234 | 2235 | strip-css-comments@^3.0.0: 2236 | version "3.0.0" 2237 | resolved "https://registry.yarnpkg.com/strip-css-comments/-/strip-css-comments-3.0.0.tgz#7a5625eff8a2b226cf8947a11254da96e13dae89" 2238 | dependencies: 2239 | is-regexp "^1.0.0" 2240 | 2241 | strip-indent@^1.0.1: 2242 | version "1.0.1" 2243 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2244 | dependencies: 2245 | get-stdin "^4.0.1" 2246 | 2247 | supports-color@^2.0.0: 2248 | version "2.0.0" 2249 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2250 | integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= 2251 | 2252 | supports-color@^3.2.3: 2253 | version "3.2.3" 2254 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2255 | dependencies: 2256 | has-flag "^1.0.0" 2257 | 2258 | tar@^2.0.0: 2259 | version "2.2.1" 2260 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2261 | dependencies: 2262 | block-stream "*" 2263 | fstream "^1.0.2" 2264 | inherits "2" 2265 | 2266 | through2@^0.6.1: 2267 | version "0.6.5" 2268 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 2269 | dependencies: 2270 | readable-stream ">=1.0.33-1 <1.1.0-0" 2271 | xtend ">=4.0.0 <4.1.0-0" 2272 | 2273 | through2@^2.0.0: 2274 | version "2.0.3" 2275 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2276 | dependencies: 2277 | readable-stream "^2.1.5" 2278 | xtend "~4.0.1" 2279 | 2280 | through2@^2.0.3: 2281 | version "2.0.5" 2282 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 2283 | integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== 2284 | dependencies: 2285 | readable-stream "~2.3.6" 2286 | xtend "~4.0.1" 2287 | 2288 | tildify@^1.0.0: 2289 | version "1.2.0" 2290 | resolved "https://registry.yarnpkg.com/tildify/-/tildify-1.2.0.tgz#dcec03f55dca9b7aa3e5b04f21817eb56e63588a" 2291 | dependencies: 2292 | os-homedir "^1.0.0" 2293 | 2294 | time-stamp@^1.0.0: 2295 | version "1.1.0" 2296 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" 2297 | integrity sha1-dkpaEa9QVhkhsTPztE5hhofg9cM= 2298 | 2299 | to-object-path@^0.3.0: 2300 | version "0.3.0" 2301 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 2302 | dependencies: 2303 | kind-of "^3.0.2" 2304 | 2305 | to-regex-range@^2.1.0: 2306 | version "2.1.1" 2307 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 2308 | dependencies: 2309 | is-number "^3.0.0" 2310 | repeat-string "^1.6.1" 2311 | 2312 | to-regex@^3.0.1: 2313 | version "3.0.1" 2314 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.1.tgz#15358bee4a2c83bd76377ba1dc049d0f18837aae" 2315 | dependencies: 2316 | define-property "^0.2.5" 2317 | extend-shallow "^2.0.1" 2318 | regex-not "^1.0.0" 2319 | 2320 | tough-cookie@~2.3.3: 2321 | version "2.3.3" 2322 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2323 | dependencies: 2324 | punycode "^1.4.1" 2325 | 2326 | trim-newlines@^1.0.0: 2327 | version "1.0.0" 2328 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2329 | 2330 | tunnel-agent@^0.6.0: 2331 | version "0.6.0" 2332 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2333 | dependencies: 2334 | safe-buffer "^5.0.1" 2335 | 2336 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2337 | version "0.14.5" 2338 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2339 | 2340 | unc-path-regex@^0.1.2: 2341 | version "0.1.2" 2342 | resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" 2343 | 2344 | union-value@^1.0.0: 2345 | version "1.0.0" 2346 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 2347 | dependencies: 2348 | arr-union "^3.1.0" 2349 | get-value "^2.0.6" 2350 | is-extendable "^0.1.1" 2351 | set-value "^0.4.3" 2352 | 2353 | unique-stream@^1.0.0: 2354 | version "1.0.0" 2355 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-1.0.0.tgz#d59a4a75427447d9aa6c91e70263f8d26a4b104b" 2356 | 2357 | unset-value@^1.0.0: 2358 | version "1.0.0" 2359 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 2360 | dependencies: 2361 | has-value "^0.3.1" 2362 | isobject "^3.0.0" 2363 | 2364 | urix@^0.1.0: 2365 | version "0.1.0" 2366 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 2367 | 2368 | use@^2.0.0: 2369 | version "2.0.2" 2370 | resolved "https://registry.yarnpkg.com/use/-/use-2.0.2.tgz#ae28a0d72f93bf22422a18a2e379993112dec8e8" 2371 | dependencies: 2372 | define-property "^0.2.5" 2373 | isobject "^3.0.0" 2374 | lazy-cache "^2.0.2" 2375 | 2376 | user-home@^1.1.1: 2377 | version "1.1.1" 2378 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2379 | 2380 | util-deprecate@~1.0.1: 2381 | version "1.0.2" 2382 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2383 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 2384 | 2385 | uuid@^3.1.0: 2386 | version "3.2.1" 2387 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 2388 | 2389 | v8flags@^2.0.2: 2390 | version "2.1.1" 2391 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 2392 | dependencies: 2393 | user-home "^1.1.1" 2394 | 2395 | validate-npm-package-license@^3.0.1: 2396 | version "3.0.1" 2397 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2398 | dependencies: 2399 | spdx-correct "~1.0.0" 2400 | spdx-expression-parse "~1.0.0" 2401 | 2402 | verror@1.10.0: 2403 | version "1.10.0" 2404 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2405 | dependencies: 2406 | assert-plus "^1.0.0" 2407 | core-util-is "1.0.2" 2408 | extsprintf "^1.2.0" 2409 | 2410 | vinyl-fs@^0.3.0: 2411 | version "0.3.14" 2412 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-0.3.14.tgz#9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6" 2413 | dependencies: 2414 | defaults "^1.0.0" 2415 | glob-stream "^3.1.5" 2416 | glob-watcher "^0.0.6" 2417 | graceful-fs "^3.0.0" 2418 | mkdirp "^0.5.0" 2419 | strip-bom "^1.0.0" 2420 | through2 "^0.6.1" 2421 | vinyl "^0.4.0" 2422 | 2423 | vinyl-sourcemaps-apply@^0.2.0, vinyl-sourcemaps-apply@^0.2.1: 2424 | version "0.2.1" 2425 | resolved "https://registry.yarnpkg.com/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz#ab6549d61d172c2b1b87be5c508d239c8ef87705" 2426 | dependencies: 2427 | source-map "^0.5.1" 2428 | 2429 | vinyl@^0.4.0: 2430 | version "0.4.6" 2431 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" 2432 | dependencies: 2433 | clone "^0.2.0" 2434 | clone-stats "^0.0.1" 2435 | 2436 | vinyl@^0.5.0: 2437 | version "0.5.3" 2438 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" 2439 | dependencies: 2440 | clone "^1.0.0" 2441 | clone-stats "^0.0.1" 2442 | replace-ext "0.0.1" 2443 | 2444 | which-module@^1.0.0: 2445 | version "1.0.0" 2446 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2447 | 2448 | which@1, which@^1.2.14, which@^1.2.9: 2449 | version "1.3.0" 2450 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2451 | dependencies: 2452 | isexe "^2.0.0" 2453 | 2454 | wide-align@^1.1.0: 2455 | version "1.1.2" 2456 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2457 | dependencies: 2458 | string-width "^1.0.2" 2459 | 2460 | wrap-ansi@^2.0.0: 2461 | version "2.1.0" 2462 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2463 | dependencies: 2464 | string-width "^1.0.1" 2465 | strip-ansi "^3.0.1" 2466 | 2467 | wrappy@1: 2468 | version "1.0.2" 2469 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2470 | 2471 | "xtend@>=4.0.0 <4.1.0-0", xtend@~4.0.1: 2472 | version "4.0.1" 2473 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2474 | 2475 | y18n@^3.2.1: 2476 | version "3.2.1" 2477 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2478 | 2479 | yallist@^2.1.2: 2480 | version "2.1.2" 2481 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2482 | 2483 | yargs-parser@^5.0.0: 2484 | version "5.0.0" 2485 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 2486 | dependencies: 2487 | camelcase "^3.0.0" 2488 | 2489 | yargs@^7.0.0: 2490 | version "7.1.0" 2491 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 2492 | dependencies: 2493 | camelcase "^3.0.0" 2494 | cliui "^3.2.0" 2495 | decamelize "^1.1.1" 2496 | get-caller-file "^1.0.1" 2497 | os-locale "^1.4.0" 2498 | read-pkg-up "^1.0.1" 2499 | require-directory "^2.1.1" 2500 | require-main-filename "^1.0.1" 2501 | set-blocking "^2.0.0" 2502 | string-width "^1.0.2" 2503 | which-module "^1.0.0" 2504 | y18n "^3.2.1" 2505 | yargs-parser "^5.0.0" 2506 | --------------------------------------------------------------------------------