├── .gitignore ├── .eslintrc ├── CONTRIBUTING.md ├── menus └── recent-projects.json ├── lib ├── types.js ├── session.js ├── switcher-view.js ├── modal-service.js ├── storage.js └── index.js ├── CHANGELOG.md ├── styles └── project-switcher.less ├── LICENSE.md ├── package.json ├── README.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ "standard", "standard-jsx" ], 3 | "parser": "babel-eslint" 4 | } 5 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Developer notes 2 | 3 | To publish a new release: 4 | 5 | - Edit changelog 6 | - `apm publish patch|minor|major` 7 | -------------------------------------------------------------------------------- /menus/recent-projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "menu": [ 3 | { 4 | "label": "Packages", 5 | "submenu": [ 6 | { 7 | "label": "Recent project switcher", 8 | "submenu": [ 9 | { 10 | "label": "Switch project...", 11 | "command": "recent-project-switcher:switch-projcet" 12 | } 13 | ] 14 | } 15 | ] 16 | } 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /lib/types.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | export type SessionFile = { 4 | type: 'FILE', 5 | path: string 6 | } 7 | 8 | export type SessionPane = { 9 | type: 'PANE', 10 | items: Array 11 | } 12 | 13 | export type SessionData = { 14 | type: 'SESSION', 15 | panes: Array 16 | } 17 | 18 | export type ProjectItem = { 19 | path: string, 20 | accessedAt?: ?number, 21 | session?: ?SessionData 22 | } 23 | 24 | export type ProjectList = Array 25 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## [v0.2.0] 2 | 3 | > Sep 6, 2018 4 | 5 | - ✨ Implement `onActivate: 'load-previous-session'` option which reopens editors when switching projects. 6 | - ⚠️ Deprecate `closeEditorsOnSwitch` setting - this is now the default behavior. 7 | 8 | [v0.2.0]: https://github.com/rstacruz/atom-recent-project-switcher/compare/v0.1.0...v0.2.0 9 | 10 | ## [v0.1.0] 11 | 12 | > Jul 22, 2018 13 | 14 | - Initial release. 15 | 16 | [v0.1.0]: https://github.com/rstacruz/atom-recent-project-switcher/tree/v0.1.0 17 | -------------------------------------------------------------------------------- /styles/project-switcher.less: -------------------------------------------------------------------------------- 1 | @import "ui-variables"; 2 | 3 | .recent-project-switcher-item { 4 | & { 5 | display: flex; 6 | width: 100%; 7 | } 8 | 9 | & > .name, 10 | & > .path { 11 | display: block; 12 | } 13 | 14 | & > .name { 15 | flex: 1 0 auto; 16 | color: @text-color-highlight; 17 | } 18 | 19 | & > .name > .context { 20 | color: @text-color-subtle; 21 | font-weight: normal; 22 | } 23 | 24 | & > .name > .context::after { 25 | content: '/'; 26 | margin: 0 0.2em 0 0.3em; 27 | } 28 | 29 | & > .path { 30 | flex: 0 1 auto; 31 | color: @text-color-subtle; 32 | text-overflow: ellipsis; 33 | overflow: hidden; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2018 Rico Sta. Cruz 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "recent-project-switcher", 3 | "description": "Switch between your recent projects in Atom, fast", 4 | "version": "0.2.0", 5 | "author": "Rico Sta. Cruz ", 6 | "bugs": { 7 | "url": "https://github.com/rstacruz/atom-recent-project-switcher/issues" 8 | }, 9 | "dependencies": { 10 | "atom-select-list": "0.7.1", 11 | "ms": "2.1.1" 12 | }, 13 | "devDependencies": { 14 | "babel-eslint": "8.2.6", 15 | "prettier-eslint-cli": "^4.7.1", 16 | "standard": "^11.0.1" 17 | }, 18 | "directories": { 19 | "lib": "lib" 20 | }, 21 | "engines": { 22 | "atom": ">=1.0.0 <2.0.0" 23 | }, 24 | "homepage": "https://github.com/rstacruz/atom-recent-project-switcher#readme", 25 | "keywords": [ 26 | "project switcher", 27 | "projects", 28 | "recents", 29 | "workspaces" 30 | ], 31 | "license": "MIT", 32 | "main": "./lib/index", 33 | "repository": { 34 | "type": "git", 35 | "url": "https://github.com/rstacruz/atom-recent-project-switcher.git" 36 | }, 37 | "scripts": { 38 | "test": "echo \"Error: no test specified\" && exit 1" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # recent-project-switcher for Atom 2 | 3 | > Switch between your recent projects in Atom, fast 4 | 5 | ![image](https://user-images.githubusercontent.com/74385/43043029-c0bc1a7a-8dbc-11e8-914f-c32b77290721.png) 6 | 7 | ## Installation 8 | 9 | Install [recent-project-switcher](http://atom.io/packages/recent-project-switcher) from Atom's packages settings, or via apm: 10 | 11 | ```sh 12 | apm install recent-project-switcher 13 | ``` 14 | 15 | ## Usage 16 | 17 | After installing, bind `recent-project-switcher:switch-project` to a key. You can also use the menu (`Packages` > `Recent project switcher` > `Switch project...`). 18 | 19 | ## Thanks 20 | 21 | **atom-project-switcher** © 2018+, Rico Sta. Cruz. Released under the [MIT] License.
22 | Authored and maintained by Rico Sta. Cruz with help from contributors ([list][contributors]). 23 | 24 | > [ricostacruz.com](http://ricostacruz.com)  ·  25 | > GitHub [@rstacruz](https://github.com/rstacruz)  ·  26 | > Twitter [@rstacruz](https://twitter.com/rstacruz) 27 | 28 | [![](https://img.shields.io/github/followers/rstacruz.svg?style=social&label=@rstacruz)](https://github.com/rstacruz)   29 | [![](https://img.shields.io/twitter/follow/rstacruz.svg?style=social&label=@rstacruz)](https://twitter.com/rstacruz) 30 | 31 | [MIT]: http://mit-license.org/ 32 | [contributors]: http://github.com/rstacruz/atom-project-switcher/contributors 33 | -------------------------------------------------------------------------------- /lib/session.js: -------------------------------------------------------------------------------- 1 | 'use babel' 2 | /* global atom */ 3 | /* @flow */ 4 | 5 | import type { 6 | SessionData, 7 | SessionPane, 8 | SessionFile, 9 | SessionItem 10 | } from './types' 11 | 12 | export type BufferFile = { 13 | symlink: boolean, 14 | path: string 15 | } 16 | 17 | export type Buffer = { 18 | file: ?BufferFile 19 | } 20 | 21 | export type Item = { 22 | buffer: ?Buffer 23 | } 24 | 25 | export type Pane = { 26 | items: Array, 27 | activeItem: ?Item 28 | } 29 | 30 | export type Thunk = () => Promise 31 | 32 | /** 33 | * Returns session data 34 | */ 35 | 36 | export const getSessionData = (): SessionData => { 37 | const panes = atom.workspace 38 | .getPanes() 39 | .map( 40 | (pane: Pane): SessionPane => { 41 | const items = pane.items 42 | .map( 43 | (item: Item): SessionFile => { 44 | const path = getFilePath(item) 45 | if (!path) return 46 | const isActive = pane.activeItem === item 47 | return { type: 'FILE', path, isActive } 48 | } 49 | ) 50 | .filter(Boolean) 51 | 52 | if (!items.length) return 53 | return { type: 'PANE', items } 54 | } 55 | ) 56 | .filter(Boolean) 57 | 58 | return { type: 'SESSION', panes } 59 | } 60 | 61 | /** 62 | * Loads session data 63 | */ 64 | 65 | export const loadSessionData = (data: SessionData) => { 66 | console.log('[recent-project-switcher] loading session data', data) 67 | const thunks = data.panes.reduce( 68 | (result: Array, pane: SessionPane, idx0: number) => { 69 | return [ 70 | ...result, 71 | ...pane.items.map((item: SessionItem, idx1: number) => () => { 72 | let options 73 | if (idx1 === 0 && idx0 !== 0) options = { split: 'right' } 74 | return atom.workspace.open(item.path, options) 75 | }) 76 | ] 77 | }, 78 | [] 79 | ) 80 | 81 | return thunks.reduce((last: Promise, thunk: Thunk) => { 82 | return last.then(thunk) 83 | }, Promise.resolve()) 84 | } 85 | 86 | /** 87 | * Returns the file path for the current item 88 | * @private 89 | */ 90 | 91 | function getFilePath (item: Item) { 92 | return item && item.buffer && item.buffer.file && item.buffer.file.path 93 | } 94 | -------------------------------------------------------------------------------- /lib/switcher-view.js: -------------------------------------------------------------------------------- 1 | 'use babel' 2 | /* @flow */ 3 | /** @jsx etch.dom */ 4 | 5 | import SelectList from 'atom-select-list' 6 | import { basename, dirname } from 'path' 7 | import ms from 'ms' 8 | 9 | /*:: 10 | export type Props = {| 11 | items: Array, 12 | onDismiss: () => any, 13 | onConfirm () => any 14 | |} 15 | */ 16 | 17 | /** 18 | * The dialog inside the modal. 19 | * 20 | * @example 21 | * v = new AtomProjectSwitcherView({ 22 | * items, onConfirm, onDismiss 23 | * }) 24 | */ 25 | 26 | export default class AtomProjectSwitcherView { 27 | /*:: 28 | list: SelectList 29 | element: Node 30 | props: Props 31 | */ 32 | 33 | constructor (props /*: Props */) { 34 | this.props = props 35 | 36 | this.list = new SelectList({ 37 | items: this.props.items, 38 | 39 | filterKeyForItem: item => item.path, 40 | 41 | elementForItem: item => { 42 | const path = item.path 43 | const el = document.createElement('li') 44 | const name = basename(path) 45 | const context = basename(dirname(path)) 46 | const accessTime = timeAgo(item.accessedAt) || '' 47 | 48 | el.innerHTML = ` 49 | 50 | 51 | ${context} 52 | ${name} 53 | 54 | ${accessTime} 55 | 56 | ` 57 | return el 58 | }, 59 | 60 | didConfirmSelection: item => { 61 | this.props.onConfirm(item.path) 62 | }, 63 | 64 | didCancelSelection: () => { 65 | this.props.onDismiss() 66 | }, 67 | 68 | didConfirmEmptySelection: () => { 69 | this.props.onDismiss() 70 | } 71 | }) 72 | 73 | // Root element 74 | this.element = this.list.element 75 | } 76 | 77 | serialize () {} 78 | 79 | focus () { 80 | this.list.focus() 81 | } 82 | 83 | destroy () { 84 | this.list.destroy() 85 | } 86 | } 87 | 88 | /** 89 | * Returns time ago in words 90 | */ 91 | 92 | function timeAgo (timestamp) { 93 | if (!timestamp) return 94 | 95 | const delta = +new Date() - timestamp 96 | 97 | if (delta < 60000) return 'just now' 98 | return `${ms(delta)} ago` 99 | } 100 | -------------------------------------------------------------------------------- /lib/modal-service.js: -------------------------------------------------------------------------------- 1 | 'use babel' 2 | /* global atom */ 3 | 4 | import SwitcherView from './switcher-view' 5 | 6 | /** 7 | * Manages the modal dialog. 8 | * 9 | * @example 10 | * modal = new ModalService({ 11 | * onConfirm: (path) => { ... } 12 | * }).activate() 13 | * 14 | * modal.open({ 15 | * paths: ['/path/to/x', '/path/to/y'] 16 | * }) 17 | * 18 | * modal.close() 19 | */ 20 | 21 | export default class ModalService { 22 | /** 23 | * Called when the package is activated. 24 | */ 25 | 26 | constructor ({ onConfirm }) { 27 | // The element to attach to 28 | this.element = null 29 | 30 | // The atom ModalPanel instance 31 | this.modalPanel = null 32 | 33 | // The View handler 34 | this.view = null 35 | 36 | // What was previously focused before opening 37 | this.previouslyFocusedElement = null 38 | 39 | this.onConfirm = onConfirm 40 | } 41 | 42 | activate () { 43 | // The element to attach to 44 | this.element = document.createElement('div') 45 | 46 | // The atom ModalPanel instance 47 | this.modalPanel = atom.workspace.addModalPanel({ 48 | item: this.element, 49 | visible: false 50 | }) 51 | 52 | return this 53 | } 54 | 55 | /** 56 | * Opens the switcher; bound to the `switch-project` action. 57 | */ 58 | 59 | open ({ paths } /*: { paths: ProjectList } */) { 60 | // Idempotency 61 | if (!this.modalPanel || this.modalPanel.isVisible()) return 62 | 63 | // Save this, so it can be refocused later. 64 | this.previouslyFocusedElement = document.activeElement 65 | 66 | this.view = new SwitcherView({ 67 | items: paths, 68 | onConfirm: item => { 69 | this.onConfirm(item) 70 | this.close() 71 | }, 72 | 73 | onDismiss: () => { 74 | this.close() 75 | } 76 | }) 77 | 78 | this.element.appendChild(this.view.element) 79 | this.modalPanel.show() 80 | this.view.focus() 81 | } 82 | 83 | /** 84 | * Dismisses the popup 85 | */ 86 | 87 | close () { 88 | // Idempotency 89 | if (!this.modalPanel || !this.modalPanel.isVisible()) return 90 | 91 | this.modalPanel.hide() 92 | 93 | // Destroy the view, but keep the modal panel 94 | if (this.view) { 95 | this.view.destroy() 96 | this.view = null 97 | } 98 | 99 | // Refocus on the editor 100 | if (this.previouslyFocusedElement) { 101 | this.previouslyFocusedElement.focus() 102 | this.previouslyFocusedElement = null 103 | } 104 | } 105 | 106 | /** 107 | * Completely clean up when the plugin exits 108 | */ 109 | 110 | deactivate () { 111 | if (this.modalPanel) { 112 | this.modalPanel.destroy() 113 | this.modalPanel = null 114 | } 115 | 116 | if (this.view) { 117 | this.view.destroy() 118 | this.view = null 119 | } 120 | } 121 | } 122 | -------------------------------------------------------------------------------- /lib/storage.js: -------------------------------------------------------------------------------- 1 | 'use babel' 2 | /* global atom */ 3 | /* @flow */ 4 | 5 | import * as Session from './session' 6 | 7 | import type { ProjectList, ProjectItem, SessionData } from './types' 8 | 9 | const STORE_KEY = 'recent-project-switcher:projects' 10 | const MAX_LENGTH = 32 11 | 12 | /** 13 | * Manages the storage of projects 14 | */ 15 | 16 | export default class Storage { 17 | constructor ({ subscriptions }) { 18 | this.subscriptions = subscriptions 19 | } 20 | 21 | /** 22 | * Called when the plugin is activate. 23 | */ 24 | 25 | activate (): Storage { 26 | this.subscriptions.add( 27 | atom.project.onDidChangePaths(() => { 28 | this.push(this.getDirectories()) 29 | }) 30 | ) 31 | 32 | // Save session whenever possible. 33 | this.subscriptions.add( 34 | atom.project.onDidAddBuffer(() => { 35 | this.push(this.getDirectories()) 36 | }) 37 | ) 38 | 39 | return this 40 | } 41 | 42 | /** 43 | * Saves the current session 44 | */ 45 | 46 | touch () { 47 | const paths = this.getDirectories() 48 | const session = Session.getSessionData() 49 | this.push(paths, { session }) 50 | } 51 | 52 | /** 53 | * Returns currently open directories. 54 | */ 55 | 56 | getDirectories (): Array { 57 | return atom.project.getDirectories().map(p => p.path) 58 | } 59 | 60 | /** 61 | * Adds paths to the store. This is called two ways: 62 | * 63 | * - When a project is opened in Atom (no session passed) 64 | * - Right before switching projects (session is passed) 65 | */ 66 | 67 | push (paths: Array, itemData: ?{ session: ?SessionData }) { 68 | const list = this.get() 69 | const newList = paths.reduce((list: ProjectList, rawPath: string) => { 70 | // Normalize the path (eg, '/path/to/.' -> '/path/to') 71 | const path = require('path').resolve(rawPath) 72 | const item: ProjectItem = { 73 | path, 74 | accessedAt: +new Date(), 75 | ...itemData 76 | } 77 | 78 | const idx = list.findIndex(item => item.path === path) 79 | 80 | if (idx !== -1) { 81 | // If it's already there, remove it 82 | return [item, ...list.slice(0, idx), ...list.slice(idx + 1)] 83 | } else { 84 | return [item, ...list] 85 | } 86 | }, list) 87 | 88 | this.set(newList.slice(0, MAX_LENGTH)) 89 | } 90 | 91 | /** 92 | * Returns the list of paths stored. 93 | */ 94 | 95 | get (): ProjectList { 96 | const raw = window.localStorage[STORE_KEY] 97 | if (!raw) return [] 98 | const data = JSON.parse(raw) 99 | 100 | // Migration from an old version 101 | if (typeof data[0] === 'string') { 102 | return data.map(path => ({ path })) 103 | } 104 | return data 105 | } 106 | 107 | /** 108 | * Returns the `ProjectItem` for a given path. 109 | * 110 | * @example 111 | * getItem('/home/rsc/myproject') 112 | * // => { path, accessedAt, session } 113 | */ 114 | 115 | getItem (path: string): ProjectItem { 116 | const list = this.get() || [] 117 | const item = list.find((item: ProjectItem) => item.path === path) 118 | return item 119 | } 120 | 121 | /** 122 | * Updates the list of paths stored. 123 | */ 124 | 125 | set (value: ProjectList) { 126 | window.localStorage[STORE_KEY] = JSON.stringify(value) 127 | } 128 | } 129 | -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | 'use babel' 2 | /* global atom */ 3 | /* @flow */ 4 | 5 | import { CompositeDisposable } from 'atom' 6 | import ModalService from './modal-service' 7 | import Storage from './storage' 8 | import * as Session from './session' 9 | import { ProjectItem } from './types' 10 | 11 | export default { 12 | subscriptions: null, 13 | modalService: null, 14 | 15 | /** 16 | * Configuration 17 | */ 18 | 19 | config: { 20 | // This is now deprecated. 21 | // closeEditorsOnSwitch: { 22 | // type: 'boolean', 23 | // default: true 24 | // }, 25 | 26 | // This supercedes closeEditorsOnSwitch 27 | actionOnSwitch: { 28 | enum: ['none', 'load-previous-session'], 29 | type: 'string', 30 | title: 'Upon switching, do:', 31 | description: 32 | 'Load previously-open editors when switching to a project. (Experimental)', 33 | default: 'none' 34 | } 35 | }, 36 | 37 | settings: {}, 38 | 39 | /** 40 | * Activates the plugin. 41 | */ 42 | 43 | activate (state) { 44 | this.subscriptions = new CompositeDisposable() 45 | 46 | this.modalService = new ModalService({ 47 | onConfirm: (path: string) => { 48 | const item = this.storage.getItem(path) || { path } 49 | this.switchTo(item) 50 | } 51 | }).activate() 52 | 53 | this.storage = new Storage({ 54 | subscriptions: this.subscriptions 55 | }).activate() 56 | 57 | this.subscriptions.add( 58 | atom.commands.add('atom-workspace', { 59 | 'recent-project-switcher:switch-project': () => this.openSwitcher(), 60 | 'recent-project-switcher:save-session': () => this.saveSession() 61 | }) 62 | ) 63 | 64 | this.migrateSettings() 65 | 66 | this.subscriptions.add( 67 | atom.config.observe('recent-project-switcher.actionOnSwitch', value => { 68 | this.settings.actionOnSwitch = value 69 | }) 70 | ) 71 | }, 72 | 73 | /** 74 | * Get rid of old settings. 75 | */ 76 | 77 | migrateSettings () { 78 | if (atom.config.get('recent-project-switcher.closeEditorsOnSwitch')) { 79 | atom.config.set('recent-project-switcher.closeEditorsOnSwitch', undefined) 80 | } 81 | }, 82 | 83 | /** 84 | * Lies in a deep and dreamless slumber. 85 | */ 86 | 87 | deactivate () { 88 | this.subscriptions.dispose() 89 | this.modalService.deactivate() 90 | }, 91 | 92 | /** 93 | * Opens the modal selector dialog. 94 | * Bound to the main `switch-project` command. 95 | */ 96 | 97 | openSwitcher () { 98 | const paths = this.storage.get() 99 | this.modalService.open({ paths }) 100 | }, 101 | 102 | /** 103 | * Switches to a different project. 104 | */ 105 | 106 | switchTo ({ path, session }: ProjectItem) { 107 | // Save session 108 | this.storage.touch() 109 | 110 | // Close other editors 111 | atom.workspace.getPanes().forEach(pane => pane.destroy()) 112 | 113 | // Switch to project 114 | atom.project.setPaths([path]) 115 | 116 | // Load session, if available 117 | if (this.settings.actionOnSwitch === 'load-previous-session' && session) { 118 | Session.loadSessionData(session) 119 | } 120 | }, 121 | 122 | /** 123 | * Dismisses the modal selector dialog. 124 | */ 125 | 126 | dismiss () { 127 | this.modalService.close() 128 | }, 129 | 130 | /** 131 | * Saves the current session. 132 | */ 133 | 134 | saveSession () { 135 | this.storage.touch() 136 | } 137 | } 138 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@7.0.0-beta.44": 6 | version "7.0.0-beta.44" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.44.tgz#2a02643368de80916162be70865c97774f3adbd9" 8 | dependencies: 9 | "@babel/highlight" "7.0.0-beta.44" 10 | 11 | "@babel/generator@7.0.0-beta.44": 12 | version "7.0.0-beta.44" 13 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0-beta.44.tgz#c7e67b9b5284afcf69b309b50d7d37f3e5033d42" 14 | dependencies: 15 | "@babel/types" "7.0.0-beta.44" 16 | jsesc "^2.5.1" 17 | lodash "^4.2.0" 18 | source-map "^0.5.0" 19 | trim-right "^1.0.1" 20 | 21 | "@babel/helper-function-name@7.0.0-beta.44": 22 | version "7.0.0-beta.44" 23 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.44.tgz#e18552aaae2231100a6e485e03854bc3532d44dd" 24 | dependencies: 25 | "@babel/helper-get-function-arity" "7.0.0-beta.44" 26 | "@babel/template" "7.0.0-beta.44" 27 | "@babel/types" "7.0.0-beta.44" 28 | 29 | "@babel/helper-get-function-arity@7.0.0-beta.44": 30 | version "7.0.0-beta.44" 31 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.44.tgz#d03ca6dd2b9f7b0b1e6b32c56c72836140db3a15" 32 | dependencies: 33 | "@babel/types" "7.0.0-beta.44" 34 | 35 | "@babel/helper-split-export-declaration@7.0.0-beta.44": 36 | version "7.0.0-beta.44" 37 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0-beta.44.tgz#c0b351735e0fbcb3822c8ad8db4e583b05ebd9dc" 38 | dependencies: 39 | "@babel/types" "7.0.0-beta.44" 40 | 41 | "@babel/highlight@7.0.0-beta.44": 42 | version "7.0.0-beta.44" 43 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.44.tgz#18c94ce543916a80553edcdcf681890b200747d5" 44 | dependencies: 45 | chalk "^2.0.0" 46 | esutils "^2.0.2" 47 | js-tokens "^3.0.0" 48 | 49 | "@babel/template@7.0.0-beta.44": 50 | version "7.0.0-beta.44" 51 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.44.tgz#f8832f4fdcee5d59bf515e595fc5106c529b394f" 52 | dependencies: 53 | "@babel/code-frame" "7.0.0-beta.44" 54 | "@babel/types" "7.0.0-beta.44" 55 | babylon "7.0.0-beta.44" 56 | lodash "^4.2.0" 57 | 58 | "@babel/traverse@7.0.0-beta.44": 59 | version "7.0.0-beta.44" 60 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.44.tgz#a970a2c45477ad18017e2e465a0606feee0d2966" 61 | dependencies: 62 | "@babel/code-frame" "7.0.0-beta.44" 63 | "@babel/generator" "7.0.0-beta.44" 64 | "@babel/helper-function-name" "7.0.0-beta.44" 65 | "@babel/helper-split-export-declaration" "7.0.0-beta.44" 66 | "@babel/types" "7.0.0-beta.44" 67 | babylon "7.0.0-beta.44" 68 | debug "^3.1.0" 69 | globals "^11.1.0" 70 | invariant "^2.2.0" 71 | lodash "^4.2.0" 72 | 73 | "@babel/types@7.0.0-beta.44": 74 | version "7.0.0-beta.44" 75 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.44.tgz#6b1b164591f77dec0a0342aca995f2d046b3a757" 76 | dependencies: 77 | esutils "^2.0.2" 78 | lodash "^4.2.0" 79 | to-fast-properties "^2.0.0" 80 | 81 | abbrev@1: 82 | version "1.1.1" 83 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 84 | 85 | acorn-jsx@^3.0.0: 86 | version "3.0.1" 87 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 88 | dependencies: 89 | acorn "^3.0.4" 90 | 91 | acorn@^3.0.4: 92 | version "3.3.0" 93 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 94 | 95 | acorn@^5.5.0: 96 | version "5.7.1" 97 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8" 98 | 99 | ajv-keywords@^2.1.0: 100 | version "2.1.1" 101 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 102 | 103 | ajv@^5.2.3, ajv@^5.3.0: 104 | version "5.5.2" 105 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 106 | dependencies: 107 | co "^4.6.0" 108 | fast-deep-equal "^1.0.0" 109 | fast-json-stable-stringify "^2.0.0" 110 | json-schema-traverse "^0.3.0" 111 | 112 | ansi-escapes@^3.0.0: 113 | version "3.1.0" 114 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 115 | 116 | ansi-regex@^2.0.0: 117 | version "2.1.1" 118 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 119 | 120 | ansi-regex@^3.0.0: 121 | version "3.0.0" 122 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 123 | 124 | ansi-styles@^2.2.1: 125 | version "2.2.1" 126 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 127 | 128 | ansi-styles@^3.1.0, ansi-styles@^3.2.0, ansi-styles@^3.2.1: 129 | version "3.2.1" 130 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 131 | dependencies: 132 | color-convert "^1.9.0" 133 | 134 | argparse@^1.0.7: 135 | version "1.0.10" 136 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 137 | dependencies: 138 | sprintf-js "~1.0.2" 139 | 140 | array-includes@^3.0.3: 141 | version "3.0.3" 142 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" 143 | dependencies: 144 | define-properties "^1.1.2" 145 | es-abstract "^1.7.0" 146 | 147 | array-union@^1.0.1: 148 | version "1.0.2" 149 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 150 | dependencies: 151 | array-uniq "^1.0.1" 152 | 153 | array-uniq@^1.0.1: 154 | version "1.0.3" 155 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 156 | 157 | arrify@^1.0.0, arrify@^1.0.1: 158 | version "1.0.1" 159 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 160 | 161 | atom-select-list@0.7.1: 162 | version "0.7.1" 163 | resolved "https://registry.yarnpkg.com/atom-select-list/-/atom-select-list-0.7.1.tgz#c1793b7d4666ddda2782b4c0bb6a07f7d1197fe3" 164 | dependencies: 165 | etch "^0.12.6" 166 | fuzzaldrin "^2.1.0" 167 | 168 | babel-code-frame@^6.22.0: 169 | version "6.26.0" 170 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 171 | dependencies: 172 | chalk "^1.1.3" 173 | esutils "^2.0.2" 174 | js-tokens "^3.0.2" 175 | 176 | babel-eslint@8.2.6: 177 | version "8.2.6" 178 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.2.6.tgz#6270d0c73205628067c0f7ae1693a9e797acefd9" 179 | dependencies: 180 | "@babel/code-frame" "7.0.0-beta.44" 181 | "@babel/traverse" "7.0.0-beta.44" 182 | "@babel/types" "7.0.0-beta.44" 183 | babylon "7.0.0-beta.44" 184 | eslint-scope "3.7.1" 185 | eslint-visitor-keys "^1.0.0" 186 | 187 | babel-runtime@^6.23.0, babel-runtime@^6.26.0: 188 | version "6.26.0" 189 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 190 | dependencies: 191 | core-js "^2.4.0" 192 | regenerator-runtime "^0.11.0" 193 | 194 | babylon@7.0.0-beta.44: 195 | version "7.0.0-beta.44" 196 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.44.tgz#89159e15e6e30c5096e22d738d8c0af8a0e8ca1d" 197 | 198 | balanced-match@^1.0.0: 199 | version "1.0.0" 200 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 201 | 202 | boolify@^1.0.0: 203 | version "1.0.1" 204 | resolved "https://registry.yarnpkg.com/boolify/-/boolify-1.0.1.tgz#b5c09e17cacd113d11b7bb3ed384cc012994d86b" 205 | 206 | brace-expansion@^1.1.7: 207 | version "1.1.11" 208 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 209 | dependencies: 210 | balanced-match "^1.0.0" 211 | concat-map "0.0.1" 212 | 213 | buffer-from@^1.0.0: 214 | version "1.1.0" 215 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.0.tgz#87fcaa3a298358e0ade6e442cfce840740d1ad04" 216 | 217 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 218 | version "1.1.1" 219 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 220 | 221 | caller-path@^0.1.0: 222 | version "0.1.0" 223 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 224 | dependencies: 225 | callsites "^0.2.0" 226 | 227 | callsites@^0.2.0: 228 | version "0.2.0" 229 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 230 | 231 | camelcase-keys@^4.1.0: 232 | version "4.2.0" 233 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" 234 | dependencies: 235 | camelcase "^4.1.0" 236 | map-obj "^2.0.0" 237 | quick-lru "^1.0.0" 238 | 239 | camelcase@^4.1.0: 240 | version "4.1.0" 241 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 242 | 243 | chalk@2.3.0: 244 | version "2.3.0" 245 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 246 | dependencies: 247 | ansi-styles "^3.1.0" 248 | escape-string-regexp "^1.0.5" 249 | supports-color "^4.0.0" 250 | 251 | chalk@^1.1.3: 252 | version "1.1.3" 253 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 254 | dependencies: 255 | ansi-styles "^2.2.1" 256 | escape-string-regexp "^1.0.2" 257 | has-ansi "^2.0.0" 258 | strip-ansi "^3.0.0" 259 | supports-color "^2.0.0" 260 | 261 | chalk@^2.0.0, chalk@^2.1.0: 262 | version "2.4.1" 263 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 264 | dependencies: 265 | ansi-styles "^3.2.1" 266 | escape-string-regexp "^1.0.5" 267 | supports-color "^5.3.0" 268 | 269 | chardet@^0.4.0: 270 | version "0.4.2" 271 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 272 | 273 | circular-json@^0.3.1: 274 | version "0.3.3" 275 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 276 | 277 | cli-cursor@^2.1.0: 278 | version "2.1.0" 279 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 280 | dependencies: 281 | restore-cursor "^2.0.0" 282 | 283 | cli-width@^2.0.0: 284 | version "2.2.0" 285 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 286 | 287 | cliui@^3.2.0: 288 | version "3.2.0" 289 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 290 | dependencies: 291 | string-width "^1.0.1" 292 | strip-ansi "^3.0.1" 293 | wrap-ansi "^2.0.0" 294 | 295 | co@^4.6.0: 296 | version "4.6.0" 297 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 298 | 299 | code-point-at@^1.0.0: 300 | version "1.1.0" 301 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 302 | 303 | color-convert@^1.9.0: 304 | version "1.9.2" 305 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147" 306 | dependencies: 307 | color-name "1.1.1" 308 | 309 | color-name@1.1.1: 310 | version "1.1.1" 311 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" 312 | 313 | common-tags@^1.4.0: 314 | version "1.8.0" 315 | resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937" 316 | 317 | concat-map@0.0.1: 318 | version "0.0.1" 319 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 320 | 321 | concat-stream@^1.6.0: 322 | version "1.6.2" 323 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 324 | dependencies: 325 | buffer-from "^1.0.0" 326 | inherits "^2.0.3" 327 | readable-stream "^2.2.2" 328 | typedarray "^0.0.6" 329 | 330 | contains-path@^0.1.0: 331 | version "0.1.0" 332 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 333 | 334 | core-js@^2.4.0: 335 | version "2.5.7" 336 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 337 | 338 | core-util-is@~1.0.0: 339 | version "1.0.2" 340 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 341 | 342 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 343 | version "5.1.0" 344 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 345 | dependencies: 346 | lru-cache "^4.0.1" 347 | shebang-command "^1.2.0" 348 | which "^1.2.9" 349 | 350 | debug-log@^1.0.0: 351 | version "1.0.1" 352 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 353 | 354 | debug@^2.6.8, debug@^2.6.9: 355 | version "2.6.9" 356 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 357 | dependencies: 358 | ms "2.0.0" 359 | 360 | debug@^3.1.0: 361 | version "3.1.0" 362 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 363 | dependencies: 364 | ms "2.0.0" 365 | 366 | decamelize@^1.1.1: 367 | version "1.2.0" 368 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 369 | 370 | deep-is@~0.1.3: 371 | version "0.1.3" 372 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 373 | 374 | define-properties@^1.1.2: 375 | version "1.1.2" 376 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 377 | dependencies: 378 | foreach "^2.0.5" 379 | object-keys "^1.0.8" 380 | 381 | deglob@^2.1.0: 382 | version "2.1.1" 383 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-2.1.1.tgz#d268e168727799862e8eac07042e165957c1f3be" 384 | dependencies: 385 | find-root "^1.0.0" 386 | glob "^7.0.5" 387 | ignore "^3.0.9" 388 | pkg-config "^1.1.0" 389 | run-parallel "^1.1.2" 390 | uniq "^1.0.1" 391 | 392 | del@^2.0.2: 393 | version "2.2.2" 394 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 395 | dependencies: 396 | globby "^5.0.0" 397 | is-path-cwd "^1.0.0" 398 | is-path-in-cwd "^1.0.0" 399 | object-assign "^4.0.1" 400 | pify "^2.0.0" 401 | pinkie-promise "^2.0.0" 402 | rimraf "^2.2.8" 403 | 404 | dlv@^1.1.0: 405 | version "1.1.2" 406 | resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.2.tgz#270f6737b30d25b6657a7e962c784403f85137e5" 407 | 408 | doctrine@1.5.0: 409 | version "1.5.0" 410 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 411 | dependencies: 412 | esutils "^2.0.2" 413 | isarray "^1.0.0" 414 | 415 | doctrine@^2.0.2, doctrine@^2.1.0: 416 | version "2.1.0" 417 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 418 | dependencies: 419 | esutils "^2.0.2" 420 | 421 | error-ex@^1.2.0, error-ex@^1.3.1: 422 | version "1.3.2" 423 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 424 | dependencies: 425 | is-arrayish "^0.2.1" 426 | 427 | es-abstract@^1.7.0: 428 | version "1.12.0" 429 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" 430 | dependencies: 431 | es-to-primitive "^1.1.1" 432 | function-bind "^1.1.1" 433 | has "^1.0.1" 434 | is-callable "^1.1.3" 435 | is-regex "^1.0.4" 436 | 437 | es-to-primitive@^1.1.1: 438 | version "1.1.1" 439 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 440 | dependencies: 441 | is-callable "^1.1.1" 442 | is-date-object "^1.0.1" 443 | is-symbol "^1.0.1" 444 | 445 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 446 | version "1.0.5" 447 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 448 | 449 | eslint-config-standard-jsx@5.0.0: 450 | version "5.0.0" 451 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-5.0.0.tgz#4abfac554f38668e0078c664569e7b2384e5d2aa" 452 | 453 | eslint-config-standard@11.0.0: 454 | version "11.0.0" 455 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-11.0.0.tgz#87ee0d3c9d95382dc761958cbb23da9eea31e0ba" 456 | 457 | eslint-import-resolver-node@^0.3.1: 458 | version "0.3.2" 459 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" 460 | dependencies: 461 | debug "^2.6.9" 462 | resolve "^1.5.0" 463 | 464 | eslint-module-utils@^2.1.1: 465 | version "2.2.0" 466 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz#b270362cd88b1a48ad308976ce7fa54e98411746" 467 | dependencies: 468 | debug "^2.6.8" 469 | pkg-dir "^1.0.0" 470 | 471 | eslint-plugin-import@~2.9.0: 472 | version "2.9.0" 473 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.9.0.tgz#26002efbfca5989b7288ac047508bd24f217b169" 474 | dependencies: 475 | builtin-modules "^1.1.1" 476 | contains-path "^0.1.0" 477 | debug "^2.6.8" 478 | doctrine "1.5.0" 479 | eslint-import-resolver-node "^0.3.1" 480 | eslint-module-utils "^2.1.1" 481 | has "^1.0.1" 482 | lodash "^4.17.4" 483 | minimatch "^3.0.3" 484 | read-pkg-up "^2.0.0" 485 | 486 | eslint-plugin-node@~6.0.0: 487 | version "6.0.1" 488 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-6.0.1.tgz#bf19642298064379315d7a4b2a75937376fa05e4" 489 | dependencies: 490 | ignore "^3.3.6" 491 | minimatch "^3.0.4" 492 | resolve "^1.3.3" 493 | semver "^5.4.1" 494 | 495 | eslint-plugin-promise@~3.7.0: 496 | version "3.7.0" 497 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.7.0.tgz#f4bde5c2c77cdd69557a8f69a24d1ad3cfc9e67e" 498 | 499 | eslint-plugin-react@~7.7.0: 500 | version "7.7.0" 501 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.7.0.tgz#f606c719dbd8a1a2b3d25c16299813878cca0160" 502 | dependencies: 503 | doctrine "^2.0.2" 504 | has "^1.0.1" 505 | jsx-ast-utils "^2.0.1" 506 | prop-types "^15.6.0" 507 | 508 | eslint-plugin-standard@~3.0.1: 509 | version "3.0.1" 510 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2" 511 | 512 | eslint-scope@3.7.1: 513 | version "3.7.1" 514 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 515 | dependencies: 516 | esrecurse "^4.1.0" 517 | estraverse "^4.1.1" 518 | 519 | eslint-scope@^3.7.1: 520 | version "3.7.3" 521 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.3.tgz#bb507200d3d17f60247636160b4826284b108535" 522 | dependencies: 523 | esrecurse "^4.1.0" 524 | estraverse "^4.1.1" 525 | 526 | eslint-visitor-keys@^1.0.0: 527 | version "1.0.0" 528 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 529 | 530 | eslint@^4.0.0, eslint@^4.5.0: 531 | version "4.19.1" 532 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" 533 | dependencies: 534 | ajv "^5.3.0" 535 | babel-code-frame "^6.22.0" 536 | chalk "^2.1.0" 537 | concat-stream "^1.6.0" 538 | cross-spawn "^5.1.0" 539 | debug "^3.1.0" 540 | doctrine "^2.1.0" 541 | eslint-scope "^3.7.1" 542 | eslint-visitor-keys "^1.0.0" 543 | espree "^3.5.4" 544 | esquery "^1.0.0" 545 | esutils "^2.0.2" 546 | file-entry-cache "^2.0.0" 547 | functional-red-black-tree "^1.0.1" 548 | glob "^7.1.2" 549 | globals "^11.0.1" 550 | ignore "^3.3.3" 551 | imurmurhash "^0.1.4" 552 | inquirer "^3.0.6" 553 | is-resolvable "^1.0.0" 554 | js-yaml "^3.9.1" 555 | json-stable-stringify-without-jsonify "^1.0.1" 556 | levn "^0.3.0" 557 | lodash "^4.17.4" 558 | minimatch "^3.0.2" 559 | mkdirp "^0.5.1" 560 | natural-compare "^1.4.0" 561 | optionator "^0.8.2" 562 | path-is-inside "^1.0.2" 563 | pluralize "^7.0.0" 564 | progress "^2.0.0" 565 | regexpp "^1.0.1" 566 | require-uncached "^1.0.3" 567 | semver "^5.3.0" 568 | strip-ansi "^4.0.0" 569 | strip-json-comments "~2.0.1" 570 | table "4.0.2" 571 | text-table "~0.2.0" 572 | 573 | eslint@~4.18.0: 574 | version "4.18.2" 575 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.18.2.tgz#0f81267ad1012e7d2051e186a9004cc2267b8d45" 576 | dependencies: 577 | ajv "^5.3.0" 578 | babel-code-frame "^6.22.0" 579 | chalk "^2.1.0" 580 | concat-stream "^1.6.0" 581 | cross-spawn "^5.1.0" 582 | debug "^3.1.0" 583 | doctrine "^2.1.0" 584 | eslint-scope "^3.7.1" 585 | eslint-visitor-keys "^1.0.0" 586 | espree "^3.5.2" 587 | esquery "^1.0.0" 588 | esutils "^2.0.2" 589 | file-entry-cache "^2.0.0" 590 | functional-red-black-tree "^1.0.1" 591 | glob "^7.1.2" 592 | globals "^11.0.1" 593 | ignore "^3.3.3" 594 | imurmurhash "^0.1.4" 595 | inquirer "^3.0.6" 596 | is-resolvable "^1.0.0" 597 | js-yaml "^3.9.1" 598 | json-stable-stringify-without-jsonify "^1.0.1" 599 | levn "^0.3.0" 600 | lodash "^4.17.4" 601 | minimatch "^3.0.2" 602 | mkdirp "^0.5.1" 603 | natural-compare "^1.4.0" 604 | optionator "^0.8.2" 605 | path-is-inside "^1.0.2" 606 | pluralize "^7.0.0" 607 | progress "^2.0.0" 608 | require-uncached "^1.0.3" 609 | semver "^5.3.0" 610 | strip-ansi "^4.0.0" 611 | strip-json-comments "~2.0.1" 612 | table "4.0.2" 613 | text-table "~0.2.0" 614 | 615 | espree@^3.5.2, espree@^3.5.4: 616 | version "3.5.4" 617 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" 618 | dependencies: 619 | acorn "^5.5.0" 620 | acorn-jsx "^3.0.0" 621 | 622 | esprima@^4.0.0: 623 | version "4.0.1" 624 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 625 | 626 | esquery@^1.0.0: 627 | version "1.0.1" 628 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" 629 | dependencies: 630 | estraverse "^4.0.0" 631 | 632 | esrecurse@^4.1.0: 633 | version "4.2.1" 634 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 635 | dependencies: 636 | estraverse "^4.1.0" 637 | 638 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 639 | version "4.2.0" 640 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 641 | 642 | esutils@^2.0.2: 643 | version "2.0.2" 644 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 645 | 646 | etch@^0.12.6: 647 | version "0.12.8" 648 | resolved "https://registry.yarnpkg.com/etch/-/etch-0.12.8.tgz#c24bc9bd3a6148f62204ce8643d2e899b9ecb9de" 649 | 650 | execa@^0.7.0: 651 | version "0.7.0" 652 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 653 | dependencies: 654 | cross-spawn "^5.0.1" 655 | get-stream "^3.0.0" 656 | is-stream "^1.1.0" 657 | npm-run-path "^2.0.0" 658 | p-finally "^1.0.0" 659 | signal-exit "^3.0.0" 660 | strip-eof "^1.0.0" 661 | 662 | external-editor@^2.0.4: 663 | version "2.2.0" 664 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 665 | dependencies: 666 | chardet "^0.4.0" 667 | iconv-lite "^0.4.17" 668 | tmp "^0.0.33" 669 | 670 | fast-deep-equal@^1.0.0: 671 | version "1.1.0" 672 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 673 | 674 | fast-json-stable-stringify@^2.0.0: 675 | version "2.0.0" 676 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 677 | 678 | fast-levenshtein@~2.0.4: 679 | version "2.0.6" 680 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 681 | 682 | figures@^2.0.0: 683 | version "2.0.0" 684 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 685 | dependencies: 686 | escape-string-regexp "^1.0.5" 687 | 688 | file-entry-cache@^2.0.0: 689 | version "2.0.0" 690 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 691 | dependencies: 692 | flat-cache "^1.2.1" 693 | object-assign "^4.0.1" 694 | 695 | find-root@^1.0.0: 696 | version "1.1.0" 697 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" 698 | 699 | find-up@^1.0.0: 700 | version "1.1.2" 701 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 702 | dependencies: 703 | path-exists "^2.0.0" 704 | pinkie-promise "^2.0.0" 705 | 706 | find-up@^2.0.0, find-up@^2.1.0: 707 | version "2.1.0" 708 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 709 | dependencies: 710 | locate-path "^2.0.0" 711 | 712 | flat-cache@^1.2.1: 713 | version "1.3.0" 714 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 715 | dependencies: 716 | circular-json "^0.3.1" 717 | del "^2.0.2" 718 | graceful-fs "^4.1.2" 719 | write "^0.2.1" 720 | 721 | foreach@^2.0.5: 722 | version "2.0.5" 723 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 724 | 725 | fs.realpath@^1.0.0: 726 | version "1.0.0" 727 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 728 | 729 | function-bind@^1.1.1: 730 | version "1.1.1" 731 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 732 | 733 | functional-red-black-tree@^1.0.1: 734 | version "1.0.1" 735 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 736 | 737 | fuzzaldrin@^2.1.0: 738 | version "2.1.0" 739 | resolved "https://registry.yarnpkg.com/fuzzaldrin/-/fuzzaldrin-2.1.0.tgz#90204c3e2fdaa6941bb28d16645d418063a90e9b" 740 | 741 | get-caller-file@^1.0.1: 742 | version "1.0.3" 743 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 744 | 745 | get-stdin@^5.0.1: 746 | version "5.0.1" 747 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 748 | 749 | get-stdin@^6.0.0: 750 | version "6.0.0" 751 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 752 | 753 | get-stream@^3.0.0: 754 | version "3.0.0" 755 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 756 | 757 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 758 | version "7.1.2" 759 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 760 | dependencies: 761 | fs.realpath "^1.0.0" 762 | inflight "^1.0.4" 763 | inherits "2" 764 | minimatch "^3.0.4" 765 | once "^1.3.0" 766 | path-is-absolute "^1.0.0" 767 | 768 | glob@~7.0.6: 769 | version "7.0.6" 770 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" 771 | dependencies: 772 | fs.realpath "^1.0.0" 773 | inflight "^1.0.4" 774 | inherits "2" 775 | minimatch "^3.0.2" 776 | once "^1.3.0" 777 | path-is-absolute "^1.0.0" 778 | 779 | globals@^11.0.1, globals@^11.1.0: 780 | version "11.7.0" 781 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.7.0.tgz#a583faa43055b1aca771914bf68258e2fc125673" 782 | 783 | globby@^5.0.0: 784 | version "5.0.0" 785 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 786 | dependencies: 787 | array-union "^1.0.1" 788 | arrify "^1.0.0" 789 | glob "^7.0.3" 790 | object-assign "^4.0.1" 791 | pify "^2.0.0" 792 | pinkie-promise "^2.0.0" 793 | 794 | graceful-fs@^4.1.2: 795 | version "4.1.11" 796 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 797 | 798 | has-ansi@^2.0.0: 799 | version "2.0.0" 800 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 801 | dependencies: 802 | ansi-regex "^2.0.0" 803 | 804 | has-flag@^2.0.0: 805 | version "2.0.0" 806 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 807 | 808 | has-flag@^3.0.0: 809 | version "3.0.0" 810 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 811 | 812 | has@^1.0.1: 813 | version "1.0.3" 814 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 815 | dependencies: 816 | function-bind "^1.1.1" 817 | 818 | hosted-git-info@^2.1.4: 819 | version "2.7.1" 820 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" 821 | 822 | iconv-lite@^0.4.17: 823 | version "0.4.23" 824 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 825 | dependencies: 826 | safer-buffer ">= 2.1.2 < 3" 827 | 828 | ignore@^3.0.9, ignore@^3.2.7, ignore@^3.3.3, ignore@^3.3.6: 829 | version "3.3.10" 830 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" 831 | 832 | imurmurhash@^0.1.4: 833 | version "0.1.4" 834 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 835 | 836 | indent-string@^3.1.0, indent-string@^3.2.0: 837 | version "3.2.0" 838 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 839 | 840 | inflight@^1.0.4: 841 | version "1.0.6" 842 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 843 | dependencies: 844 | once "^1.3.0" 845 | wrappy "1" 846 | 847 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 848 | version "2.0.3" 849 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 850 | 851 | inquirer@^3.0.6: 852 | version "3.3.0" 853 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 854 | dependencies: 855 | ansi-escapes "^3.0.0" 856 | chalk "^2.0.0" 857 | cli-cursor "^2.1.0" 858 | cli-width "^2.0.0" 859 | external-editor "^2.0.4" 860 | figures "^2.0.0" 861 | lodash "^4.3.0" 862 | mute-stream "0.0.7" 863 | run-async "^2.2.0" 864 | rx-lite "^4.0.8" 865 | rx-lite-aggregates "^4.0.8" 866 | string-width "^2.1.0" 867 | strip-ansi "^4.0.0" 868 | through "^2.3.6" 869 | 870 | invariant@^2.2.0: 871 | version "2.2.4" 872 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 873 | dependencies: 874 | loose-envify "^1.0.0" 875 | 876 | invert-kv@^1.0.0: 877 | version "1.0.0" 878 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 879 | 880 | is-arrayish@^0.2.1: 881 | version "0.2.1" 882 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 883 | 884 | is-builtin-module@^1.0.0: 885 | version "1.0.0" 886 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 887 | dependencies: 888 | builtin-modules "^1.0.0" 889 | 890 | is-callable@^1.1.1, is-callable@^1.1.3: 891 | version "1.1.4" 892 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 893 | 894 | is-date-object@^1.0.1: 895 | version "1.0.1" 896 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 897 | 898 | is-fullwidth-code-point@^1.0.0: 899 | version "1.0.0" 900 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 901 | dependencies: 902 | number-is-nan "^1.0.0" 903 | 904 | is-fullwidth-code-point@^2.0.0: 905 | version "2.0.0" 906 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 907 | 908 | is-path-cwd@^1.0.0: 909 | version "1.0.0" 910 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 911 | 912 | is-path-in-cwd@^1.0.0: 913 | version "1.0.1" 914 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" 915 | dependencies: 916 | is-path-inside "^1.0.0" 917 | 918 | is-path-inside@^1.0.0: 919 | version "1.0.1" 920 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 921 | dependencies: 922 | path-is-inside "^1.0.1" 923 | 924 | is-promise@^2.1.0: 925 | version "2.1.0" 926 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 927 | 928 | is-regex@^1.0.4: 929 | version "1.0.4" 930 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 931 | dependencies: 932 | has "^1.0.1" 933 | 934 | is-resolvable@^1.0.0: 935 | version "1.1.0" 936 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 937 | 938 | is-stream@^1.1.0: 939 | version "1.1.0" 940 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 941 | 942 | is-symbol@^1.0.1: 943 | version "1.0.1" 944 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 945 | 946 | isarray@^1.0.0, isarray@~1.0.0: 947 | version "1.0.0" 948 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 949 | 950 | isexe@^2.0.0: 951 | version "2.0.0" 952 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 953 | 954 | js-tokens@^3.0.0, js-tokens@^3.0.2: 955 | version "3.0.2" 956 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 957 | 958 | "js-tokens@^3.0.0 || ^4.0.0": 959 | version "4.0.0" 960 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 961 | 962 | js-yaml@^3.9.1: 963 | version "3.12.0" 964 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" 965 | dependencies: 966 | argparse "^1.0.7" 967 | esprima "^4.0.0" 968 | 969 | jsesc@^2.5.1: 970 | version "2.5.1" 971 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.1.tgz#e421a2a8e20d6b0819df28908f782526b96dd1fe" 972 | 973 | json-parse-better-errors@^1.0.1: 974 | version "1.0.2" 975 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 976 | 977 | json-schema-traverse@^0.3.0: 978 | version "0.3.1" 979 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 980 | 981 | json-stable-stringify-without-jsonify@^1.0.1: 982 | version "1.0.1" 983 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 984 | 985 | jsx-ast-utils@^2.0.1: 986 | version "2.0.1" 987 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz#e801b1b39985e20fffc87b40e3748080e2dcac7f" 988 | dependencies: 989 | array-includes "^3.0.3" 990 | 991 | lcid@^1.0.0: 992 | version "1.0.0" 993 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 994 | dependencies: 995 | invert-kv "^1.0.0" 996 | 997 | levn@^0.3.0, levn@~0.3.0: 998 | version "0.3.0" 999 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1000 | dependencies: 1001 | prelude-ls "~1.1.2" 1002 | type-check "~0.3.2" 1003 | 1004 | load-json-file@^2.0.0: 1005 | version "2.0.0" 1006 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1007 | dependencies: 1008 | graceful-fs "^4.1.2" 1009 | parse-json "^2.2.0" 1010 | pify "^2.0.0" 1011 | strip-bom "^3.0.0" 1012 | 1013 | load-json-file@^4.0.0: 1014 | version "4.0.0" 1015 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 1016 | dependencies: 1017 | graceful-fs "^4.1.2" 1018 | parse-json "^4.0.0" 1019 | pify "^3.0.0" 1020 | strip-bom "^3.0.0" 1021 | 1022 | locate-path@^2.0.0: 1023 | version "2.0.0" 1024 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1025 | dependencies: 1026 | p-locate "^2.0.0" 1027 | path-exists "^3.0.0" 1028 | 1029 | lodash.memoize@^4.1.2: 1030 | version "4.1.2" 1031 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 1032 | 1033 | lodash.merge@^4.6.0: 1034 | version "4.6.1" 1035 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54" 1036 | 1037 | lodash.unescape@4.0.1: 1038 | version "4.0.1" 1039 | resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c" 1040 | 1041 | lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 1042 | version "4.17.10" 1043 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 1044 | 1045 | loglevel-colored-level-prefix@^1.0.0: 1046 | version "1.0.0" 1047 | resolved "https://registry.yarnpkg.com/loglevel-colored-level-prefix/-/loglevel-colored-level-prefix-1.0.0.tgz#6a40218fdc7ae15fc76c3d0f3e676c465388603e" 1048 | dependencies: 1049 | chalk "^1.1.3" 1050 | loglevel "^1.4.1" 1051 | 1052 | loglevel@^1.4.1: 1053 | version "1.6.1" 1054 | resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.1.tgz#e0fc95133b6ef276cdc8887cdaf24aa6f156f8fa" 1055 | 1056 | loose-envify@^1.0.0, loose-envify@^1.3.1: 1057 | version "1.4.0" 1058 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1059 | dependencies: 1060 | js-tokens "^3.0.0 || ^4.0.0" 1061 | 1062 | lru-cache@^4.0.1: 1063 | version "4.1.3" 1064 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 1065 | dependencies: 1066 | pseudomap "^1.0.2" 1067 | yallist "^2.1.2" 1068 | 1069 | make-plural@^4.1.1: 1070 | version "4.2.0" 1071 | resolved "https://registry.yarnpkg.com/make-plural/-/make-plural-4.2.0.tgz#03edfc34a2aee630a57e209369ef26ee3ca69590" 1072 | optionalDependencies: 1073 | minimist "^1.2.0" 1074 | 1075 | map-obj@^2.0.0: 1076 | version "2.0.0" 1077 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" 1078 | 1079 | mem@^1.1.0: 1080 | version "1.1.0" 1081 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1082 | dependencies: 1083 | mimic-fn "^1.0.0" 1084 | 1085 | messageformat-parser@^1.1.0: 1086 | version "1.1.0" 1087 | resolved "https://registry.yarnpkg.com/messageformat-parser/-/messageformat-parser-1.1.0.tgz#13ba2250a76bbde8e0fca0dbb3475f95c594a90a" 1088 | 1089 | messageformat@^1.0.2: 1090 | version "1.1.1" 1091 | resolved "https://registry.yarnpkg.com/messageformat/-/messageformat-1.1.1.tgz#ceaa2e6c86929d4807058275a7372b1bd963bdf6" 1092 | dependencies: 1093 | glob "~7.0.6" 1094 | make-plural "^4.1.1" 1095 | messageformat-parser "^1.1.0" 1096 | nopt "~3.0.6" 1097 | reserved-words "^0.1.2" 1098 | 1099 | mimic-fn@^1.0.0: 1100 | version "1.2.0" 1101 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 1102 | 1103 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1104 | version "3.0.4" 1105 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1106 | dependencies: 1107 | brace-expansion "^1.1.7" 1108 | 1109 | minimist@0.0.8: 1110 | version "0.0.8" 1111 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1112 | 1113 | minimist@^1.1.0, minimist@^1.2.0: 1114 | version "1.2.0" 1115 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1116 | 1117 | mkdirp@^0.5.1: 1118 | version "0.5.1" 1119 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1120 | dependencies: 1121 | minimist "0.0.8" 1122 | 1123 | ms@2.0.0: 1124 | version "2.0.0" 1125 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1126 | 1127 | ms@2.1.1: 1128 | version "2.1.1" 1129 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1130 | 1131 | mute-stream@0.0.7: 1132 | version "0.0.7" 1133 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1134 | 1135 | natural-compare@^1.4.0: 1136 | version "1.4.0" 1137 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1138 | 1139 | nopt@~3.0.6: 1140 | version "3.0.6" 1141 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1142 | dependencies: 1143 | abbrev "1" 1144 | 1145 | normalize-package-data@^2.3.2: 1146 | version "2.4.0" 1147 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1148 | dependencies: 1149 | hosted-git-info "^2.1.4" 1150 | is-builtin-module "^1.0.0" 1151 | semver "2 || 3 || 4 || 5" 1152 | validate-npm-package-license "^3.0.1" 1153 | 1154 | npm-run-path@^2.0.0: 1155 | version "2.0.2" 1156 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1157 | dependencies: 1158 | path-key "^2.0.0" 1159 | 1160 | number-is-nan@^1.0.0: 1161 | version "1.0.1" 1162 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1163 | 1164 | object-assign@^4.0.1, object-assign@^4.1.1: 1165 | version "4.1.1" 1166 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1167 | 1168 | object-keys@^1.0.8: 1169 | version "1.0.12" 1170 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" 1171 | 1172 | once@^1.3.0: 1173 | version "1.4.0" 1174 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1175 | dependencies: 1176 | wrappy "1" 1177 | 1178 | onetime@^2.0.0: 1179 | version "2.0.1" 1180 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1181 | dependencies: 1182 | mimic-fn "^1.0.0" 1183 | 1184 | optionator@^0.8.2: 1185 | version "0.8.2" 1186 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1187 | dependencies: 1188 | deep-is "~0.1.3" 1189 | fast-levenshtein "~2.0.4" 1190 | levn "~0.3.0" 1191 | prelude-ls "~1.1.2" 1192 | type-check "~0.3.2" 1193 | wordwrap "~1.0.0" 1194 | 1195 | os-locale@^2.0.0: 1196 | version "2.1.0" 1197 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 1198 | dependencies: 1199 | execa "^0.7.0" 1200 | lcid "^1.0.0" 1201 | mem "^1.1.0" 1202 | 1203 | os-tmpdir@~1.0.2: 1204 | version "1.0.2" 1205 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1206 | 1207 | p-finally@^1.0.0: 1208 | version "1.0.0" 1209 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1210 | 1211 | p-limit@^1.1.0: 1212 | version "1.3.0" 1213 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1214 | dependencies: 1215 | p-try "^1.0.0" 1216 | 1217 | p-locate@^2.0.0: 1218 | version "2.0.0" 1219 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1220 | dependencies: 1221 | p-limit "^1.1.0" 1222 | 1223 | p-try@^1.0.0: 1224 | version "1.0.0" 1225 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1226 | 1227 | parse-json@^2.2.0: 1228 | version "2.2.0" 1229 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1230 | dependencies: 1231 | error-ex "^1.2.0" 1232 | 1233 | parse-json@^4.0.0: 1234 | version "4.0.0" 1235 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 1236 | dependencies: 1237 | error-ex "^1.3.1" 1238 | json-parse-better-errors "^1.0.1" 1239 | 1240 | path-exists@^2.0.0: 1241 | version "2.1.0" 1242 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1243 | dependencies: 1244 | pinkie-promise "^2.0.0" 1245 | 1246 | path-exists@^3.0.0: 1247 | version "3.0.0" 1248 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1249 | 1250 | path-is-absolute@^1.0.0: 1251 | version "1.0.1" 1252 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1253 | 1254 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 1255 | version "1.0.2" 1256 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1257 | 1258 | path-key@^2.0.0: 1259 | version "2.0.1" 1260 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1261 | 1262 | path-parse@^1.0.5: 1263 | version "1.0.5" 1264 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1265 | 1266 | path-type@^2.0.0: 1267 | version "2.0.0" 1268 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1269 | dependencies: 1270 | pify "^2.0.0" 1271 | 1272 | pify@^2.0.0: 1273 | version "2.3.0" 1274 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1275 | 1276 | pify@^3.0.0: 1277 | version "3.0.0" 1278 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1279 | 1280 | pinkie-promise@^2.0.0: 1281 | version "2.0.1" 1282 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1283 | dependencies: 1284 | pinkie "^2.0.0" 1285 | 1286 | pinkie@^2.0.0: 1287 | version "2.0.4" 1288 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1289 | 1290 | pkg-conf@^2.0.0: 1291 | version "2.1.0" 1292 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.1.0.tgz#2126514ca6f2abfebd168596df18ba57867f0058" 1293 | dependencies: 1294 | find-up "^2.0.0" 1295 | load-json-file "^4.0.0" 1296 | 1297 | pkg-config@^1.1.0: 1298 | version "1.1.1" 1299 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" 1300 | dependencies: 1301 | debug-log "^1.0.0" 1302 | find-root "^1.0.0" 1303 | xtend "^4.0.1" 1304 | 1305 | pkg-dir@^1.0.0: 1306 | version "1.0.0" 1307 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 1308 | dependencies: 1309 | find-up "^1.0.0" 1310 | 1311 | pluralize@^7.0.0: 1312 | version "7.0.0" 1313 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 1314 | 1315 | prelude-ls@~1.1.2: 1316 | version "1.1.2" 1317 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1318 | 1319 | prettier-eslint-cli@^4.7.1: 1320 | version "4.7.1" 1321 | resolved "https://registry.yarnpkg.com/prettier-eslint-cli/-/prettier-eslint-cli-4.7.1.tgz#3d103c494baa4e80b99ad53e2b9db7620101859f" 1322 | dependencies: 1323 | arrify "^1.0.1" 1324 | babel-runtime "^6.23.0" 1325 | boolify "^1.0.0" 1326 | camelcase-keys "^4.1.0" 1327 | chalk "2.3.0" 1328 | common-tags "^1.4.0" 1329 | eslint "^4.5.0" 1330 | find-up "^2.1.0" 1331 | get-stdin "^5.0.1" 1332 | glob "^7.1.1" 1333 | ignore "^3.2.7" 1334 | indent-string "^3.1.0" 1335 | lodash.memoize "^4.1.2" 1336 | loglevel-colored-level-prefix "^1.0.0" 1337 | messageformat "^1.0.2" 1338 | prettier-eslint "^8.5.0" 1339 | rxjs "^5.3.0" 1340 | yargs "10.0.3" 1341 | 1342 | prettier-eslint@^8.5.0: 1343 | version "8.8.2" 1344 | resolved "https://registry.yarnpkg.com/prettier-eslint/-/prettier-eslint-8.8.2.tgz#fcb29a48ab4524e234680797fe70e9d136ccaf0b" 1345 | dependencies: 1346 | babel-runtime "^6.26.0" 1347 | common-tags "^1.4.0" 1348 | dlv "^1.1.0" 1349 | eslint "^4.0.0" 1350 | indent-string "^3.2.0" 1351 | lodash.merge "^4.6.0" 1352 | loglevel-colored-level-prefix "^1.0.0" 1353 | prettier "^1.7.0" 1354 | pretty-format "^23.0.1" 1355 | require-relative "^0.8.7" 1356 | typescript "^2.5.1" 1357 | typescript-eslint-parser "^16.0.0" 1358 | vue-eslint-parser "^2.0.2" 1359 | 1360 | prettier@^1.7.0: 1361 | version "1.13.7" 1362 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.13.7.tgz#850f3b8af784a49a6ea2d2eaa7ed1428a34b7281" 1363 | 1364 | pretty-format@^23.0.1: 1365 | version "23.2.0" 1366 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.2.0.tgz#3b0aaa63c018a53583373c1cb3a5d96cc5e83017" 1367 | dependencies: 1368 | ansi-regex "^3.0.0" 1369 | ansi-styles "^3.2.0" 1370 | 1371 | process-nextick-args@~2.0.0: 1372 | version "2.0.0" 1373 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1374 | 1375 | progress@^2.0.0: 1376 | version "2.0.0" 1377 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 1378 | 1379 | prop-types@^15.6.0: 1380 | version "15.6.2" 1381 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.2.tgz#05d5ca77b4453e985d60fc7ff8c859094a497102" 1382 | dependencies: 1383 | loose-envify "^1.3.1" 1384 | object-assign "^4.1.1" 1385 | 1386 | pseudomap@^1.0.2: 1387 | version "1.0.2" 1388 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1389 | 1390 | quick-lru@^1.0.0: 1391 | version "1.1.0" 1392 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" 1393 | 1394 | read-pkg-up@^2.0.0: 1395 | version "2.0.0" 1396 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1397 | dependencies: 1398 | find-up "^2.0.0" 1399 | read-pkg "^2.0.0" 1400 | 1401 | read-pkg@^2.0.0: 1402 | version "2.0.0" 1403 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1404 | dependencies: 1405 | load-json-file "^2.0.0" 1406 | normalize-package-data "^2.3.2" 1407 | path-type "^2.0.0" 1408 | 1409 | readable-stream@^2.2.2: 1410 | version "2.3.6" 1411 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1412 | dependencies: 1413 | core-util-is "~1.0.0" 1414 | inherits "~2.0.3" 1415 | isarray "~1.0.0" 1416 | process-nextick-args "~2.0.0" 1417 | safe-buffer "~5.1.1" 1418 | string_decoder "~1.1.1" 1419 | util-deprecate "~1.0.1" 1420 | 1421 | regenerator-runtime@^0.11.0: 1422 | version "0.11.1" 1423 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 1424 | 1425 | regexpp@^1.0.1: 1426 | version "1.1.0" 1427 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" 1428 | 1429 | require-directory@^2.1.1: 1430 | version "2.1.1" 1431 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1432 | 1433 | require-main-filename@^1.0.1: 1434 | version "1.0.1" 1435 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1436 | 1437 | require-relative@^0.8.7: 1438 | version "0.8.7" 1439 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" 1440 | 1441 | require-uncached@^1.0.3: 1442 | version "1.0.3" 1443 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 1444 | dependencies: 1445 | caller-path "^0.1.0" 1446 | resolve-from "^1.0.0" 1447 | 1448 | reserved-words@^0.1.2: 1449 | version "0.1.2" 1450 | resolved "https://registry.yarnpkg.com/reserved-words/-/reserved-words-0.1.2.tgz#00a0940f98cd501aeaaac316411d9adc52b31ab1" 1451 | 1452 | resolve-from@^1.0.0: 1453 | version "1.0.1" 1454 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 1455 | 1456 | resolve@^1.3.3, resolve@^1.5.0: 1457 | version "1.8.1" 1458 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 1459 | dependencies: 1460 | path-parse "^1.0.5" 1461 | 1462 | restore-cursor@^2.0.0: 1463 | version "2.0.0" 1464 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 1465 | dependencies: 1466 | onetime "^2.0.0" 1467 | signal-exit "^3.0.2" 1468 | 1469 | rimraf@^2.2.8: 1470 | version "2.6.2" 1471 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1472 | dependencies: 1473 | glob "^7.0.5" 1474 | 1475 | run-async@^2.2.0: 1476 | version "2.3.0" 1477 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 1478 | dependencies: 1479 | is-promise "^2.1.0" 1480 | 1481 | run-parallel@^1.1.2: 1482 | version "1.1.9" 1483 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.9.tgz#c9dd3a7cf9f4b2c4b6244e173a6ed866e61dd679" 1484 | 1485 | rx-lite-aggregates@^4.0.8: 1486 | version "4.0.8" 1487 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 1488 | dependencies: 1489 | rx-lite "*" 1490 | 1491 | rx-lite@*, rx-lite@^4.0.8: 1492 | version "4.0.8" 1493 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 1494 | 1495 | rxjs@^5.3.0: 1496 | version "5.5.11" 1497 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.11.tgz#f733027ca43e3bec6b994473be4ab98ad43ced87" 1498 | dependencies: 1499 | symbol-observable "1.0.1" 1500 | 1501 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1502 | version "5.1.2" 1503 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1504 | 1505 | "safer-buffer@>= 2.1.2 < 3": 1506 | version "2.1.2" 1507 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1508 | 1509 | "semver@2 || 3 || 4 || 5", semver@5.5.0, semver@^5.3.0, semver@^5.4.1: 1510 | version "5.5.0" 1511 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 1512 | 1513 | set-blocking@^2.0.0: 1514 | version "2.0.0" 1515 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1516 | 1517 | shebang-command@^1.2.0: 1518 | version "1.2.0" 1519 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1520 | dependencies: 1521 | shebang-regex "^1.0.0" 1522 | 1523 | shebang-regex@^1.0.0: 1524 | version "1.0.0" 1525 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1526 | 1527 | signal-exit@^3.0.0, signal-exit@^3.0.2: 1528 | version "3.0.2" 1529 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1530 | 1531 | slice-ansi@1.0.0: 1532 | version "1.0.0" 1533 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 1534 | dependencies: 1535 | is-fullwidth-code-point "^2.0.0" 1536 | 1537 | source-map@^0.5.0: 1538 | version "0.5.7" 1539 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1540 | 1541 | spdx-correct@^3.0.0: 1542 | version "3.0.0" 1543 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 1544 | dependencies: 1545 | spdx-expression-parse "^3.0.0" 1546 | spdx-license-ids "^3.0.0" 1547 | 1548 | spdx-exceptions@^2.1.0: 1549 | version "2.1.0" 1550 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 1551 | 1552 | spdx-expression-parse@^3.0.0: 1553 | version "3.0.0" 1554 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 1555 | dependencies: 1556 | spdx-exceptions "^2.1.0" 1557 | spdx-license-ids "^3.0.0" 1558 | 1559 | spdx-license-ids@^3.0.0: 1560 | version "3.0.0" 1561 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 1562 | 1563 | sprintf-js@~1.0.2: 1564 | version "1.0.3" 1565 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1566 | 1567 | standard-engine@~8.0.0: 1568 | version "8.0.1" 1569 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-8.0.1.tgz#0b77be8d7ab963675717dbeac1ef1d6675fb62f0" 1570 | dependencies: 1571 | deglob "^2.1.0" 1572 | get-stdin "^6.0.0" 1573 | minimist "^1.1.0" 1574 | pkg-conf "^2.0.0" 1575 | 1576 | standard@^11.0.1: 1577 | version "11.0.1" 1578 | resolved "https://registry.yarnpkg.com/standard/-/standard-11.0.1.tgz#49be40c76f1d564964b22bbf7309929ad0335e29" 1579 | dependencies: 1580 | eslint "~4.18.0" 1581 | eslint-config-standard "11.0.0" 1582 | eslint-config-standard-jsx "5.0.0" 1583 | eslint-plugin-import "~2.9.0" 1584 | eslint-plugin-node "~6.0.0" 1585 | eslint-plugin-promise "~3.7.0" 1586 | eslint-plugin-react "~7.7.0" 1587 | eslint-plugin-standard "~3.0.1" 1588 | standard-engine "~8.0.0" 1589 | 1590 | string-width@^1.0.1: 1591 | version "1.0.2" 1592 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1593 | dependencies: 1594 | code-point-at "^1.0.0" 1595 | is-fullwidth-code-point "^1.0.0" 1596 | strip-ansi "^3.0.0" 1597 | 1598 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 1599 | version "2.1.1" 1600 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1601 | dependencies: 1602 | is-fullwidth-code-point "^2.0.0" 1603 | strip-ansi "^4.0.0" 1604 | 1605 | string_decoder@~1.1.1: 1606 | version "1.1.1" 1607 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1608 | dependencies: 1609 | safe-buffer "~5.1.0" 1610 | 1611 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1612 | version "3.0.1" 1613 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1614 | dependencies: 1615 | ansi-regex "^2.0.0" 1616 | 1617 | strip-ansi@^4.0.0: 1618 | version "4.0.0" 1619 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1620 | dependencies: 1621 | ansi-regex "^3.0.0" 1622 | 1623 | strip-bom@^3.0.0: 1624 | version "3.0.0" 1625 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1626 | 1627 | strip-eof@^1.0.0: 1628 | version "1.0.0" 1629 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 1630 | 1631 | strip-json-comments@~2.0.1: 1632 | version "2.0.1" 1633 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1634 | 1635 | supports-color@^2.0.0: 1636 | version "2.0.0" 1637 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1638 | 1639 | supports-color@^4.0.0: 1640 | version "4.5.0" 1641 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 1642 | dependencies: 1643 | has-flag "^2.0.0" 1644 | 1645 | supports-color@^5.3.0: 1646 | version "5.4.0" 1647 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 1648 | dependencies: 1649 | has-flag "^3.0.0" 1650 | 1651 | symbol-observable@1.0.1: 1652 | version "1.0.1" 1653 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" 1654 | 1655 | table@4.0.2: 1656 | version "4.0.2" 1657 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 1658 | dependencies: 1659 | ajv "^5.2.3" 1660 | ajv-keywords "^2.1.0" 1661 | chalk "^2.1.0" 1662 | lodash "^4.17.4" 1663 | slice-ansi "1.0.0" 1664 | string-width "^2.1.1" 1665 | 1666 | text-table@~0.2.0: 1667 | version "0.2.0" 1668 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1669 | 1670 | through@^2.3.6: 1671 | version "2.3.8" 1672 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1673 | 1674 | tmp@^0.0.33: 1675 | version "0.0.33" 1676 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 1677 | dependencies: 1678 | os-tmpdir "~1.0.2" 1679 | 1680 | to-fast-properties@^2.0.0: 1681 | version "2.0.0" 1682 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 1683 | 1684 | trim-right@^1.0.1: 1685 | version "1.0.1" 1686 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1687 | 1688 | type-check@~0.3.2: 1689 | version "0.3.2" 1690 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1691 | dependencies: 1692 | prelude-ls "~1.1.2" 1693 | 1694 | typedarray@^0.0.6: 1695 | version "0.0.6" 1696 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1697 | 1698 | typescript-eslint-parser@^16.0.0: 1699 | version "16.0.1" 1700 | resolved "https://registry.yarnpkg.com/typescript-eslint-parser/-/typescript-eslint-parser-16.0.1.tgz#b40681c7043b222b9772748b700a000b241c031b" 1701 | dependencies: 1702 | lodash.unescape "4.0.1" 1703 | semver "5.5.0" 1704 | 1705 | typescript@^2.5.1: 1706 | version "2.9.2" 1707 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.9.2.tgz#1cbf61d05d6b96269244eb6a3bce4bd914e0f00c" 1708 | 1709 | uniq@^1.0.1: 1710 | version "1.0.1" 1711 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 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 | validate-npm-package-license@^3.0.1: 1718 | version "3.0.3" 1719 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 1720 | dependencies: 1721 | spdx-correct "^3.0.0" 1722 | spdx-expression-parse "^3.0.0" 1723 | 1724 | vue-eslint-parser@^2.0.2: 1725 | version "2.0.3" 1726 | resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-2.0.3.tgz#c268c96c6d94cfe3d938a5f7593959b0ca3360d1" 1727 | dependencies: 1728 | debug "^3.1.0" 1729 | eslint-scope "^3.7.1" 1730 | eslint-visitor-keys "^1.0.0" 1731 | espree "^3.5.2" 1732 | esquery "^1.0.0" 1733 | lodash "^4.17.4" 1734 | 1735 | which-module@^2.0.0: 1736 | version "2.0.0" 1737 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 1738 | 1739 | which@^1.2.9: 1740 | version "1.3.1" 1741 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 1742 | dependencies: 1743 | isexe "^2.0.0" 1744 | 1745 | wordwrap@~1.0.0: 1746 | version "1.0.0" 1747 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1748 | 1749 | wrap-ansi@^2.0.0: 1750 | version "2.1.0" 1751 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 1752 | dependencies: 1753 | string-width "^1.0.1" 1754 | strip-ansi "^3.0.1" 1755 | 1756 | wrappy@1: 1757 | version "1.0.2" 1758 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1759 | 1760 | write@^0.2.1: 1761 | version "0.2.1" 1762 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 1763 | dependencies: 1764 | mkdirp "^0.5.1" 1765 | 1766 | xtend@^4.0.1: 1767 | version "4.0.1" 1768 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1769 | 1770 | y18n@^3.2.1: 1771 | version "3.2.1" 1772 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 1773 | 1774 | yallist@^2.1.2: 1775 | version "2.1.2" 1776 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 1777 | 1778 | yargs-parser@^8.0.0: 1779 | version "8.1.0" 1780 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" 1781 | dependencies: 1782 | camelcase "^4.1.0" 1783 | 1784 | yargs@10.0.3: 1785 | version "10.0.3" 1786 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.0.3.tgz#6542debd9080ad517ec5048fb454efe9e4d4aaae" 1787 | dependencies: 1788 | cliui "^3.2.0" 1789 | decamelize "^1.1.1" 1790 | find-up "^2.1.0" 1791 | get-caller-file "^1.0.1" 1792 | os-locale "^2.0.0" 1793 | require-directory "^2.1.1" 1794 | require-main-filename "^1.0.1" 1795 | set-blocking "^2.0.0" 1796 | string-width "^2.0.0" 1797 | which-module "^2.0.0" 1798 | y18n "^3.2.1" 1799 | yargs-parser "^8.0.0" 1800 | --------------------------------------------------------------------------------