├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin └── update-and-test.sh ├── demo ├── Demo.elm ├── demo.css ├── demo.js └── preview.gif ├── elm.json ├── index.html ├── package.json ├── src └── MultiInput.elm ├── styles └── multi-input.css ├── tests └── Main.elm └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # elm-package generated files 2 | elm-stuff 3 | # elm-repl generated files 4 | repl-temp-* 5 | 6 | tests/index.html 7 | node_modules 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | 3 | cache: 4 | yarn: true 5 | 6 | install: 7 | - npm install -g elm elm-test@beta elm-format 8 | 9 | script: 10 | - elm-format --validate src tests 11 | - elm-test 12 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | BSD 3-Clause License 2 | 3 | Copyright (c) 2017, Lorenzo Arribas 4 | All rights reserved. 5 | 6 | Redistribution and use in source and binary forms, with or without 7 | modification, are permitted provided that the following conditions are met: 8 | 9 | * Redistributions of source code must retain the above copyright notice, this 10 | list of conditions and the following disclaimer. 11 | 12 | * Redistributions in binary form must reproduce the above copyright notice, 13 | this list of conditions and the following disclaimer in the documentation 14 | and/or other materials provided with the distribution. 15 | 16 | * Neither the name of the copyright holder nor the names of its 17 | contributors may be used to endorse or promote products derived from 18 | this software without specific prior written permission. 19 | 20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 23 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 24 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 26 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 27 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 28 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # elm-multi-input [![Build Status](https://travis-ci.org/larribas/elm-multi-input.svg?branch=master)](https://travis-ci.org/larribas/elm-multi-input) 2 | 3 | A multi-value input for Elm 4 | 5 | 6 | ## [Try it out](https://larribas.github.io/elm-multi-input/) 7 | 8 | ![alt text](https://github.com/larribas/elm-multi-input/raw/master/demo/preview.gif "Animated preview for the component") 9 | 10 | ## How to use it 11 | 12 | Install the package: 13 | 14 | ``` 15 | elm install larribas/elm-multi-input 16 | ``` 17 | 18 | | elm version | package version | 19 | |-------------|-----------------| 20 | | <= 0.17 | unsupported | 21 | | 0.18 | 1.0.0 | 22 | | 0.19 | > 1.0.1 | 23 | 24 | 25 | Check out `demo/Demo.elm` to see particular implementation examples. 26 | 27 | I also recommend that you download the default sylesheet at `styles/multi-input.css`. 28 | 29 | ## Contribute 30 | 31 | Any contributions or feedback are welcome! 32 | -------------------------------------------------------------------------------- /bin/update-and-test.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | set -e 4 | 5 | echo -e "\n\nInstalling packages" 6 | elm-package install --yes 7 | 8 | echo -e "\n\nValidating format" 9 | elm-format --validate src tests demo 10 | 11 | echo -e "\n\nUpdating demo and gh page" 12 | elm-make demo/Demo.elm --output demo/demo.js 13 | 14 | echo -e "\n\nTesting..." 15 | cd tests 16 | elm-package install --yes 17 | cd .. 18 | elm-test 19 | 20 | 21 | -------------------------------------------------------------------------------- /demo/Demo.elm: -------------------------------------------------------------------------------- 1 | module Demo exposing (main) 2 | 3 | import Browser 4 | import Html exposing (Html) 5 | import Html.Attributes as Attr 6 | import Html.Events as Ev 7 | import MultiInput 8 | import Regex exposing (Regex) 9 | 10 | 11 | main : Program () Model Msg 12 | main = 13 | Browser.element 14 | { init = always init 15 | , update = update 16 | , view = view 17 | , subscriptions = subscriptions 18 | } 19 | 20 | 21 | type alias Example = 22 | { items : List String 23 | , state : MultiInput.State 24 | } 25 | 26 | 27 | type alias Model = 28 | { tags : Example 29 | , emails : Example 30 | , customStyleTags : Example 31 | } 32 | 33 | 34 | type ExampleMsg 35 | = MultiInputMsg MultiInput.Msg 36 | | Reset 37 | 38 | 39 | type Msg 40 | = TagsMsg ExampleMsg 41 | | EmailsMsg ExampleMsg 42 | | CustomStyleTagsMsg ExampleMsg 43 | 44 | 45 | init : ( Model, Cmd Msg ) 46 | init = 47 | ( { tags = 48 | { items = [ "dogs", "cats", "TIGER!" ] 49 | , state = MultiInput.init tagsId 50 | } 51 | , emails = 52 | { items = [ "valid@email.com", "another@email.com", "invalid" ] 53 | , state = MultiInput.init emailsId 54 | } 55 | , customStyleTags = 56 | { items = [ "#5A6378", "#60B5CC", "not-a-color" ] 57 | , state = MultiInput.init customStyleTagsId 58 | } 59 | } 60 | , Cmd.none 61 | ) 62 | 63 | 64 | subscriptions : Model -> Sub Msg 65 | subscriptions model = 66 | Sub.batch 67 | [ MultiInput.subscriptions model.tags.state 68 | |> Sub.map MultiInputMsg 69 | |> Sub.map TagsMsg 70 | , MultiInput.subscriptions model.emails.state 71 | |> Sub.map MultiInputMsg 72 | |> Sub.map EmailsMsg 73 | , MultiInput.subscriptions model.customStyleTags.state 74 | |> Sub.map MultiInputMsg 75 | |> Sub.map CustomStyleTagsMsg 76 | ] 77 | 78 | 79 | updateExample : ExampleMsg -> MultiInput.UpdateConfig -> Example -> (MultiInput.Msg -> Msg) -> String -> ( Example, Cmd Msg ) 80 | updateExample exampleMsg updateConf example toOuterMsg id = 81 | case exampleMsg of 82 | MultiInputMsg msg -> 83 | let 84 | ( nextState, nextItems, nextCmd ) = 85 | MultiInput.update updateConf msg example.state example.items 86 | in 87 | ( { example | items = nextItems, state = nextState }, Cmd.map toOuterMsg nextCmd ) 88 | 89 | Reset -> 90 | ( { example | items = [], state = MultiInput.init id }, Cmd.none ) 91 | 92 | 93 | update : Msg -> Model -> ( Model, Cmd Msg ) 94 | update msg model = 95 | case msg of 96 | TagsMsg exampleMsg -> 97 | let 98 | ( example, cmd ) = 99 | updateExample exampleMsg { separators = defaultSeparators } model.tags (TagsMsg << MultiInputMsg) tagsId 100 | in 101 | ( { model | tags = example }, cmd ) 102 | 103 | EmailsMsg exampleMsg -> 104 | let 105 | ( example, cmd ) = 106 | updateExample exampleMsg { separators = defaultSeparators } model.emails (EmailsMsg << MultiInputMsg) emailsId 107 | in 108 | ( { model | emails = example }, cmd ) 109 | 110 | CustomStyleTagsMsg exampleMsg -> 111 | let 112 | ( example, cmd ) = 113 | updateExample exampleMsg { separators = defaultSeparators } model.customStyleTags (CustomStyleTagsMsg << MultiInputMsg) customStyleTagsId 114 | in 115 | ( { model | customStyleTags = example }, cmd ) 116 | 117 | 118 | view : Model -> Html Msg 119 | view model = 120 | Html.div [ Attr.class "example-list" ] 121 | [ viewTagsExample model 122 | , viewEmailsExample model 123 | , viewCustomStyleTagsExample model 124 | ] 125 | 126 | 127 | viewTagsExample : Model -> Html Msg 128 | viewTagsExample model = 129 | Html.div [ Attr.class "example tags" ] 130 | [ Html.h2 [] [ Html.text "Tags" ] 131 | , MultiInput.view 132 | { placeholder = "Write here" 133 | , toOuterMsg = MultiInputMsg >> TagsMsg 134 | , isValid = matches "^[a-z0-9]+(?:-[a-z0-9]+)*$" 135 | } 136 | [] 137 | model.tags.items 138 | model.tags.state 139 | , Html.button [ Attr.class "reset", Ev.onClick <| TagsMsg Reset ] [ Html.text "Reset" ] 140 | ] 141 | 142 | 143 | viewEmailsExample : Model -> Html Msg 144 | viewEmailsExample model = 145 | let 146 | isValid = 147 | matches ".+@.+\\..+" 148 | 149 | validEmails = 150 | List.filter isValid model.emails.items 151 | 152 | nValidEmails = 153 | List.length validEmails 154 | 155 | maxValidEmails = 156 | 10 157 | in 158 | Html.div [ Attr.class "example emails" ] 159 | [ Html.h2 [] [ Html.text "Emails" ] 160 | , Html.p [ Attr.class "explanation" ] [ Html.text "You can also add some extra functionality to the default component. Here's an idea:" ] 161 | , MultiInput.view 162 | { placeholder = "Write an email here", toOuterMsg = MultiInputMsg >> EmailsMsg, isValid = isValid } 163 | [] 164 | model.emails.items 165 | model.emails.state 166 | , Html.p [ Attr.class "counter" ] [ Html.text <| "You've introduced (" ++ String.fromInt nValidEmails ++ "/" ++ String.fromInt maxValidEmails ++ ") valid emails" ] 167 | , Html.button [ Attr.class "reset", Ev.onClick <| EmailsMsg Reset ] [ Html.text "Reset" ] 168 | ] 169 | 170 | 171 | viewCustomStyleTagsExample : Model -> Html Msg 172 | viewCustomStyleTagsExample model = 173 | Html.div [ Attr.class "example custom-style-tags" ] 174 | [ Html.h2 [] [ Html.text "Custom-Style Tags" ] 175 | , MultiInput.view 176 | { placeholder = "Write here", toOuterMsg = MultiInputMsg >> CustomStyleTagsMsg, isValid = matches "^#[a-fA-F0-9]{6}$" } 177 | [] 178 | model.customStyleTags.items 179 | model.customStyleTags.state 180 | , Html.button [ Attr.class "reset", Ev.onClick <| CustomStyleTagsMsg Reset ] [ Html.text "Reset" ] 181 | ] 182 | 183 | 184 | tagsId : String 185 | tagsId = 186 | "tags-input" 187 | 188 | 189 | emailsId : String 190 | emailsId = 191 | "emails-input" 192 | 193 | 194 | customStyleTagsId : String 195 | customStyleTagsId = 196 | "custom-style-tags-input" 197 | 198 | 199 | defaultSeparators : List String 200 | defaultSeparators = 201 | [ "\n", "\t", " ", "," ] 202 | 203 | 204 | matches : String -> String -> Bool 205 | matches regex = 206 | let 207 | validRegex = 208 | Regex.fromString regex 209 | |> Maybe.withDefault Regex.never 210 | in 211 | Regex.findAtMost 1 validRegex >> List.isEmpty >> not 212 | -------------------------------------------------------------------------------- /demo/demo.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Custom Styles 3 | */ 4 | 5 | div.custom-style-tags div.multi-input-container { 6 | font-size: 1.2em; 7 | } 8 | 9 | li.multi-input-token > p { 10 | display: flex; 11 | align-items: center; 12 | } 13 | 14 | div.custom-style-tags .multi-input-delete-button { 15 | color: white; 16 | font: normal normal normal 14px/1 FontAwesome; 17 | font-size: inherit; 18 | text-rendering: auto; 19 | display: block; 20 | border-left: 1px solid white; 21 | padding-left: 0.3em; 22 | margin-left: 0.5em; 23 | } 24 | 25 | div.custom-style-tags .multi-input-delete-button::after { 26 | content: "\f00d"; /* fa-remove */ 27 | } 28 | 29 | div.custom-style-tags li.multi-input-token { 30 | background-color: var(--elm-blue); 31 | color: white; 32 | } 33 | 34 | div.custom-style-tags li.multi-input-token-invalid { 35 | background-color: var(--elm-orange); 36 | } 37 | 38 | div.custom-style-tags .multi-input-expanding-area > textarea { 39 | color: var(--elm-grey); 40 | } 41 | 42 | 43 | /* 44 | *Page 45 | */ 46 | 47 | body { 48 | --bg-color: #efefef; 49 | --elm-grey: #5A6378; 50 | --elm-orange: #F0AD00; 51 | --elm-blue: #60B5CC; 52 | 53 | margin: 0; 54 | font-family: Helvetica, sans-serif; 55 | } 56 | 57 | header { 58 | display: flex; 59 | flex-direction: column; 60 | align-items: center; 61 | background: var(--bg-color); 62 | margin: 0; 63 | padding: 1em; 64 | color: var(--elm-grey); 65 | } 66 | 67 | span.logo { 68 | margin: 0; 69 | font-size: 5em; 70 | font-family: monospace; 71 | } 72 | 73 | span.logo > span.multi { 74 | color: var(--elm-orange); 75 | } 76 | 77 | span.logo > span.pipe { 78 | letter-spacing: -0.2em; 79 | color: var(--elm-blue); 80 | } 81 | 82 | a { 83 | color: var(--elm-grey); 84 | } 85 | 86 | a:hover { 87 | color: var(--elm-blue); 88 | } 89 | 90 | div.example-list { 91 | display: flex; 92 | flex-direction: column; 93 | align-items: center; 94 | margin-bottom: 2em; 95 | } 96 | 97 | div.example { 98 | max-width: 50em; 99 | margin: 1.5em 0 0; 100 | background: var(--bg-color); 101 | padding: 0 2em; 102 | width: 90%; 103 | } 104 | 105 | div.example > h2 { 106 | color: var(--elm-grey); 107 | text-align: center; 108 | } 109 | 110 | div.example > p.explanation { 111 | color: var(--elm-grey); 112 | } 113 | 114 | div.example > pre { 115 | color: var(--elm-grey); 116 | font-family: monospace; 117 | padding-left: 1em; 118 | } 119 | 120 | button.reset { 121 | float: right; 122 | margin: 2em 0 1em; 123 | border: 1px solid transparent; 124 | color: white; 125 | background: var(--elm-grey); 126 | border-radius: 15px; 127 | font-size: 1.1em; 128 | padding: 0.2em 0.8em; 129 | font-weight: bold; 130 | } 131 | 132 | button.reset:hover { 133 | border-color: var(--elm-grey); 134 | color: var(--elm-grey); 135 | background: white; 136 | cursor: pointer; 137 | } 138 | 139 | div.emails p.counter { 140 | text-align: right; 141 | color: var(--elm-grey); 142 | margin: 0.5em 0 0; 143 | } 144 | -------------------------------------------------------------------------------- /demo/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larribas/elm-multi-input/1c1aba38358cbf78ba386f66c5f953f6ced69982/demo/preview.gif -------------------------------------------------------------------------------- /elm.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "package", 3 | "name": "larribas/elm-multi-input", 4 | "summary": "A multi-value input (for emails, tags, etc.)", 5 | "license": "BSD-3-Clause", 6 | "version": "2.0.0", 7 | "exposed-modules": [ 8 | "MultiInput" 9 | ], 10 | "elm-version": "0.19.0 <= v < 0.20.0", 11 | "dependencies": { 12 | "elm/browser": "1.0.0 <= v < 2.0.0", 13 | "elm/core": "1.0.0 <= v < 2.0.0", 14 | "elm/html": "1.0.0 <= v < 2.0.0", 15 | "elm/json": "1.0.0 <= v < 2.0.0", 16 | "elm/regex": "1.0.0 <= v < 2.0.0" 17 | }, 18 | "test-dependencies": { 19 | "elm-explorations/test": "1.0.0 <= v < 2.0.0" 20 | } 21 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Multi Input (Elm) 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 |

Multi Input

22 | View on GitHub (larribas/elm-multi-input) 23 |
24 |
25 | 26 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": { 3 | "test": "elm-test" 4 | }, 5 | "devDependencies": { 6 | "elm": "^0.19.0-bugfix2", 7 | "elm-format": "^0.8.0", 8 | "elm-test": "^0.19.0-beta4", 9 | "elm-upgrade": "^0.19.1" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/MultiInput.elm: -------------------------------------------------------------------------------- 1 | module MultiInput exposing 2 | ( ViewConfig, UpdateConfig 3 | , Msg(..), State, init, update, subscriptions, view 4 | ) 5 | 6 | {-| A component to input multiple items and display/manage them comfortably. 7 | 8 | You can completely customize the type of items it accepts or the way different items are split up. Examples are an input for multiple item (as in an item client's FROM field), or a tag input (as in Github's repository topics). It allows pasting in bulk, removing existing items and ammending the last typed item. 9 | 10 | For a better feel of what you can do with this component, visit the [demo here](https://larribas.github.io/elm-multi-input/) 11 | 12 | 13 | # Custom Configuration 14 | 15 | @docs ViewConfig, UpdateConfig 16 | 17 | 18 | # Main workflow 19 | 20 | @docs Msg, State, init, update, subscriptions, view 21 | 22 | -} 23 | 24 | import Browser.Dom as Dom 25 | import Browser.Events 26 | import Html exposing (Html) 27 | import Html.Attributes as Attr 28 | import Html.Events as Ev 29 | import Json.Decode as Json 30 | import Regex exposing (Regex) 31 | import Set 32 | import String 33 | import Task 34 | 35 | 36 | {-| Internal messages to manage the component's state. 37 | -} 38 | type Msg 39 | = FocusElement 40 | | TextareaBlurred String 41 | | KeyDown Int 42 | | RemoveItem String 43 | | InputChanged String 44 | 45 | 46 | {-| Component's internal state. 47 | -} 48 | type alias State = 49 | { nextItem : String 50 | , id : String 51 | , needsRefocus : Bool 52 | } 53 | 54 | 55 | {-| Specific settings for the component's update function. 56 | 57 | You can specify a list of strings that act as separators for the different items. 58 | 59 | { separators = [ "\n", "\t", ",", " " ] } 60 | 61 | -} 62 | type alias UpdateConfig = 63 | { separators : List String 64 | } 65 | 66 | 67 | {-| Specific settings for the component's view function. 68 | 69 | `isValid` determines whether a typed item is correct (and give visual feedback to the user) 70 | `toOuterMsg` turns the internal messages for the component into messages from the outer page/component 71 | 72 | { placeholder = "Write your email here" 73 | , isValid = \x -> String.contains "@" 74 | , toOuterMsg = MultiInputMsg 75 | } 76 | 77 | -} 78 | type alias ViewConfig msg = 79 | { placeholder : String 80 | , isValid : String -> Bool 81 | , toOuterMsg : Msg -> msg 82 | } 83 | 84 | 85 | {-| Initialize the component's state. 86 | 87 | It needs a unique ID supplied by the user, in case there are several inputs like this on the same document. By default, we begin with an empty textarea. 88 | 89 | -} 90 | init : String -> State 91 | init id = 92 | { nextItem = "" 93 | , id = id 94 | , needsRefocus = False 95 | } 96 | 97 | 98 | {-| Updates the component's state and a supplied list of items. 99 | 100 | Given a particular change on the input (e.g. a series of items have been pasted, the component has lost focus, a special key has been pressed...) it will update the list of distinct items and the current state of the component. 101 | 102 | -} 103 | update : UpdateConfig -> Msg -> State -> List String -> ( State, List String, Cmd Msg ) 104 | update conf msg state items = 105 | let 106 | nextItemIsEmpty = 107 | state.nextItem == "" 108 | 109 | noChanges = 110 | ( state, items, Cmd.none ) 111 | in 112 | case msg of 113 | FocusElement -> 114 | ( { state | needsRefocus = False } 115 | , items 116 | , if state.needsRefocus then 117 | Task.attempt (\_ -> FocusElement) (Dom.focus state.id) 118 | 119 | else 120 | Cmd.none 121 | ) 122 | 123 | KeyDown key -> 124 | case toSpecialKey key of 125 | Tab -> 126 | if nextItemIsEmpty then 127 | noChanges 128 | 129 | else 130 | ( { state | nextItem = "", needsRefocus = True }, dropDuplicates (items ++ [ state.nextItem ]), Cmd.none ) 131 | 132 | Backspace -> 133 | if nextItemIsEmpty then 134 | case items |> List.reverse |> List.head of 135 | Just previousEmail -> 136 | ( { state | nextItem = previousEmail, needsRefocus = True }, items |> List.take (List.length items - 1), Cmd.none ) 137 | 138 | Nothing -> 139 | noChanges 140 | 141 | else 142 | noChanges 143 | 144 | Other -> 145 | noChanges 146 | 147 | InputChanged text -> 148 | let 149 | separatorRegex = 150 | conf.separators 151 | |> String.join "|" 152 | |> Regex.fromString 153 | |> Maybe.withDefault Regex.never 154 | 155 | allItems = 156 | text |> Regex.split separatorRegex 157 | 158 | ( newItems, nextItem ) = 159 | ( allItems |> List.take (List.length allItems - 1) |> List.filter (not << String.isEmpty) 160 | , allItems |> List.drop (List.length allItems - 1) |> List.head |> Maybe.withDefault "" 161 | ) 162 | in 163 | ( { state | nextItem = nextItem, needsRefocus = True }, dropDuplicates (items ++ newItems), Cmd.none ) 164 | 165 | RemoveItem item -> 166 | ( state, List.filter ((/=) item) items, Cmd.none ) 167 | 168 | TextareaBlurred item -> 169 | if item /= "" then 170 | ( { state | nextItem = "" }, dropDuplicates (items ++ [ item ]), Cmd.none ) 171 | 172 | else 173 | noChanges 174 | 175 | 176 | {-| Subscribes to relevant events for the input 177 | 178 | This allows the component to control the input focus properly, subscribing to the Browser's animation frame sequence. 179 | 180 | The subscription is managed only when strictly needed, so it does not have an impact on performance. 181 | 182 | -} 183 | subscriptions : State -> Sub Msg 184 | subscriptions state = 185 | if state.needsRefocus then 186 | Browser.Events.onAnimationFrame (always FocusElement) 187 | 188 | else 189 | Sub.none 190 | 191 | 192 | {-| Renders the component visually. 193 | 194 | MultiInput.view MultiInputMsg [] "Write a placeholder here" model.inputItems model.inputItemsState 195 | 196 | See README for actual examples. 197 | 198 | -} 199 | view : ViewConfig msg -> List (Html.Attribute msg) -> List String -> State -> Html msg 200 | view conf customAttributes items state = 201 | Html.div [ Attr.class "multi-input-container" ] 202 | [ Html.ul [ Attr.class "multi-input-list", Ev.onClick (conf.toOuterMsg FocusElement) ] 203 | ((items |> List.map (viewItem conf state)) 204 | ++ [ Html.li [ Attr.class "multi-input-list-item" ] [ viewExpandingTextArea conf customAttributes state ] 205 | ] 206 | ) 207 | ] 208 | 209 | 210 | {-| Renders an expanding text area (that is, a textarea element inspired by [this article](https://alistapart.com/article/expanding-text-areas-made-elegant)) used to hold the next item 211 | -} 212 | viewExpandingTextArea : ViewConfig msg -> List (Html.Attribute msg) -> State -> Html msg 213 | viewExpandingTextArea conf customAttributes state = 214 | Html.div [ Attr.class "multi-input-expanding-area" ] 215 | [ Html.pre [] 216 | [ Html.span [] 217 | [ Html.text <| 218 | if state.nextItem /= "" then 219 | state.nextItem 220 | 221 | else 222 | conf.placeholder 223 | ] 224 | , Html.br [] [] 225 | ] 226 | , Html.textarea 227 | ([ Attr.value state.nextItem 228 | , Attr.placeholder conf.placeholder 229 | , Attr.rows 1 230 | , Attr.id state.id 231 | , Ev.onInput (conf.toOuterMsg << InputChanged) 232 | , Ev.onBlur (conf.toOuterMsg <| TextareaBlurred state.nextItem) 233 | , onKeyDown (conf.toOuterMsg << KeyDown) 234 | ] 235 | ++ customAttributes 236 | ) 237 | [] 238 | ] 239 | 240 | 241 | {-| Describes a separate item (usually visualized as a capsule) 242 | -} 243 | viewItem : ViewConfig msg -> State -> String -> Html msg 244 | viewItem conf state item = 245 | Html.li 246 | [ Attr.classList 247 | [ ( "multi-input-token", True ) 248 | , ( "multi-input-token-invalid", not (conf.isValid item) ) 249 | ] 250 | ] 251 | [ Html.p [] 252 | [ Html.text item 253 | , Html.i [ Attr.class "multi-input-delete-button", Ev.onClick (conf.toOuterMsg <| RemoveItem item) ] [ Html.text "" ] 254 | ] 255 | ] 256 | 257 | 258 | type SpecialKey 259 | = Tab 260 | | Backspace 261 | | Other 262 | 263 | 264 | toSpecialKey : Int -> SpecialKey 265 | toSpecialKey keyCode = 266 | case keyCode of 267 | 8 -> 268 | Backspace 269 | 270 | 9 -> 271 | Tab 272 | 273 | _ -> 274 | Other 275 | 276 | 277 | onKeyDown : (Int -> msg) -> Html.Attribute msg 278 | onKeyDown toMsg = 279 | Ev.on "keydown" <| Json.map toMsg Ev.keyCode 280 | 281 | 282 | {-| Drop the duplicates in a list. It preserves the original order, keeping only the first 283 | -} 284 | dropDuplicates : List comparable -> List comparable 285 | dropDuplicates list = 286 | let 287 | step next ( set, acc ) = 288 | if Set.member next set then 289 | ( set, acc ) 290 | 291 | else 292 | ( Set.insert next set, next :: acc ) 293 | in 294 | List.foldl step ( Set.empty, [] ) list |> Tuple.second |> List.reverse 295 | -------------------------------------------------------------------------------- /styles/multi-input.css: -------------------------------------------------------------------------------- 1 | div.multi-input-container { 2 | background: white; 3 | overflow: hidden; 4 | padding: 0.2em; 5 | } 6 | 7 | ul.multi-input-list { 8 | overflow: hidden; 9 | cursor: text; 10 | margin: 0; 11 | padding: 0; 12 | background: transparent; 13 | width: 100%; 14 | } 15 | 16 | ul.multi-input-list li { 17 | list-style-type: none; 18 | max-width: 100%; 19 | } 20 | 21 | li.multi-input-token p { 22 | display: inline; 23 | padding: 0; 24 | margin: 0; 25 | } 26 | 27 | .multi-input-delete-button { 28 | color: black; 29 | margin-left: 0.3em; 30 | cursor: pointer; 31 | } 32 | 33 | .multi-input-delete-button:hover { 34 | color: grey; 35 | } 36 | 37 | .multi-input-delete-button::after { 38 | content: "x"; 39 | font-weight: bold; 40 | font-style: normal; 41 | } 42 | 43 | /* TOKENS */ 44 | 45 | li.multi-input-token { 46 | overflow: hidden; 47 | margin: 0.2em 0.1em; 48 | padding: 0.1em 0.5em; 49 | background-color: #dee7f8; 50 | cursor: default; 51 | border-radius: 15px; 52 | float: left; 53 | } 54 | 55 | li.multi-input-token-invalid { 56 | background-color: #ffd1d1; 57 | } 58 | 59 | li.multi-input-list-item { 60 | border: none; 61 | background: transparent; 62 | float: left; 63 | padding: 0; 64 | margin: 0; 65 | } 66 | 67 | .multi-input-expanding-area { 68 | --padding: 0.45rem 0.3em 0; 69 | 70 | position: relative; 71 | background: white; 72 | padding: var(--padding); 73 | } 74 | 75 | .multi-input-expanding-area > textarea, .multi-input-expanding-area > pre { 76 | margin: 0; 77 | border: none; 78 | line-height: normal; 79 | white-space: pre-wrap; 80 | word-wrap: break-word; 81 | font-size: inherit; 82 | font-family: inherit; 83 | } 84 | 85 | .multi-input-expanding-area > textarea { 86 | width: 100%; 87 | overflow: hidden; 88 | position: absolute; 89 | top: 0; 90 | left: 0; 91 | resize: none; 92 | outline: none; 93 | padding: var(--padding); 94 | } 95 | 96 | .multi-input-expanding-area > pre { 97 | display: block; 98 | visibility: hidden; 99 | padding: 0 0.5rem; 100 | } 101 | -------------------------------------------------------------------------------- /tests/Main.elm: -------------------------------------------------------------------------------- 1 | module Main exposing (suite) 2 | 3 | import Expect exposing (Expectation) 4 | import MultiInput 5 | import Test exposing (Test, describe, test) 6 | 7 | 8 | suite : Test 9 | suite = 10 | describe "MultiInput" 11 | [ describe "update" 12 | [ test "a backspace removes the last item and goes into edit mode" <| 13 | \_ -> 14 | let 15 | ( state, items, _ ) = 16 | MultiInput.update updateConfig (MultiInput.KeyDown 8) { defaultInitState | nextItem = "" } [ "first", "previous" ] 17 | in 18 | Expect.equal ( "previous", [ "first" ] ) ( state.nextItem, items ) 19 | , test "a backspace does nothing special when there are no items" <| 20 | \_ -> 21 | let 22 | ( state, items, _ ) = 23 | MultiInput.update updateConfig (MultiInput.KeyDown 8) { defaultInitState | nextItem = "" } [] 24 | in 25 | Expect.equal ( "", [] ) ( state.nextItem, items ) 26 | , test "a backspace does nothing special when there is a current item" <| 27 | \_ -> 28 | let 29 | ( state, items, _ ) = 30 | MultiInput.update updateConfig (MultiInput.KeyDown 8) { defaultInitState | nextItem = "something" } [ "other" ] 31 | in 32 | Expect.equal ( "something", [ "other" ] ) ( state.nextItem, items ) 33 | , test "any nonspecial key means induces no changes" <| 34 | \_ -> 35 | let 36 | ( state, items, _ ) = 37 | MultiInput.update updateConfig (MultiInput.KeyDown 4) { defaultInitState | nextItem = "something" } [] 38 | in 39 | Expect.equal ( "something", [] ) ( state.nextItem, items ) 40 | , test "removing an item" <| 41 | \_ -> 42 | let 43 | ( state, items, _ ) = 44 | MultiInput.update updateConfig (MultiInput.RemoveItem "two") { defaultInitState | nextItem = "something" } [ "one", "two", "three" ] 45 | in 46 | Expect.equal ( "something", [ "one", "three" ] ) ( state.nextItem, items ) 47 | , test "the current item is itemized when it loses focus" <| 48 | \_ -> 49 | let 50 | ( state, items, _ ) = 51 | MultiInput.update updateConfig (MultiInput.TextareaBlurred "halfway") { defaultInitState | nextItem = "" } [] 52 | in 53 | Expect.equal ( "", [ "halfway" ] ) ( state.nextItem, items ) 54 | , test "no new items are added when the current item is empty" <| 55 | \_ -> 56 | let 57 | messages = 58 | [ MultiInput.KeyDown 9 59 | , MultiInput.TextareaBlurred "" 60 | ] 61 | 62 | updateWhenEmpty msg = 63 | let 64 | ( state, items, _ ) = 65 | MultiInput.update updateConfig msg { defaultInitState | nextItem = "" } [] 66 | in 67 | ( state.nextItem, items ) 68 | in 69 | all (Expect.equal ( "", [] ) << updateWhenEmpty) (\_ -> "Expected that no new items were created") messages 70 | , test "when the input changes all the items are itemized and druplicates dropped" <| 71 | \_ -> 72 | let 73 | nextInput = 74 | "one two\tthree\nfour, five,six,,,seven eight\n\n\neight\nnine" 75 | 76 | ( state, items, _ ) = 77 | MultiInput.update updateConfig (MultiInput.InputChanged nextInput) { defaultInitState | nextItem = "" } [ "previous" ] 78 | 79 | expectedItems = 80 | ( "nine", [ "previous", "one", "two", "three", "four", "five", "six", "seven", "eight" ] ) 81 | in 82 | Expect.equal expectedItems ( state.nextItem, items ) 83 | ] 84 | ] 85 | 86 | 87 | updateConfig : MultiInput.UpdateConfig 88 | updateConfig = 89 | { separators = [ ",", " ", "\t", "\n" ] } 90 | 91 | 92 | defaultInitState : MultiInput.State 93 | defaultInitState = 94 | MultiInput.init "id" 95 | 96 | 97 | all : (a -> Expectation) -> (a -> String) -> List a -> Expectation 98 | all expectation message cases = 99 | case List.head cases of 100 | Just head -> 101 | if expectation head == Expect.pass then 102 | all expectation message (Maybe.withDefault [] <| List.tail cases) 103 | 104 | else 105 | Expect.fail <| message head 106 | 107 | Nothing -> 108 | Expect.pass 109 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | ajv@^4.9.1: 10 | version "4.11.8" 11 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 12 | dependencies: 13 | co "^4.6.0" 14 | json-stable-stringify "^1.0.1" 15 | 16 | ajv@^5.3.0: 17 | version "5.5.2" 18 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 19 | dependencies: 20 | co "^4.6.0" 21 | fast-deep-equal "^1.0.0" 22 | fast-json-stable-stringify "^2.0.0" 23 | json-schema-traverse "^0.3.0" 24 | 25 | ansi-regex@^2.0.0: 26 | version "2.1.1" 27 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 28 | 29 | ansi-regex@^3.0.0: 30 | version "3.0.0" 31 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 32 | 33 | ansi-styles@^2.2.1: 34 | version "2.2.1" 35 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 36 | 37 | ansi-styles@^3.1.0: 38 | version "3.2.1" 39 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 40 | dependencies: 41 | color-convert "^1.9.0" 42 | 43 | anymatch@^1.3.0: 44 | version "1.3.2" 45 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 46 | dependencies: 47 | micromatch "^2.1.5" 48 | normalize-path "^2.0.0" 49 | 50 | aproba@^1.0.3: 51 | version "1.2.0" 52 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 53 | 54 | are-we-there-yet@~1.1.2: 55 | version "1.1.5" 56 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 57 | dependencies: 58 | delegates "^1.0.0" 59 | readable-stream "^2.0.6" 60 | 61 | arr-diff@^2.0.0: 62 | version "2.0.0" 63 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 64 | dependencies: 65 | arr-flatten "^1.0.1" 66 | 67 | arr-flatten@^1.0.1: 68 | version "1.1.0" 69 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 70 | 71 | array-unique@^0.2.1: 72 | version "0.2.1" 73 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 74 | 75 | asn1@~0.2.3: 76 | version "0.2.4" 77 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 78 | dependencies: 79 | safer-buffer "~2.1.0" 80 | 81 | assert-plus@1.0.0, assert-plus@^1.0.0: 82 | version "1.0.0" 83 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 84 | 85 | assert-plus@^0.2.0: 86 | version "0.2.0" 87 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 88 | 89 | async-each@^1.0.0: 90 | version "1.0.1" 91 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 92 | 93 | asynckit@^0.4.0: 94 | version "0.4.0" 95 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 96 | 97 | aws-sign2@~0.6.0: 98 | version "0.6.0" 99 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 100 | 101 | aws-sign2@~0.7.0: 102 | version "0.7.0" 103 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 104 | 105 | aws4@^1.2.1, aws4@^1.8.0: 106 | version "1.8.0" 107 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" 108 | 109 | balanced-match@^1.0.0: 110 | version "1.0.0" 111 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 112 | 113 | bcrypt-pbkdf@^1.0.0: 114 | version "1.0.2" 115 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 116 | dependencies: 117 | tweetnacl "^0.14.3" 118 | 119 | binary-extensions@^1.0.0: 120 | version "1.11.0" 121 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 122 | 123 | "binary@>= 0.3.0 < 1", binary@^0.3.0: 124 | version "0.3.0" 125 | resolved "https://registry.yarnpkg.com/binary/-/binary-0.3.0.tgz#9f60553bc5ce8c3386f3b553cff47462adecaa79" 126 | dependencies: 127 | buffers "~0.1.1" 128 | chainsaw "~0.1.0" 129 | 130 | binstall@1.2.0: 131 | version "1.2.0" 132 | resolved "https://registry.yarnpkg.com/binstall/-/binstall-1.2.0.tgz#6b2c0f580b9e3c607f50ef7a22a54ce9fdc8d933" 133 | dependencies: 134 | request "2.79.0" 135 | tar "2.2.1" 136 | 137 | binwrap@0.1.4: 138 | version "0.1.4" 139 | resolved "https://registry.yarnpkg.com/binwrap/-/binwrap-0.1.4.tgz#ca1f7870302212518fa24b07726f9c50a15c7559" 140 | dependencies: 141 | request "^2.81.0" 142 | request-promise "^4.2.0" 143 | tar "^2.2.1" 144 | unzip "^0.1.11" 145 | 146 | binwrap@^0.2.0, binwrap@^0.2.0-rc2: 147 | version "0.2.0" 148 | resolved "https://registry.yarnpkg.com/binwrap/-/binwrap-0.2.0.tgz#572d0f48c4e767d72d622f0b805ed7ce1db16f9a" 149 | dependencies: 150 | mustache "^2.3.0" 151 | request "^2.87.0" 152 | request-promise "^4.2.0" 153 | tar "^2.2.1" 154 | unzip-stream "^0.3.0" 155 | 156 | block-stream@*: 157 | version "0.0.9" 158 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 159 | dependencies: 160 | inherits "~2.0.0" 161 | 162 | bluebird@^3.5.0: 163 | version "3.5.1" 164 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 165 | 166 | boom@2.x.x: 167 | version "2.10.1" 168 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 169 | dependencies: 170 | hoek "2.x.x" 171 | 172 | brace-expansion@^1.1.7: 173 | version "1.1.11" 174 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 175 | dependencies: 176 | balanced-match "^1.0.0" 177 | concat-map "0.0.1" 178 | 179 | braces@^1.8.2: 180 | version "1.8.5" 181 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 182 | dependencies: 183 | expand-range "^1.8.1" 184 | preserve "^0.2.0" 185 | repeat-element "^1.1.2" 186 | 187 | buffers@~0.1.1: 188 | version "0.1.1" 189 | resolved "https://registry.yarnpkg.com/buffers/-/buffers-0.1.1.tgz#b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb" 190 | 191 | capture-stack-trace@^1.0.0: 192 | version "1.0.0" 193 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 194 | 195 | caseless@~0.11.0: 196 | version "0.11.0" 197 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 198 | 199 | caseless@~0.12.0: 200 | version "0.12.0" 201 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 202 | 203 | caw@^2.0.1: 204 | version "2.0.1" 205 | resolved "https://registry.yarnpkg.com/caw/-/caw-2.0.1.tgz#6c3ca071fc194720883c2dc5da9b074bfc7e9e95" 206 | dependencies: 207 | get-proxy "^2.0.0" 208 | isurl "^1.0.0-alpha5" 209 | tunnel-agent "^0.6.0" 210 | url-to-options "^1.0.1" 211 | 212 | chainsaw@~0.1.0: 213 | version "0.1.0" 214 | resolved "https://registry.yarnpkg.com/chainsaw/-/chainsaw-0.1.0.tgz#5eab50b28afe58074d0d58291388828b5e5fbc98" 215 | dependencies: 216 | traverse ">=0.3.0 <0.4" 217 | 218 | chalk@2.1.0: 219 | version "2.1.0" 220 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 221 | dependencies: 222 | ansi-styles "^3.1.0" 223 | escape-string-regexp "^1.0.5" 224 | supports-color "^4.0.0" 225 | 226 | chalk@^1.1.1: 227 | version "1.1.3" 228 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 229 | dependencies: 230 | ansi-styles "^2.2.1" 231 | escape-string-regexp "^1.0.2" 232 | has-ansi "^2.0.0" 233 | strip-ansi "^3.0.0" 234 | supports-color "^2.0.0" 235 | 236 | chokidar@1.6.0: 237 | version "1.6.0" 238 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.0.tgz#90c32ad4802901d7713de532dc284e96a63ad058" 239 | dependencies: 240 | anymatch "^1.3.0" 241 | async-each "^1.0.0" 242 | glob-parent "^2.0.0" 243 | inherits "^2.0.1" 244 | is-binary-path "^1.0.0" 245 | is-glob "^2.0.0" 246 | path-is-absolute "^1.0.0" 247 | readdirp "^2.0.0" 248 | optionalDependencies: 249 | fsevents "^1.0.0" 250 | 251 | chownr@^1.0.1: 252 | version "1.0.1" 253 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 254 | 255 | co@^4.6.0: 256 | version "4.6.0" 257 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 258 | 259 | code-point-at@^1.0.0: 260 | version "1.1.0" 261 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 262 | 263 | color-convert@^1.9.0: 264 | version "1.9.2" 265 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147" 266 | dependencies: 267 | color-name "1.1.1" 268 | 269 | color-name@1.1.1: 270 | version "1.1.1" 271 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" 272 | 273 | combined-stream@1.0.6, combined-stream@^1.0.5, combined-stream@~1.0.5, combined-stream@~1.0.6: 274 | version "1.0.6" 275 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 276 | dependencies: 277 | delayed-stream "~1.0.0" 278 | 279 | commander@^2.9.0: 280 | version "2.17.1" 281 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" 282 | 283 | concat-map@0.0.1: 284 | version "0.0.1" 285 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 286 | 287 | config-chain@^1.1.11: 288 | version "1.1.11" 289 | resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2" 290 | dependencies: 291 | ini "^1.3.4" 292 | proto-list "~1.2.1" 293 | 294 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 295 | version "1.1.0" 296 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 297 | 298 | core-util-is@1.0.2, core-util-is@~1.0.0: 299 | version "1.0.2" 300 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 301 | 302 | create-error-class@^3.0.0: 303 | version "3.0.2" 304 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 305 | dependencies: 306 | capture-stack-trace "^1.0.0" 307 | 308 | cross-spawn@4.0.0: 309 | version "4.0.0" 310 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.0.tgz#8254774ab4786b8c5b3cf4dfba66ce563932c252" 311 | dependencies: 312 | lru-cache "^4.0.1" 313 | which "^1.2.9" 314 | 315 | cryptiles@2.x.x: 316 | version "2.0.5" 317 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 318 | dependencies: 319 | boom "2.x.x" 320 | 321 | dashdash@^1.12.0: 322 | version "1.14.1" 323 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 324 | dependencies: 325 | assert-plus "^1.0.0" 326 | 327 | debug@^2.1.2, debug@^2.2.0: 328 | version "2.6.9" 329 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 330 | dependencies: 331 | ms "2.0.0" 332 | 333 | deep-extend@^0.6.0: 334 | version "0.6.0" 335 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 336 | 337 | delayed-stream@~1.0.0: 338 | version "1.0.0" 339 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 340 | 341 | delegates@^1.0.0: 342 | version "1.0.0" 343 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 344 | 345 | detect-libc@^1.0.2: 346 | version "1.0.3" 347 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 348 | 349 | duplexer3@^0.1.4: 350 | version "0.1.4" 351 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 352 | 353 | ecc-jsbn@~0.1.1: 354 | version "0.1.2" 355 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 356 | dependencies: 357 | jsbn "~0.1.0" 358 | safer-buffer "^2.1.0" 359 | 360 | elm-format@^0.8.0: 361 | version "0.8.0" 362 | resolved "https://registry.yarnpkg.com/elm-format/-/elm-format-0.8.0.tgz#f0d59efd0414c081d3759c35e52d466cc5f7d62c" 363 | dependencies: 364 | binwrap "^0.2.0" 365 | 366 | elm-test@^0.19.0-beta4: 367 | version "0.19.0-beta4" 368 | resolved "https://registry.yarnpkg.com/elm-test/-/elm-test-0.19.0-beta4.tgz#37eb3db57372ff6bd5949e911146ec5a6d1a52c9" 369 | dependencies: 370 | binstall "1.2.0" 371 | chalk "2.1.0" 372 | chokidar "1.6.0" 373 | cross-spawn "4.0.0" 374 | elmi-to-json "0.19.0-rc3" 375 | find-parent-dir "^0.3.0" 376 | firstline "1.2.1" 377 | fs-extra "0.30.0" 378 | glob "^7.1.1" 379 | lodash "4.13.1" 380 | minimist "^1.2.0" 381 | murmur-hash-js "1.0.0" 382 | node-elm-compiler "5.0.0-alpha1" 383 | split "^1.0.1" 384 | supports-color "4.2.0" 385 | xmlbuilder "^8.2.2" 386 | optionalDependencies: 387 | fsevents "1.1.2" 388 | 389 | elm-upgrade@^0.19.1: 390 | version "0.19.1" 391 | resolved "https://registry.yarnpkg.com/elm-upgrade/-/elm-upgrade-0.19.1.tgz#c7a2b47c33866b67803d810d5ebbfc34dcbcc1d3" 392 | dependencies: 393 | caw "^2.0.1" 394 | fs-extra "^0.30.0" 395 | got "^6.6.3" 396 | semver "^5.3.0" 397 | which "^1.2.11" 398 | 399 | elm@^0.19.0-bugfix2: 400 | version "0.19.0-bugfix2" 401 | resolved "https://registry.yarnpkg.com/elm/-/elm-0.19.0-bugfix2.tgz#b2b7ad4dbeb89edf997759330b3694f419f9f1b3" 402 | dependencies: 403 | binwrap "0.1.4" 404 | 405 | elmi-to-json@0.19.0-rc3: 406 | version "0.19.0-rc3" 407 | resolved "https://registry.yarnpkg.com/elmi-to-json/-/elmi-to-json-0.19.0-rc3.tgz#bd69161dd38db6002c01cf2f230050ae75df48b3" 408 | dependencies: 409 | binwrap "^0.2.0-rc2" 410 | 411 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 412 | version "1.0.5" 413 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 414 | 415 | expand-brackets@^0.1.4: 416 | version "0.1.5" 417 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 418 | dependencies: 419 | is-posix-bracket "^0.1.0" 420 | 421 | expand-range@^1.8.1: 422 | version "1.8.2" 423 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 424 | dependencies: 425 | fill-range "^2.1.0" 426 | 427 | extend@~3.0.0, extend@~3.0.2: 428 | version "3.0.2" 429 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 430 | 431 | extglob@^0.3.1: 432 | version "0.3.2" 433 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 434 | dependencies: 435 | is-extglob "^1.0.0" 436 | 437 | extsprintf@1.3.0: 438 | version "1.3.0" 439 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 440 | 441 | extsprintf@^1.2.0: 442 | version "1.4.0" 443 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 444 | 445 | fast-deep-equal@^1.0.0: 446 | version "1.1.0" 447 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 448 | 449 | fast-json-stable-stringify@^2.0.0: 450 | version "2.0.0" 451 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 452 | 453 | filename-regex@^2.0.0: 454 | version "2.0.1" 455 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 456 | 457 | fill-range@^2.1.0: 458 | version "2.2.4" 459 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 460 | dependencies: 461 | is-number "^2.1.0" 462 | isobject "^2.0.0" 463 | randomatic "^3.0.0" 464 | repeat-element "^1.1.2" 465 | repeat-string "^1.5.2" 466 | 467 | find-elm-dependencies@1.0.2: 468 | version "1.0.2" 469 | resolved "https://registry.yarnpkg.com/find-elm-dependencies/-/find-elm-dependencies-1.0.2.tgz#737adc0ce34dfde0c3bf85f568658555329e4953" 470 | dependencies: 471 | firstline "1.2.0" 472 | lodash "4.14.2" 473 | 474 | find-parent-dir@^0.3.0: 475 | version "0.3.0" 476 | resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" 477 | 478 | firstline@1.2.0: 479 | version "1.2.0" 480 | resolved "https://registry.yarnpkg.com/firstline/-/firstline-1.2.0.tgz#c9f4886e7f7fbf0afc12d71941dce06b192aea05" 481 | 482 | firstline@1.2.1: 483 | version "1.2.1" 484 | resolved "https://registry.yarnpkg.com/firstline/-/firstline-1.2.1.tgz#b88673c42009f8821fac2926e99720acee924fae" 485 | 486 | for-in@^1.0.1: 487 | version "1.0.2" 488 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 489 | 490 | for-own@^0.1.4: 491 | version "0.1.5" 492 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 493 | dependencies: 494 | for-in "^1.0.1" 495 | 496 | forever-agent@~0.6.1: 497 | version "0.6.1" 498 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 499 | 500 | form-data@~2.1.1: 501 | version "2.1.4" 502 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 503 | dependencies: 504 | asynckit "^0.4.0" 505 | combined-stream "^1.0.5" 506 | mime-types "^2.1.12" 507 | 508 | form-data@~2.3.2: 509 | version "2.3.2" 510 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 511 | dependencies: 512 | asynckit "^0.4.0" 513 | combined-stream "1.0.6" 514 | mime-types "^2.1.12" 515 | 516 | fs-extra@0.30.0, fs-extra@^0.30.0: 517 | version "0.30.0" 518 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" 519 | dependencies: 520 | graceful-fs "^4.1.2" 521 | jsonfile "^2.1.0" 522 | klaw "^1.0.0" 523 | path-is-absolute "^1.0.0" 524 | rimraf "^2.2.8" 525 | 526 | fs-minipass@^1.2.5: 527 | version "1.2.5" 528 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 529 | dependencies: 530 | minipass "^2.2.1" 531 | 532 | fs.realpath@^1.0.0: 533 | version "1.0.0" 534 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 535 | 536 | fsevents@1.1.2: 537 | version "1.1.2" 538 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 539 | dependencies: 540 | nan "^2.3.0" 541 | node-pre-gyp "^0.6.36" 542 | 543 | fsevents@^1.0.0: 544 | version "1.2.4" 545 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 546 | dependencies: 547 | nan "^2.9.2" 548 | node-pre-gyp "^0.10.0" 549 | 550 | fstream-ignore@^1.0.5: 551 | version "1.0.5" 552 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 553 | dependencies: 554 | fstream "^1.0.0" 555 | inherits "2" 556 | minimatch "^3.0.0" 557 | 558 | "fstream@>= 0.1.30 < 1": 559 | version "0.1.31" 560 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-0.1.31.tgz#7337f058fbbbbefa8c9f561a28cab0849202c988" 561 | dependencies: 562 | graceful-fs "~3.0.2" 563 | inherits "~2.0.0" 564 | mkdirp "0.5" 565 | rimraf "2" 566 | 567 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 568 | version "1.0.11" 569 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 570 | dependencies: 571 | graceful-fs "^4.1.2" 572 | inherits "~2.0.0" 573 | mkdirp ">=0.5 0" 574 | rimraf "2" 575 | 576 | gauge@~2.7.3: 577 | version "2.7.4" 578 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 579 | dependencies: 580 | aproba "^1.0.3" 581 | console-control-strings "^1.0.0" 582 | has-unicode "^2.0.0" 583 | object-assign "^4.1.0" 584 | signal-exit "^3.0.0" 585 | string-width "^1.0.1" 586 | strip-ansi "^3.0.1" 587 | wide-align "^1.1.0" 588 | 589 | generate-function@^2.0.0: 590 | version "2.0.0" 591 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 592 | 593 | generate-object-property@^1.1.0: 594 | version "1.2.0" 595 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 596 | dependencies: 597 | is-property "^1.0.0" 598 | 599 | get-proxy@^2.0.0: 600 | version "2.1.0" 601 | resolved "https://registry.yarnpkg.com/get-proxy/-/get-proxy-2.1.0.tgz#349f2b4d91d44c4d4d4e9cba2ad90143fac5ef93" 602 | dependencies: 603 | npm-conf "^1.1.0" 604 | 605 | get-stream@^3.0.0: 606 | version "3.0.0" 607 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 608 | 609 | getpass@^0.1.1: 610 | version "0.1.7" 611 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 612 | dependencies: 613 | assert-plus "^1.0.0" 614 | 615 | glob-base@^0.3.0: 616 | version "0.3.0" 617 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 618 | dependencies: 619 | glob-parent "^2.0.0" 620 | is-glob "^2.0.0" 621 | 622 | glob-parent@^2.0.0: 623 | version "2.0.0" 624 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 625 | dependencies: 626 | is-glob "^2.0.0" 627 | 628 | glob@^7.0.5, glob@^7.1.1: 629 | version "7.1.2" 630 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 631 | dependencies: 632 | fs.realpath "^1.0.0" 633 | inflight "^1.0.4" 634 | inherits "2" 635 | minimatch "^3.0.4" 636 | once "^1.3.0" 637 | path-is-absolute "^1.0.0" 638 | 639 | got@^6.6.3: 640 | version "6.7.1" 641 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 642 | dependencies: 643 | create-error-class "^3.0.0" 644 | duplexer3 "^0.1.4" 645 | get-stream "^3.0.0" 646 | is-redirect "^1.0.0" 647 | is-retry-allowed "^1.0.0" 648 | is-stream "^1.0.0" 649 | lowercase-keys "^1.0.0" 650 | safe-buffer "^5.0.1" 651 | timed-out "^4.0.0" 652 | unzip-response "^2.0.1" 653 | url-parse-lax "^1.0.0" 654 | 655 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 656 | version "4.1.11" 657 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 658 | 659 | graceful-fs@~3.0.2: 660 | version "3.0.11" 661 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.11.tgz#7613c778a1afea62f25c630a086d7f3acbbdd818" 662 | dependencies: 663 | natives "^1.1.0" 664 | 665 | har-schema@^1.0.5: 666 | version "1.0.5" 667 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 668 | 669 | har-schema@^2.0.0: 670 | version "2.0.0" 671 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 672 | 673 | har-validator@~2.0.6: 674 | version "2.0.6" 675 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 676 | dependencies: 677 | chalk "^1.1.1" 678 | commander "^2.9.0" 679 | is-my-json-valid "^2.12.4" 680 | pinkie-promise "^2.0.0" 681 | 682 | har-validator@~4.2.1: 683 | version "4.2.1" 684 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 685 | dependencies: 686 | ajv "^4.9.1" 687 | har-schema "^1.0.5" 688 | 689 | har-validator@~5.1.0: 690 | version "5.1.0" 691 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.0.tgz#44657f5688a22cfd4b72486e81b3a3fb11742c29" 692 | dependencies: 693 | ajv "^5.3.0" 694 | har-schema "^2.0.0" 695 | 696 | has-ansi@^2.0.0: 697 | version "2.0.0" 698 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 699 | dependencies: 700 | ansi-regex "^2.0.0" 701 | 702 | has-flag@^2.0.0: 703 | version "2.0.0" 704 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 705 | 706 | has-symbol-support-x@^1.4.1: 707 | version "1.4.2" 708 | resolved "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455" 709 | 710 | has-to-string-tag-x@^1.2.0: 711 | version "1.4.1" 712 | resolved "https://registry.yarnpkg.com/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz#a045ab383d7b4b2012a00148ab0aa5f290044d4d" 713 | dependencies: 714 | has-symbol-support-x "^1.4.1" 715 | 716 | has-unicode@^2.0.0: 717 | version "2.0.1" 718 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 719 | 720 | hawk@3.1.3, hawk@~3.1.3: 721 | version "3.1.3" 722 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 723 | dependencies: 724 | boom "2.x.x" 725 | cryptiles "2.x.x" 726 | hoek "2.x.x" 727 | sntp "1.x.x" 728 | 729 | hoek@2.x.x: 730 | version "2.16.3" 731 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 732 | 733 | http-signature@~1.1.0: 734 | version "1.1.1" 735 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 736 | dependencies: 737 | assert-plus "^0.2.0" 738 | jsprim "^1.2.2" 739 | sshpk "^1.7.0" 740 | 741 | http-signature@~1.2.0: 742 | version "1.2.0" 743 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 744 | dependencies: 745 | assert-plus "^1.0.0" 746 | jsprim "^1.2.2" 747 | sshpk "^1.7.0" 748 | 749 | iconv-lite@^0.4.4: 750 | version "0.4.24" 751 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 752 | dependencies: 753 | safer-buffer ">= 2.1.2 < 3" 754 | 755 | ignore-walk@^3.0.1: 756 | version "3.0.1" 757 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 758 | dependencies: 759 | minimatch "^3.0.4" 760 | 761 | inflight@^1.0.4: 762 | version "1.0.6" 763 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 764 | dependencies: 765 | once "^1.3.0" 766 | wrappy "1" 767 | 768 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 769 | version "2.0.3" 770 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 771 | 772 | ini@^1.3.4, ini@~1.3.0: 773 | version "1.3.5" 774 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 775 | 776 | is-binary-path@^1.0.0: 777 | version "1.0.1" 778 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 779 | dependencies: 780 | binary-extensions "^1.0.0" 781 | 782 | is-buffer@^1.1.5: 783 | version "1.1.6" 784 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 785 | 786 | is-dotfile@^1.0.0: 787 | version "1.0.3" 788 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 789 | 790 | is-equal-shallow@^0.1.3: 791 | version "0.1.3" 792 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 793 | dependencies: 794 | is-primitive "^2.0.0" 795 | 796 | is-extendable@^0.1.1: 797 | version "0.1.1" 798 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 799 | 800 | is-extglob@^1.0.0: 801 | version "1.0.0" 802 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 803 | 804 | is-fullwidth-code-point@^1.0.0: 805 | version "1.0.0" 806 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 807 | dependencies: 808 | number-is-nan "^1.0.0" 809 | 810 | is-fullwidth-code-point@^2.0.0: 811 | version "2.0.0" 812 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 813 | 814 | is-glob@^2.0.0, is-glob@^2.0.1: 815 | version "2.0.1" 816 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 817 | dependencies: 818 | is-extglob "^1.0.0" 819 | 820 | is-my-ip-valid@^1.0.0: 821 | version "1.0.0" 822 | resolved "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz#7b351b8e8edd4d3995d4d066680e664d94696824" 823 | 824 | is-my-json-valid@^2.12.4: 825 | version "2.19.0" 826 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.19.0.tgz#8fd6e40363cd06b963fa877d444bfb5eddc62175" 827 | dependencies: 828 | generate-function "^2.0.0" 829 | generate-object-property "^1.1.0" 830 | is-my-ip-valid "^1.0.0" 831 | jsonpointer "^4.0.0" 832 | xtend "^4.0.0" 833 | 834 | is-number@^2.1.0: 835 | version "2.1.0" 836 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 837 | dependencies: 838 | kind-of "^3.0.2" 839 | 840 | is-number@^4.0.0: 841 | version "4.0.0" 842 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 843 | 844 | is-object@^1.0.1: 845 | version "1.0.1" 846 | resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470" 847 | 848 | is-posix-bracket@^0.1.0: 849 | version "0.1.1" 850 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 851 | 852 | is-primitive@^2.0.0: 853 | version "2.0.0" 854 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 855 | 856 | is-property@^1.0.0: 857 | version "1.0.2" 858 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 859 | 860 | is-redirect@^1.0.0: 861 | version "1.0.0" 862 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 863 | 864 | is-retry-allowed@^1.0.0: 865 | version "1.1.0" 866 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 867 | 868 | is-stream@^1.0.0: 869 | version "1.1.0" 870 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 871 | 872 | is-typedarray@~1.0.0: 873 | version "1.0.0" 874 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 875 | 876 | isarray@0.0.1: 877 | version "0.0.1" 878 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 879 | 880 | isarray@1.0.0, isarray@~1.0.0: 881 | version "1.0.0" 882 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 883 | 884 | isexe@^2.0.0: 885 | version "2.0.0" 886 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 887 | 888 | isobject@^2.0.0: 889 | version "2.1.0" 890 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 891 | dependencies: 892 | isarray "1.0.0" 893 | 894 | isstream@~0.1.2: 895 | version "0.1.2" 896 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 897 | 898 | isurl@^1.0.0-alpha5: 899 | version "1.0.0" 900 | resolved "https://registry.yarnpkg.com/isurl/-/isurl-1.0.0.tgz#b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67" 901 | dependencies: 902 | has-to-string-tag-x "^1.2.0" 903 | is-object "^1.0.1" 904 | 905 | jsbn@~0.1.0: 906 | version "0.1.1" 907 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 908 | 909 | json-schema-traverse@^0.3.0: 910 | version "0.3.1" 911 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 912 | 913 | json-schema@0.2.3: 914 | version "0.2.3" 915 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 916 | 917 | json-stable-stringify@^1.0.1: 918 | version "1.0.1" 919 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 920 | dependencies: 921 | jsonify "~0.0.0" 922 | 923 | json-stringify-safe@~5.0.1: 924 | version "5.0.1" 925 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 926 | 927 | jsonfile@^2.1.0: 928 | version "2.4.0" 929 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 930 | optionalDependencies: 931 | graceful-fs "^4.1.6" 932 | 933 | jsonify@~0.0.0: 934 | version "0.0.0" 935 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 936 | 937 | jsonpointer@^4.0.0: 938 | version "4.0.1" 939 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 940 | 941 | jsprim@^1.2.2: 942 | version "1.4.1" 943 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 944 | dependencies: 945 | assert-plus "1.0.0" 946 | extsprintf "1.3.0" 947 | json-schema "0.2.3" 948 | verror "1.10.0" 949 | 950 | kind-of@^3.0.2: 951 | version "3.2.2" 952 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 953 | dependencies: 954 | is-buffer "^1.1.5" 955 | 956 | kind-of@^6.0.0: 957 | version "6.0.2" 958 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 959 | 960 | klaw@^1.0.0: 961 | version "1.3.1" 962 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 963 | optionalDependencies: 964 | graceful-fs "^4.1.9" 965 | 966 | lodash@4.13.1: 967 | version "4.13.1" 968 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.13.1.tgz#83e4b10913f48496d4d16fec4a560af2ee744b68" 969 | 970 | lodash@4.14.2: 971 | version "4.14.2" 972 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.14.2.tgz#bbccce6373a400fbfd0a8c67ca42f6d1ef416432" 973 | 974 | lodash@^4.13.1: 975 | version "4.17.10" 976 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 977 | 978 | lowercase-keys@^1.0.0: 979 | version "1.0.1" 980 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 981 | 982 | lru-cache@^4.0.1: 983 | version "4.1.3" 984 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 985 | dependencies: 986 | pseudomap "^1.0.2" 987 | yallist "^2.1.2" 988 | 989 | "match-stream@>= 0.0.2 < 1": 990 | version "0.0.2" 991 | resolved "https://registry.yarnpkg.com/match-stream/-/match-stream-0.0.2.tgz#99eb050093b34dffade421b9ac0b410a9cfa17cf" 992 | dependencies: 993 | buffers "~0.1.1" 994 | readable-stream "~1.0.0" 995 | 996 | math-random@^1.0.1: 997 | version "1.0.1" 998 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 999 | 1000 | micromatch@^2.1.5: 1001 | version "2.3.11" 1002 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1003 | dependencies: 1004 | arr-diff "^2.0.0" 1005 | array-unique "^0.2.1" 1006 | braces "^1.8.2" 1007 | expand-brackets "^0.1.4" 1008 | extglob "^0.3.1" 1009 | filename-regex "^2.0.0" 1010 | is-extglob "^1.0.0" 1011 | is-glob "^2.0.1" 1012 | kind-of "^3.0.2" 1013 | normalize-path "^2.0.1" 1014 | object.omit "^2.0.0" 1015 | parse-glob "^3.0.4" 1016 | regex-cache "^0.4.2" 1017 | 1018 | mime-db@~1.35.0: 1019 | version "1.35.0" 1020 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.35.0.tgz#0569d657466491283709663ad379a99b90d9ab47" 1021 | 1022 | mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.7: 1023 | version "2.1.19" 1024 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.19.tgz#71e464537a7ef81c15f2db9d97e913fc0ff606f0" 1025 | dependencies: 1026 | mime-db "~1.35.0" 1027 | 1028 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1029 | version "3.0.4" 1030 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1031 | dependencies: 1032 | brace-expansion "^1.1.7" 1033 | 1034 | minimist@0.0.8: 1035 | version "0.0.8" 1036 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1037 | 1038 | minimist@^1.2.0: 1039 | version "1.2.0" 1040 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1041 | 1042 | minipass@^2.2.1, minipass@^2.3.3: 1043 | version "2.3.4" 1044 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.4.tgz#4768d7605ed6194d6d576169b9e12ef71e9d9957" 1045 | dependencies: 1046 | safe-buffer "^5.1.2" 1047 | yallist "^3.0.0" 1048 | 1049 | minizlib@^1.1.0: 1050 | version "1.1.0" 1051 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 1052 | dependencies: 1053 | minipass "^2.2.1" 1054 | 1055 | mkdirp@0.5, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 1056 | version "0.5.1" 1057 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1058 | dependencies: 1059 | minimist "0.0.8" 1060 | 1061 | ms@2.0.0: 1062 | version "2.0.0" 1063 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1064 | 1065 | murmur-hash-js@1.0.0: 1066 | version "1.0.0" 1067 | resolved "https://registry.yarnpkg.com/murmur-hash-js/-/murmur-hash-js-1.0.0.tgz#5041049269c96633c866386960b2f4289e75e5b0" 1068 | 1069 | mustache@^2.3.0: 1070 | version "2.3.2" 1071 | resolved "https://registry.yarnpkg.com/mustache/-/mustache-2.3.2.tgz#a6d4d9c3f91d13359ab889a812954f9230a3d0c5" 1072 | 1073 | nan@^2.3.0, nan@^2.9.2: 1074 | version "2.10.0" 1075 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 1076 | 1077 | natives@^1.1.0: 1078 | version "1.1.4" 1079 | resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.4.tgz#2f0f224fc9a7dd53407c7667c84cf8dbe773de58" 1080 | 1081 | needle@^2.2.1: 1082 | version "2.2.2" 1083 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.2.tgz#1120ca4c41f2fcc6976fd28a8968afe239929418" 1084 | dependencies: 1085 | debug "^2.1.2" 1086 | iconv-lite "^0.4.4" 1087 | sax "^1.2.4" 1088 | 1089 | node-elm-compiler@5.0.0-alpha1: 1090 | version "5.0.0-alpha1" 1091 | resolved "https://registry.yarnpkg.com/node-elm-compiler/-/node-elm-compiler-5.0.0-alpha1.tgz#ddfd35788595e5c127039975b50096188d1ae4f6" 1092 | dependencies: 1093 | cross-spawn "4.0.0" 1094 | find-elm-dependencies "1.0.2" 1095 | lodash "4.14.2" 1096 | temp "^0.8.3" 1097 | 1098 | node-pre-gyp@^0.10.0: 1099 | version "0.10.3" 1100 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" 1101 | dependencies: 1102 | detect-libc "^1.0.2" 1103 | mkdirp "^0.5.1" 1104 | needle "^2.2.1" 1105 | nopt "^4.0.1" 1106 | npm-packlist "^1.1.6" 1107 | npmlog "^4.0.2" 1108 | rc "^1.2.7" 1109 | rimraf "^2.6.1" 1110 | semver "^5.3.0" 1111 | tar "^4" 1112 | 1113 | node-pre-gyp@^0.6.36: 1114 | version "0.6.39" 1115 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1116 | dependencies: 1117 | detect-libc "^1.0.2" 1118 | hawk "3.1.3" 1119 | mkdirp "^0.5.1" 1120 | nopt "^4.0.1" 1121 | npmlog "^4.0.2" 1122 | rc "^1.1.7" 1123 | request "2.81.0" 1124 | rimraf "^2.6.1" 1125 | semver "^5.3.0" 1126 | tar "^2.2.1" 1127 | tar-pack "^3.4.0" 1128 | 1129 | nopt@^4.0.1: 1130 | version "4.0.1" 1131 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1132 | dependencies: 1133 | abbrev "1" 1134 | osenv "^0.1.4" 1135 | 1136 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1137 | version "2.1.1" 1138 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1139 | dependencies: 1140 | remove-trailing-separator "^1.0.1" 1141 | 1142 | npm-bundled@^1.0.1: 1143 | version "1.0.5" 1144 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979" 1145 | 1146 | npm-conf@^1.1.0: 1147 | version "1.1.3" 1148 | resolved "https://registry.yarnpkg.com/npm-conf/-/npm-conf-1.1.3.tgz#256cc47bd0e218c259c4e9550bf413bc2192aff9" 1149 | dependencies: 1150 | config-chain "^1.1.11" 1151 | pify "^3.0.0" 1152 | 1153 | npm-packlist@^1.1.6: 1154 | version "1.1.11" 1155 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.11.tgz#84e8c683cbe7867d34b1d357d893ce29e28a02de" 1156 | dependencies: 1157 | ignore-walk "^3.0.1" 1158 | npm-bundled "^1.0.1" 1159 | 1160 | npmlog@^4.0.2: 1161 | version "4.1.2" 1162 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1163 | dependencies: 1164 | are-we-there-yet "~1.1.2" 1165 | console-control-strings "~1.1.0" 1166 | gauge "~2.7.3" 1167 | set-blocking "~2.0.0" 1168 | 1169 | number-is-nan@^1.0.0: 1170 | version "1.0.1" 1171 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1172 | 1173 | oauth-sign@~0.8.1: 1174 | version "0.8.2" 1175 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1176 | 1177 | oauth-sign@~0.9.0: 1178 | version "0.9.0" 1179 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 1180 | 1181 | object-assign@^4.1.0: 1182 | version "4.1.1" 1183 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1184 | 1185 | object.omit@^2.0.0: 1186 | version "2.0.1" 1187 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1188 | dependencies: 1189 | for-own "^0.1.4" 1190 | is-extendable "^0.1.1" 1191 | 1192 | once@^1.3.0, once@^1.3.3: 1193 | version "1.4.0" 1194 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1195 | dependencies: 1196 | wrappy "1" 1197 | 1198 | os-homedir@^1.0.0: 1199 | version "1.0.2" 1200 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1201 | 1202 | os-tmpdir@^1.0.0: 1203 | version "1.0.2" 1204 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1205 | 1206 | osenv@^0.1.4: 1207 | version "0.1.5" 1208 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1209 | dependencies: 1210 | os-homedir "^1.0.0" 1211 | os-tmpdir "^1.0.0" 1212 | 1213 | "over@>= 0.0.5 < 1": 1214 | version "0.0.5" 1215 | resolved "https://registry.yarnpkg.com/over/-/over-0.0.5.tgz#f29852e70fd7e25f360e013a8ec44c82aedb5708" 1216 | 1217 | parse-glob@^3.0.4: 1218 | version "3.0.4" 1219 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1220 | dependencies: 1221 | glob-base "^0.3.0" 1222 | is-dotfile "^1.0.0" 1223 | is-extglob "^1.0.0" 1224 | is-glob "^2.0.0" 1225 | 1226 | path-is-absolute@^1.0.0: 1227 | version "1.0.1" 1228 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1229 | 1230 | performance-now@^0.2.0: 1231 | version "0.2.0" 1232 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1233 | 1234 | performance-now@^2.1.0: 1235 | version "2.1.0" 1236 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1237 | 1238 | pify@^3.0.0: 1239 | version "3.0.0" 1240 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1241 | 1242 | pinkie-promise@^2.0.0: 1243 | version "2.0.1" 1244 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1245 | dependencies: 1246 | pinkie "^2.0.0" 1247 | 1248 | pinkie@^2.0.0: 1249 | version "2.0.4" 1250 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1251 | 1252 | prepend-http@^1.0.1: 1253 | version "1.0.4" 1254 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 1255 | 1256 | preserve@^0.2.0: 1257 | version "0.2.0" 1258 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1259 | 1260 | process-nextick-args@~2.0.0: 1261 | version "2.0.0" 1262 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1263 | 1264 | proto-list@~1.2.1: 1265 | version "1.2.4" 1266 | resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 1267 | 1268 | pseudomap@^1.0.2: 1269 | version "1.0.2" 1270 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1271 | 1272 | psl@^1.1.24: 1273 | version "1.1.29" 1274 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.29.tgz#60f580d360170bb722a797cc704411e6da850c67" 1275 | 1276 | "pullstream@>= 0.4.1 < 1": 1277 | version "0.4.1" 1278 | resolved "https://registry.yarnpkg.com/pullstream/-/pullstream-0.4.1.tgz#d6fb3bf5aed697e831150eb1002c25a3f8ae1314" 1279 | dependencies: 1280 | over ">= 0.0.5 < 1" 1281 | readable-stream "~1.0.31" 1282 | setimmediate ">= 1.0.2 < 2" 1283 | slice-stream ">= 1.0.0 < 2" 1284 | 1285 | punycode@^1.4.1: 1286 | version "1.4.1" 1287 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1288 | 1289 | qs@~6.3.0: 1290 | version "6.3.2" 1291 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 1292 | 1293 | qs@~6.4.0: 1294 | version "6.4.0" 1295 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1296 | 1297 | qs@~6.5.2: 1298 | version "6.5.2" 1299 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 1300 | 1301 | randomatic@^3.0.0: 1302 | version "3.1.0" 1303 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.0.tgz#36f2ca708e9e567f5ed2ec01949026d50aa10116" 1304 | dependencies: 1305 | is-number "^4.0.0" 1306 | kind-of "^6.0.0" 1307 | math-random "^1.0.1" 1308 | 1309 | rc@^1.1.7, rc@^1.2.7: 1310 | version "1.2.8" 1311 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 1312 | dependencies: 1313 | deep-extend "^0.6.0" 1314 | ini "~1.3.0" 1315 | minimist "^1.2.0" 1316 | strip-json-comments "~2.0.1" 1317 | 1318 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 1319 | version "2.3.6" 1320 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1321 | dependencies: 1322 | core-util-is "~1.0.0" 1323 | inherits "~2.0.3" 1324 | isarray "~1.0.0" 1325 | process-nextick-args "~2.0.0" 1326 | safe-buffer "~5.1.1" 1327 | string_decoder "~1.1.1" 1328 | util-deprecate "~1.0.1" 1329 | 1330 | readable-stream@~1.0.0, readable-stream@~1.0.31: 1331 | version "1.0.34" 1332 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 1333 | dependencies: 1334 | core-util-is "~1.0.0" 1335 | inherits "~2.0.1" 1336 | isarray "0.0.1" 1337 | string_decoder "~0.10.x" 1338 | 1339 | readdirp@^2.0.0: 1340 | version "2.1.0" 1341 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1342 | dependencies: 1343 | graceful-fs "^4.1.2" 1344 | minimatch "^3.0.2" 1345 | readable-stream "^2.0.2" 1346 | set-immediate-shim "^1.0.1" 1347 | 1348 | regex-cache@^0.4.2: 1349 | version "0.4.4" 1350 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1351 | dependencies: 1352 | is-equal-shallow "^0.1.3" 1353 | 1354 | remove-trailing-separator@^1.0.1: 1355 | version "1.1.0" 1356 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1357 | 1358 | repeat-element@^1.1.2: 1359 | version "1.1.3" 1360 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 1361 | 1362 | repeat-string@^1.5.2: 1363 | version "1.6.1" 1364 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1365 | 1366 | request-promise-core@1.1.1: 1367 | version "1.1.1" 1368 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 1369 | dependencies: 1370 | lodash "^4.13.1" 1371 | 1372 | request-promise@^4.2.0: 1373 | version "4.2.2" 1374 | resolved "https://registry.yarnpkg.com/request-promise/-/request-promise-4.2.2.tgz#d1ea46d654a6ee4f8ee6a4fea1018c22911904b4" 1375 | dependencies: 1376 | bluebird "^3.5.0" 1377 | request-promise-core "1.1.1" 1378 | stealthy-require "^1.1.0" 1379 | tough-cookie ">=2.3.3" 1380 | 1381 | request@2.79.0: 1382 | version "2.79.0" 1383 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 1384 | dependencies: 1385 | aws-sign2 "~0.6.0" 1386 | aws4 "^1.2.1" 1387 | caseless "~0.11.0" 1388 | combined-stream "~1.0.5" 1389 | extend "~3.0.0" 1390 | forever-agent "~0.6.1" 1391 | form-data "~2.1.1" 1392 | har-validator "~2.0.6" 1393 | hawk "~3.1.3" 1394 | http-signature "~1.1.0" 1395 | is-typedarray "~1.0.0" 1396 | isstream "~0.1.2" 1397 | json-stringify-safe "~5.0.1" 1398 | mime-types "~2.1.7" 1399 | oauth-sign "~0.8.1" 1400 | qs "~6.3.0" 1401 | stringstream "~0.0.4" 1402 | tough-cookie "~2.3.0" 1403 | tunnel-agent "~0.4.1" 1404 | uuid "^3.0.0" 1405 | 1406 | request@2.81.0: 1407 | version "2.81.0" 1408 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1409 | dependencies: 1410 | aws-sign2 "~0.6.0" 1411 | aws4 "^1.2.1" 1412 | caseless "~0.12.0" 1413 | combined-stream "~1.0.5" 1414 | extend "~3.0.0" 1415 | forever-agent "~0.6.1" 1416 | form-data "~2.1.1" 1417 | har-validator "~4.2.1" 1418 | hawk "~3.1.3" 1419 | http-signature "~1.1.0" 1420 | is-typedarray "~1.0.0" 1421 | isstream "~0.1.2" 1422 | json-stringify-safe "~5.0.1" 1423 | mime-types "~2.1.7" 1424 | oauth-sign "~0.8.1" 1425 | performance-now "^0.2.0" 1426 | qs "~6.4.0" 1427 | safe-buffer "^5.0.1" 1428 | stringstream "~0.0.4" 1429 | tough-cookie "~2.3.0" 1430 | tunnel-agent "^0.6.0" 1431 | uuid "^3.0.0" 1432 | 1433 | request@^2.81.0, request@^2.87.0: 1434 | version "2.88.0" 1435 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" 1436 | dependencies: 1437 | aws-sign2 "~0.7.0" 1438 | aws4 "^1.8.0" 1439 | caseless "~0.12.0" 1440 | combined-stream "~1.0.6" 1441 | extend "~3.0.2" 1442 | forever-agent "~0.6.1" 1443 | form-data "~2.3.2" 1444 | har-validator "~5.1.0" 1445 | http-signature "~1.2.0" 1446 | is-typedarray "~1.0.0" 1447 | isstream "~0.1.2" 1448 | json-stringify-safe "~5.0.1" 1449 | mime-types "~2.1.19" 1450 | oauth-sign "~0.9.0" 1451 | performance-now "^2.1.0" 1452 | qs "~6.5.2" 1453 | safe-buffer "^5.1.2" 1454 | tough-cookie "~2.4.3" 1455 | tunnel-agent "^0.6.0" 1456 | uuid "^3.3.2" 1457 | 1458 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 1459 | version "2.6.2" 1460 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1461 | dependencies: 1462 | glob "^7.0.5" 1463 | 1464 | rimraf@~2.2.6: 1465 | version "2.2.8" 1466 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" 1467 | 1468 | safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1469 | version "5.1.2" 1470 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1471 | 1472 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 1473 | version "2.1.2" 1474 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1475 | 1476 | sax@^1.2.4: 1477 | version "1.2.4" 1478 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1479 | 1480 | semver@^5.3.0: 1481 | version "5.5.1" 1482 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.1.tgz#7dfdd8814bdb7cabc7be0fb1d734cfb66c940477" 1483 | 1484 | set-blocking@~2.0.0: 1485 | version "2.0.0" 1486 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1487 | 1488 | set-immediate-shim@^1.0.1: 1489 | version "1.0.1" 1490 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1491 | 1492 | "setimmediate@>= 1.0.1 < 2", "setimmediate@>= 1.0.2 < 2": 1493 | version "1.0.5" 1494 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 1495 | 1496 | signal-exit@^3.0.0: 1497 | version "3.0.2" 1498 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1499 | 1500 | "slice-stream@>= 1.0.0 < 2": 1501 | version "1.0.0" 1502 | resolved "https://registry.yarnpkg.com/slice-stream/-/slice-stream-1.0.0.tgz#5b33bd66f013b1a7f86460b03d463dec39ad3ea0" 1503 | dependencies: 1504 | readable-stream "~1.0.31" 1505 | 1506 | sntp@1.x.x: 1507 | version "1.0.9" 1508 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1509 | dependencies: 1510 | hoek "2.x.x" 1511 | 1512 | split@^1.0.1: 1513 | version "1.0.1" 1514 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 1515 | dependencies: 1516 | through "2" 1517 | 1518 | sshpk@^1.7.0: 1519 | version "1.14.2" 1520 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.2.tgz#c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98" 1521 | dependencies: 1522 | asn1 "~0.2.3" 1523 | assert-plus "^1.0.0" 1524 | dashdash "^1.12.0" 1525 | getpass "^0.1.1" 1526 | safer-buffer "^2.0.2" 1527 | optionalDependencies: 1528 | bcrypt-pbkdf "^1.0.0" 1529 | ecc-jsbn "~0.1.1" 1530 | jsbn "~0.1.0" 1531 | tweetnacl "~0.14.0" 1532 | 1533 | stealthy-require@^1.1.0: 1534 | version "1.1.1" 1535 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 1536 | 1537 | string-width@^1.0.1: 1538 | version "1.0.2" 1539 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1540 | dependencies: 1541 | code-point-at "^1.0.0" 1542 | is-fullwidth-code-point "^1.0.0" 1543 | strip-ansi "^3.0.0" 1544 | 1545 | "string-width@^1.0.2 || 2": 1546 | version "2.1.1" 1547 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1548 | dependencies: 1549 | is-fullwidth-code-point "^2.0.0" 1550 | strip-ansi "^4.0.0" 1551 | 1552 | string_decoder@~0.10.x: 1553 | version "0.10.31" 1554 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1555 | 1556 | string_decoder@~1.1.1: 1557 | version "1.1.1" 1558 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1559 | dependencies: 1560 | safe-buffer "~5.1.0" 1561 | 1562 | stringstream@~0.0.4: 1563 | version "0.0.6" 1564 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" 1565 | 1566 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1567 | version "3.0.1" 1568 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1569 | dependencies: 1570 | ansi-regex "^2.0.0" 1571 | 1572 | strip-ansi@^4.0.0: 1573 | version "4.0.0" 1574 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1575 | dependencies: 1576 | ansi-regex "^3.0.0" 1577 | 1578 | strip-json-comments@~2.0.1: 1579 | version "2.0.1" 1580 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1581 | 1582 | supports-color@4.2.0: 1583 | version "4.2.0" 1584 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.2.0.tgz#ad986dc7eb2315d009b4d77c8169c2231a684037" 1585 | dependencies: 1586 | has-flag "^2.0.0" 1587 | 1588 | supports-color@^2.0.0: 1589 | version "2.0.0" 1590 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1591 | 1592 | supports-color@^4.0.0: 1593 | version "4.5.0" 1594 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 1595 | dependencies: 1596 | has-flag "^2.0.0" 1597 | 1598 | tar-pack@^3.4.0: 1599 | version "3.4.1" 1600 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 1601 | dependencies: 1602 | debug "^2.2.0" 1603 | fstream "^1.0.10" 1604 | fstream-ignore "^1.0.5" 1605 | once "^1.3.3" 1606 | readable-stream "^2.1.4" 1607 | rimraf "^2.5.1" 1608 | tar "^2.2.1" 1609 | uid-number "^0.0.6" 1610 | 1611 | tar@2.2.1, tar@^2.2.1: 1612 | version "2.2.1" 1613 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1614 | dependencies: 1615 | block-stream "*" 1616 | fstream "^1.0.2" 1617 | inherits "2" 1618 | 1619 | tar@^4: 1620 | version "4.4.6" 1621 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.6.tgz#63110f09c00b4e60ac8bcfe1bf3c8660235fbc9b" 1622 | dependencies: 1623 | chownr "^1.0.1" 1624 | fs-minipass "^1.2.5" 1625 | minipass "^2.3.3" 1626 | minizlib "^1.1.0" 1627 | mkdirp "^0.5.0" 1628 | safe-buffer "^5.1.2" 1629 | yallist "^3.0.2" 1630 | 1631 | temp@^0.8.3: 1632 | version "0.8.3" 1633 | resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59" 1634 | dependencies: 1635 | os-tmpdir "^1.0.0" 1636 | rimraf "~2.2.6" 1637 | 1638 | through@2: 1639 | version "2.3.8" 1640 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1641 | 1642 | timed-out@^4.0.0: 1643 | version "4.0.1" 1644 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 1645 | 1646 | tough-cookie@>=2.3.3, tough-cookie@~2.4.3: 1647 | version "2.4.3" 1648 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" 1649 | dependencies: 1650 | psl "^1.1.24" 1651 | punycode "^1.4.1" 1652 | 1653 | tough-cookie@~2.3.0: 1654 | version "2.3.4" 1655 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 1656 | dependencies: 1657 | punycode "^1.4.1" 1658 | 1659 | "traverse@>=0.3.0 <0.4": 1660 | version "0.3.9" 1661 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.3.9.tgz#717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9" 1662 | 1663 | tunnel-agent@^0.6.0: 1664 | version "0.6.0" 1665 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1666 | dependencies: 1667 | safe-buffer "^5.0.1" 1668 | 1669 | tunnel-agent@~0.4.1: 1670 | version "0.4.3" 1671 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 1672 | 1673 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1674 | version "0.14.5" 1675 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1676 | 1677 | uid-number@^0.0.6: 1678 | version "0.0.6" 1679 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1680 | 1681 | unzip-response@^2.0.1: 1682 | version "2.0.1" 1683 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 1684 | 1685 | unzip-stream@^0.3.0: 1686 | version "0.3.0" 1687 | resolved "https://registry.yarnpkg.com/unzip-stream/-/unzip-stream-0.3.0.tgz#c30c054cd6b0d64b13a23cd3ece911eb0b2b52d8" 1688 | dependencies: 1689 | binary "^0.3.0" 1690 | mkdirp "^0.5.1" 1691 | 1692 | unzip@^0.1.11: 1693 | version "0.1.11" 1694 | resolved "https://registry.yarnpkg.com/unzip/-/unzip-0.1.11.tgz#89749c63b058d7d90d619f86b98aa1535d3b97f0" 1695 | dependencies: 1696 | binary ">= 0.3.0 < 1" 1697 | fstream ">= 0.1.30 < 1" 1698 | match-stream ">= 0.0.2 < 1" 1699 | pullstream ">= 0.4.1 < 1" 1700 | readable-stream "~1.0.31" 1701 | setimmediate ">= 1.0.1 < 2" 1702 | 1703 | url-parse-lax@^1.0.0: 1704 | version "1.0.0" 1705 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 1706 | dependencies: 1707 | prepend-http "^1.0.1" 1708 | 1709 | url-to-options@^1.0.1: 1710 | version "1.0.1" 1711 | resolved "https://registry.yarnpkg.com/url-to-options/-/url-to-options-1.0.1.tgz#1505a03a289a48cbd7a434efbaeec5055f5633a9" 1712 | 1713 | util-deprecate@~1.0.1: 1714 | version "1.0.2" 1715 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1716 | 1717 | uuid@^3.0.0, uuid@^3.3.2: 1718 | version "3.3.2" 1719 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" 1720 | 1721 | verror@1.10.0: 1722 | version "1.10.0" 1723 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1724 | dependencies: 1725 | assert-plus "^1.0.0" 1726 | core-util-is "1.0.2" 1727 | extsprintf "^1.2.0" 1728 | 1729 | which@^1.2.11, which@^1.2.9: 1730 | version "1.3.1" 1731 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 1732 | dependencies: 1733 | isexe "^2.0.0" 1734 | 1735 | wide-align@^1.1.0: 1736 | version "1.1.3" 1737 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 1738 | dependencies: 1739 | string-width "^1.0.2 || 2" 1740 | 1741 | wrappy@1: 1742 | version "1.0.2" 1743 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1744 | 1745 | xmlbuilder@^8.2.2: 1746 | version "8.2.2" 1747 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-8.2.2.tgz#69248673410b4ba42e1a6136551d2922335aa773" 1748 | 1749 | xtend@^4.0.0: 1750 | version "4.0.1" 1751 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1752 | 1753 | yallist@^2.1.2: 1754 | version "2.1.2" 1755 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 1756 | 1757 | yallist@^3.0.0, yallist@^3.0.2: 1758 | version "3.0.2" 1759 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 1760 | --------------------------------------------------------------------------------