├── .babelrc
├── .eslintrc
├── .flowconfig
├── .gitignore
├── .travis.yml
├── ISSUE_TEMPLATE.md
├── LICENSE.md
├── Makefile
├── PULL_REQUEST_TEMPLATE.md
├── README.md
├── dist
├── doormat.css
├── doormat.js
├── doormat.min.css
└── doormat.min.js
├── doormat.config.json
├── package-lock.json
├── package.json
├── src
├── js
│ ├── dev.js
│ └── doormat.js
├── pug
│ ├── dev.pug
│ ├── index.pug
│ └── mixins
│ │ └── mixins.pug
└── stylus
│ ├── dev.styl
│ └── doormat.styl
└── yarn.lock
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | "es2015",
4 | "stage-2",
5 | "flow"
6 | ]
7 | }
8 |
--------------------------------------------------------------------------------
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "parser": "babel-eslint",
3 | "env": {
4 | "browser": true,
5 | "node": true,
6 | "es6": true
7 | },
8 | "parserOptions": {
9 | "sourceType": "script",
10 | },
11 | "plugins": [
12 | "prettier"
13 | ],
14 | "rules": {
15 | "prettier/prettier": ["error", {
16 | "semi": false,
17 | "singleQuote": true,
18 | "trailingComma": "all",
19 | "bracketSpacing": true,
20 | "parser": "flow"
21 | }],
22 | "no-console": 2,
23 | },
24 | "extends": [
25 | "prettier",
26 | "prettier/flowtype"
27 | ]
28 | }
29 |
--------------------------------------------------------------------------------
/.flowconfig:
--------------------------------------------------------------------------------
1 | [ignore]
2 |
3 | [include]
4 |
5 | [libs]
6 |
7 | [lints]
8 |
9 | [options]
10 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | public
3 | .deploy
4 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "6"
4 | sudo: false
5 | install:
6 | - yarn
7 | script:
8 | - yarn run flow
9 | - make lint-scripts
10 |
--------------------------------------------------------------------------------
/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | ### Issue summary
2 |
3 | ### Expected behavior
4 |
5 | ### Actual behavior
6 |
7 | ### Browser used
8 |
9 | ### Steps to reproduce
10 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | doormat - http://jh3y.github.io/doormat
2 | Licensed under the MIT license
3 |
4 | jh3y (c) 2017
5 |
6 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
7 |
8 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
9 |
10 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
11 |
--------------------------------------------------------------------------------
/Makefile:
--------------------------------------------------------------------------------
1 | PHONY: help
2 |
3 | MODULES = ./node_modules/.bin
4 | UGLIFY = $(MODULES)/uglifyjs
5 | STYLUS = $(MODULES)/stylus
6 | BABEL = $(MODULES)/babel
7 | ESLINT = $(MODULES)/eslint
8 | POSTCSS = $(MODULES)/postcss
9 | CLEANCSS = $(MODULES)/cleancss
10 | PUG = $(MODULES)/pug
11 | GHPAGES = $(MODULES)/gh-pages
12 | BS = $(MODULES)/browser-sync
13 | PRETTIER = $(MODULES)/prettier
14 |
15 | FILE_NAME = doormat
16 | OUTPUT_DIR = public
17 | DIST_DIR = dist
18 | SCRIPT_SRC = src/js
19 | SCRIPT_DEST = $(OUTPUT_DIR)/js
20 | STYLE_SRC = src/stylus
21 | STYLE_DEST = $(OUTPUT_DIR)/css
22 | MARKUP_SRC = src/pug
23 | MARKUP_DEST = $(OUTPUT_DIR)
24 | DEPLOY_DEST = .deploy/
25 |
26 | UGLIFY_OPTS = $(DIST_DIR)/$(FILE_NAME).js --compress --mangle --comments -o $(DIST_DIR)/$(FILE_NAME).min.js
27 | CLEANCSS_OPTS = --s1 -o $(DIST_DIR)/$(FILE_NAME).min.css $(DIST_DIR)/$(FILE_NAME).css
28 | POSTCSS_OPTS = --use autoprefixer -d $(STYLE_DEST)/ $(STYLE_DEST)/*.css
29 | PRETTIER_OPTS = --trailing-comma all --single-quote --no-semi --write
30 |
31 | help:
32 | @grep -E '^[a-zA-Z\._-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
33 |
34 | compile-scripts: ## compiles scripts
35 | $(BABEL) $(SCRIPT_SRC) --out-dir $(SCRIPT_DEST)
36 |
37 | lint-scripts: ## lints JS files
38 | $(ESLINT) $(SCRIPT_SRC)/$(FILE_NAME).js
39 |
40 | watch-scripts: compile-scripts ## watch for script changes and compile
41 | $(BABEL) $(SCRIPT_SRC) --watch --out-dir $(SCRIPT_DEST) --source-maps
42 |
43 | publish-scripts: compile-scripts ## publish scripts to dist
44 | mkdir -pv $(DIST_DIR) && cp $(SCRIPT_DEST)/$(FILE_NAME).js $(DIST_DIR)/$(FILE_NAME).js && $(UGLIFY) $(UGLIFY_OPTS)
45 |
46 | compile-styles: ## compiles styles
47 | $(STYLUS) $(STYLE_SRC) -o $(STYLE_DEST) && $(POSTCSS) $(POSTCSS_OPTS)
48 |
49 | watch-styles: ## watches and compiles styles
50 | $(STYLUS) -w $(STYLE_SRC) -o $(STYLE_DEST)
51 |
52 | publish-styles: ## publish style files
53 | $(STYLUS) $(STYLE_SRC)/$(FILE_NAME).styl -o $(DIST_DIR)/ && $(CLEANCSS) $(CLEANCSS_OPTS)
54 |
55 | compile-markup: ## compiles markup
56 | $(PUG) -P $(MARKUP_SRC) -O $(FILE_NAME).config.json -o $(MARKUP_DEST)
57 |
58 | watch-markup: ## watch and compile markup
59 | $(PUG) -wP $(MARKUP_SRC) -O $(FILE_NAME).config.json -o $(MARKUP_DEST)
60 |
61 | publish-markup: ## publish index page for deployment
62 | $(PUG) $(MARKUP_SRC)/index.pug -O $(FILE_NAME).config.json -o $(MARKUP_DEST)
63 |
64 | setup: ## set up project for development
65 | npm install && mkdir -pv $(SCRIPT_DEST) && mkdir -pv $(STYLE_DEST)
66 |
67 | watch: ## run development watch
68 | make watch-scripts & make watch-styles & make watch-markup
69 |
70 | build: ## build sources
71 | make compile-scripts && make compile-styles && make compile-markup
72 |
73 | serve: build ## sets up browser-sync local static server with livereload
74 | $(BS) start --port 1987 --files $(OUTPUT_DIR)/ --server $(OUTPUT_DIR)
75 |
76 | develop: ## run development task
77 | make serve & make watch
78 |
79 | publish: ## publish files
80 | mkdir -pv $(DIST_DIR) && make publish-scripts && make publish-styles
81 |
82 | prettify: ## prettify scripts
83 | $(PRETTIER) $(PRETTIER_OPTS) $(SCRIPT_SRC)/*
84 |
85 | deploy: ## deploys demo to github-pages
86 | rm -rf $(DEPLOY_DEST) && mkdir -pv $(DEPLOY_DEST) $(DEPLOY_DEST)/js $(DEPLOY_DEST)/css && make publish-markup && make publish && cp $(MARKUP_DEST)/index.html $(DEPLOY_DEST)/index.html && cp $(DIST_DIR)/doormat.min.js $(DEPLOY_DEST)/js/doormat.js && cp $(DIST_DIR)/doormat.min.css $(DEPLOY_DEST)/css/doormat.css && make build && cp $(SCRIPT_DEST)/dev.js $(DEPLOY_DEST)/js && cp $(STYLE_DEST)/dev.css $(DEPLOY_DEST)/css && $(GHPAGES) -d $(DEPLOY_DEST) && make publish
87 |
--------------------------------------------------------------------------------
/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | Fixes # || Adds new feature X
2 |
3 | Changes include;
4 | * a
5 | * b
6 | * c
7 |
8 | * [ ] Passes tests (`linting`, `flow`)
9 | * [ ] Code is `prettier`
10 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | [](https://nodei.co/npm/doormat/)
2 |
3 | [](https://travis-ci.org/jh3y/doormat)
4 | 
5 | 
6 | [](https://github.com/prettier/prettier)
7 |
8 | # Doormat 👞👡
9 | _an alternative way to traverse through your site content_ 😎
10 |
11 | 
12 |
13 | ## Index
14 |
15 | * [How](https://github.com/jh3y/doormat#how)
16 | * [Features](https://github.com/jh3y/doormat#features)
17 | * [Browser support](https://github.com/jh3y/doormat#browser-support)
18 | * [Usage](https://github.com/jh3y/doormat#usage)
19 | * [Options](https://github.com/jh3y/doormat#options)
20 | * [API](https://github.com/jh3y/doormat#api)
21 | * [Events](https://github.com/jh3y/doormat#events)
22 | * [curtain.js?](https://github.com/jh3y/doormat#curtain.js?)
23 | * [Customisation](https://github.com/jh3y/doormat#customisation)
24 | * [UI Effects](https://github.com/jh3y/doormat#ui-effects)
25 | * [Caveats](https://github.com/jh3y/doormat#caveats)
26 | * [Roll your own classes](https://github.com/jh3y/doormat#roll-your-own-classes)
27 | * [Development](https://github.com/jh3y/doormat#development)
28 | * [Contributing](https://github.com/jh3y/doormat#contributing)
29 | * [License](https://github.com/jh3y/doormat#license)
30 |
31 | ## How
32 | The trick is possible by making sections of the page `position: fixed` and `position: absolute` whilst setting a height for the container element equal to the combined height of the page sections.
33 |
34 | Page sections are given an appropriate `top` value that gives some buffer space for scrolling and give the parallax like illusion against whichever section is currently `position: fixed`.
35 |
36 | Dependent on the panel mode, as the `window` is scrolled panels come into or move out of the viewport to either reveal or cover up fixed position content.
37 |
38 | ## Features
39 | * Provides alternative way to traverse content
40 | * Configurable behavior
41 | * Inbound and outbound traversal modes
42 | * Panel snapping to either viewport or as a means of traversing panels
43 | * API for programmatically traversing content
44 | * Responsive
45 | * Animated scrolling
46 | * Simple to create custom effects/behavior with CSS with many possibilities.
47 | * Supports overflowing content in outbound mode(_refer to caveats_:sweat_smile:)
48 | * No dependencies! :tada:
49 | * Scroll/Resize optimization via `requestAnimationFrame`
50 |
51 | 
52 |
53 | ## Browser support
54 | | Chrome | Firefox | Safari | Opera | Edge | IE |
55 | |:-------:|:-------:|:-------:|:-------:|:-------:|:--------:|
56 | | :smile: | :smile: | :smile: | :smile: | :smile: | :smile: |
57 |
58 | `v5` makes use of `requestAnimationFrame`, `viewport` units and the `Event` API. Most browsers should play nice except `Opera Mini` :-1:. `IE` support should be fine in version `11`.
59 |
60 | ## Usage
61 | To create your doormat.
62 |
63 | 1. Include `doormat{.min}.js` and `doormat{.min}.css` in your page/bundle.
64 |
65 | 2. Create your DOM/Page structure. The containing element needs the classname `dm`. This could be `body`. `doormat` uses panels for each section of content. Therefore, the children of our container need the class `dm-pnl`. `ol` and `ul` make good container elements :wink: A structure like the following is ideal.
66 |
67 | ```html̨
68 |
69 | v&&nl&&nm&&s===t.down,h=s===t.up&&nwindow.innerHeight&&(e=!0);return e},this.reset=function(){var t=o.classes,e=o.panels;window.scrollTo(0,0);var i=!0,n=!1,s=void 0;try{for(var a,r=e[Symbol.iterator]();!(i=(a=r.next()).done);i=!0){var l=a.value;l.classList.remove(t.obsolete),l.classList.remove(t.active)}}catch(o){n=!0,s=o}finally{try{!i&&r.return&&r.return()}finally{if(n)throw s}}e[0].classList.add(t.active)},this.calibrate=function(t){for(var e=o.el,i=o.enums,n=o.panels,s=o.reset,a=o.options.mode===i.outbound,r=o.isGreaterThanViewport(),l=0,d=0,c=0;c",
31 | "license": "MIT",
32 | "bugs": {
33 | "url": "https://github.com/jh3y/doormat/issues"
34 | },
35 | "homepage": "http://jh3y.github.io/doormat",
36 | "scripts": {
37 | "test": "echo \"Error: no test specified\" && exit 1"
38 | },
39 | "dependencies": {}
40 | }
41 |
--------------------------------------------------------------------------------
/src/js/dev.js:
--------------------------------------------------------------------------------
1 | document.addEventListener('DOMContentLoaded', () => {
2 | const controls = document.querySelector('.controls')
3 | const indicators = document.querySelectorAll('.slide-indicator')
4 | window.newDoormat = new Doormat()
5 | window.addEventListener('doormat:update', e => {
6 | if (newDoormat.activeIndex > 1) {
7 | document.body.classList.add('show-controls')
8 | } else {
9 | document.body.classList.remove('show-controls')
10 | }
11 | indicators.forEach(i => i.classList.remove('slide-indicator--active'))
12 | indicators[newDoormat.activeIndex - 1].classList.add(
13 | 'slide-indicator--active',
14 | )
15 | })
16 | const handleNav = e => {
17 | if (e.target.tagName === 'BUTTON') {
18 | newDoormat.scrollToPanel(e.target.getAttribute('data-panel'))
19 | }
20 | }
21 | controls.addEventListener('click', handleNav)
22 | })
23 |
--------------------------------------------------------------------------------
/src/js/doormat.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * doormat - http://jh3y.github.io/doormat
3 | *
4 | * @license MIT
5 | * @author jh3y
6 | * (c) 2017
7 | !*/
8 | 'use strict'
9 | type HTMLElement = HTMLElement
10 | /**
11 | * Represent Doormat instance
12 | * @constructor
13 | * @param {Object} opts - user defined options for Doormat instance
14 | */
15 | class Doormat {
16 | // class enums for no class mis-match
17 | classes: Object = {
18 | active: 'dm-panel--active',
19 | el: 'dm',
20 | inbound: 'dm--inbound',
21 | obsolete: 'dm-panel--obsolete',
22 | }
23 | // Set class enums for no string mis-match
24 | enums: Object = {
25 | inbound: 'inbound',
26 | outbound: 'outbound',
27 | travel: 'travel',
28 | viewport: 'viewport',
29 | bottom: 'bottom',
30 | top: 'top',
31 | up: 'up',
32 | down: 'down',
33 | updateEvent: 'doormat:update',
34 | }
35 | // Set default options for doormat
36 | defaults: Object = {
37 | snapDebounce: 150,
38 | scrollDuration: 250,
39 | snapMode: this.enums.viewport,
40 | mode: this.enums.outbound,
41 | snapThreshold: 30,
42 | }
43 | errors: Object = {
44 | invalidMode: 'Doormat: mode must be either "inbound" or "outbound"',
45 | invalidSnap:
46 | 'Doormat: snapMode must be set to either "viewport" or "travel"',
47 | }
48 | // Scroll position reference
49 | scrollPos: number = 0
50 | // Main element
51 | el: HTMLElement = ((document.querySelector(
52 | `.${this.classes.el}`,
53 | ): any): HTMLElement)
54 | // Content panels
55 | panels: HTMLCollection<*> = this.el.children
56 | // Reference for update state for scroll performance
57 | updating = false
58 | // Define the active panel
59 | active: HTMLElement = this.panels[0]
60 | cumulativeHeight: number
61 | options: Object
62 | scrollDir: String
63 | activeIndex: number = 1
64 |
65 | constructor(opts: Object) {
66 | const { bind, calibrate, classes, active, defaults, enums, errors } = this
67 | this.options = Object.assign({}, defaults, opts)
68 | /**
69 | * Set appropriate classes for first panel and doormat element.
70 | */
71 | if (
72 | !(
73 | this.options.snapMode === enums.travel ||
74 | this.options.snapMode === enums.viewport
75 | )
76 | )
77 | throw Error(errors.invalidSnap)
78 |
79 | if (
80 | !(
81 | this.options.mode === enums.inbound ||
82 | this.options.mode === enums.outbound
83 | )
84 | )
85 | throw Error(errors.invalidMode)
86 | active.classList.add(classes.active)
87 | if (this.options.mode === enums.inbound)
88 | this.el.classList.add(classes.inbound)
89 | calibrate()
90 | bind()
91 | }
92 | /**
93 | * Request updating the DOM. If actively in an update cycle, then do
94 | * nothing
95 | * @return {undefined}
96 | * @param {function} action - action to be invoked during next frame
97 | */
98 | requestUpdate = (action: Function) => {
99 | if (!this.updating) {
100 | requestAnimationFrame(action)
101 | this.updating = true
102 | }
103 | }
104 | /**
105 | * Bind event listeners for scrolling and viewport resize or orientation
106 | * change
107 | * @return {undefined}
108 | */
109 | bind = () => {
110 | const onViewportChange = () => this.requestUpdate(this.calibrate)
111 | if ('onorientationchange' in window)
112 | window.onorientationchange = onViewportChange
113 | else window.onresize = onViewportChange
114 | window.onscroll = this.onScroll
115 | }
116 | /**
117 | * on scroll update the scroll position reference and request to update
118 | * the DOM
119 | * @return {undefined}
120 | */
121 | onScroll = () => {
122 | const { enums, scrollPos } = this
123 | const newPosition = window.scrollY || window.pageYOffset
124 | this.scrollDir = scrollPos < newPosition ? enums.down : enums.up
125 | this.scrollPos = newPosition
126 | this.requestUpdate(this.handleScroll)
127 | }
128 | /**
129 | * Handle scrolling behavior setting classes appropriately based on scroll
130 | * position.
131 | * @return {undefined}
132 | */
133 | handleScroll = () => {
134 | const {
135 | classes,
136 | active,
137 | el,
138 | handleSnap,
139 | inSnapRegion,
140 | enums,
141 | options,
142 | scrollPos,
143 | } = this
144 |
145 | const { snapMode, snapDebounce } = options
146 | const activeIndex = active.doormatIndex
147 | const next = ((active.nextElementSibling: any): HTMLElement)
148 | const prev = ((active.previousElementSibling: any): HTMLElement)
149 | const isInbound = options.mode === enums.inbound
150 |
151 | const boundaries = {
152 | up: isInbound
153 | ? next && scrollPos >= next.offsetTop
154 | : next && scrollPos >= active.offsetTop + active.offsetHeight,
155 | down: isInbound
156 | ? prev && scrollPos < prev.doormatBoundary
157 | : prev && scrollPos < active.offsetTop,
158 | }
159 |
160 | /**
161 | * Update scroll position reference and determine scroll direction
162 | */
163 | if (boundaries.up) {
164 | active.classList.remove(classes.active)
165 | active.classList.add(classes.obsolete)
166 | next.classList.add(classes.active)
167 | next.style.top = isInbound ? '0' : next.doormatActiveTop
168 | this.active = next
169 | } else if (boundaries.down) {
170 | active.classList.remove(classes.active)
171 | active.style.top = isInbound ? active.doormatActiveTop : '0'
172 | prev.classList.remove(classes.obsolete)
173 | prev.classList.add(classes.active)
174 | this.active = prev
175 | }
176 | if (activeIndex !== this.active.doormatIndex) {
177 | const update = new Event(enums.updateEvent, {
178 | bubbles: true,
179 | })
180 | this.activeIndex = this.active.doormatIndex
181 | el.dispatchEvent(update)
182 | }
183 | this.updating = false
184 |
185 | /**
186 | * handle snap behavior
187 | */
188 | if (snapMode) {
189 | const snapRegion = inSnapRegion()
190 | clearTimeout(handleSnap.__TIMER)
191 | if (snapRegion)
192 | this.handleSnap.__TIMER = setTimeout(() => {
193 | handleSnap(snapRegion)
194 | }, snapDebounce)
195 | }
196 | }
197 | /**
198 | * Determine whether active scroll position is within snap region
199 | * @return {String} region - Returns an enumeration of which region to snap
200 | * in/from
201 | */
202 | inSnapRegion = () => {
203 | const { enums, active, options, scrollPos, scrollDir } = this
204 | const { snapMode, snapThreshold } = options
205 | /**
206 | * Determine whether active position is within the top threshold.
207 | * Threshold defined as percentage of viewport.
208 | */
209 | const { startScrollPos, offsetHeight } = active
210 |
211 | const thresholdSize = window.innerHeight * (snapThreshold / 100)
212 |
213 | let withinBottom, withinTop
214 |
215 | const bottomBoundary = startScrollPos + offsetHeight
216 | const bottomBuffer = bottomBoundary - thresholdSize
217 | const topBuffer = startScrollPos + thresholdSize
218 |
219 | if (snapMode === enums.viewport) {
220 | withinBottom = scrollPos > bottomBuffer && scrollPos < bottomBoundary
221 | withinTop = scrollPos > startScrollPos && scrollPos < topBuffer
222 | } else if (snapMode === enums.travel) {
223 | withinBottom = scrollPos > topBuffer && scrollDir === enums.down
224 | withinTop = scrollDir === enums.up && scrollPos < bottomBuffer
225 | }
226 |
227 | if (withinBottom || withinTop)
228 | return withinBottom ? enums.bottom : enums.top
229 | }
230 | /**
231 | * An internal scrolling function for snapping/travelling effects using
232 | * requestAnimationFrame. Drops the need for $.animate
233 | * @param {Number} destination - the desired scroll position
234 | * @param {Number} timeToScroll - duration of scroll in ms
235 | * @return {undefined}
236 | */
237 | scrollTo = (destination: number, timeToScroll: ?number) => {
238 | const { options, scrollPos } = this
239 | const start = performance.now()
240 | const duration = timeToScroll || options.scrollDuration
241 | const startingBlock = scrollPos || (window.scrollY || window.pageYOffset)
242 | const distance = destination - startingBlock
243 | const traverse = () => {
244 | const now = performance.now()
245 | const time = Math.min(1, (now - start) / duration)
246 | const timeFn = Math.sin(time * (Math.PI / 2))
247 | if (window.pageYOffset === destination) return
248 | window.scrollTo(0, Math.ceil(timeFn * distance + startingBlock))
249 | requestAnimationFrame(traverse)
250 | }
251 | traverse()
252 | }
253 | /**
254 | * Shorthand for scrolling to a specific panel.
255 | * @param {number} panelIndex - panel to scroll to
256 | * @param {number} speed - optional speed in ms
257 | * @return {undefined}
258 | */
259 | scrollToPanel = (panelIndex: number, speed: ?number) => {
260 | const { panels, scrollTo } = this
261 | const destinationPanel = panels[panelIndex - 1]
262 | if (destinationPanel) scrollTo(destinationPanel.startScrollPos, speed)
263 | else throw Error('Doormat: No panel available at that index')
264 | }
265 | /**
266 | * Shorthand for travelling to next panel
267 | * @return {undefined}
268 | */
269 | next = () => {
270 | this.scrollToPanel(this.active.doormatIndex + 1)
271 | }
272 | /**
273 | * Shorthand for travelling to previous panel
274 | * @return {undefined}
275 | */
276 | prev = () => {
277 | this.scrollToPanel(this.active.doormatIndex - 1)
278 | }
279 | /**
280 | * Handle snap enumeration and scroll doormat to appropriate panel if
281 | * necessary.
282 | * @param {String} region - enumeration of snap region "up/down"
283 | * @return {undefined}
284 | */
285 | handleSnap = (region: String) => {
286 | const { active, enums, scrollTo } = this
287 | const next = ((active.nextElementSibling: any): HTMLElement)
288 | if (!this.scrolling) {
289 | const nextPanel = region === enums.top ? active : next
290 | scrollTo(nextPanel.startScrollPos)
291 | }
292 | }
293 | /**
294 | * Check for whether a content panel is longer than viewport height.
295 | * @return {bool} greater - whether panel height is greater than viewport
296 | * height
297 | */
298 | isGreaterThanViewport = () => {
299 | const { panels } = this
300 | let greater = false
301 | for (let p = 0; p < panels.length; p++)
302 | if (panels[p].offsetHeight > window.innerHeight) greater = true
303 | return greater
304 | }
305 | /**
306 | * Reset DOM elements and scroll to top of window. Invoked on viewport
307 | * changes mitigates the risk of funky glitches that can occur on resizing
308 | * of content etc.
309 | * @return {undefined}
310 | */
311 | reset = () => {
312 | const { classes, panels } = this
313 | window.scrollTo(0, 0)
314 | for (const panel of panels) {
315 | panel.classList.remove(classes.obsolete)
316 | panel.classList.remove(classes.active)
317 | }
318 | panels[0].classList.add(classes.active)
319 | }
320 |
321 | /**
322 | * Sets the doormat behavior style by setting appropriate z-index values
323 | * and setting up the correct classnaming if necessary
324 | * @param {number} timestamp - timestamp for requestAnimationFrame invocation
325 | * Used to determine how calibration was invoked and whether to reset.
326 | * @return {undefined}
327 | */
328 | calibrate = (timestamp: ?number) => {
329 | const { el, enums, panels, reset, options } = this
330 | const isOutbound = options.mode === enums.outbound
331 | const greater = this.isGreaterThanViewport()
332 |
333 | let cumulativeHeight = 0
334 | let activeHeight = 0
335 |
336 | for (let i = 0; i < panels.length; i++) {
337 | const panel = panels[i]
338 | panel.doormatIndex = i + 1
339 | cumulativeHeight += panel.offsetHeight
340 | if (i) activeHeight += panels[i - 1].offsetHeight
341 | panel.startScrollPos = activeHeight
342 | if (greater) panel.doormatActiveTop = `${activeHeight}px`
343 | else panel.doormatActiveTop = `${i}00vh`
344 | panel.style.zIndex = isOutbound ? 1000 - i : 1000 - (panels.length - i)
345 | if (!isOutbound) {
346 | panel.doormatBoundary = cumulativeHeight
347 | panel.style.top = panel.doormatActiveTop
348 | }
349 | }
350 |
351 | this.cumulativeHeight = cumulativeHeight
352 | el.style.height = greater ? `${cumulativeHeight}px` : `${panels.length}00vh`
353 | /**
354 | * If timestamp, then calibration is being invoked via
355 | * requestAnimationFrame and therefore we know this is part of a viewport
356 | * change. Due to issues when viewport size changes and maintaining scroll
357 | * position, it's simpler to mitigate side effects by resetting the
358 | * elements.
359 | */
360 | if (timestamp) reset()
361 |
362 | this.updating = false
363 | }
364 | }
365 |
366 | window.Doormat = Doormat
367 |
--------------------------------------------------------------------------------
/src/pug/dev.pug:
--------------------------------------------------------------------------------
1 | include mixins/mixins.pug
2 | doctype html
3 | html
4 | head
5 | title Doormat:: DEV
6 | meta(name='viewport', content='width=device-width, initial-scale=1.0, user-scalable=0, maximum-scale=1.0')
7 | meta(http-equiv='Content-Type', content='text/html; charset=utf-8')
8 | link(href='https://fonts.googleapis.com/css?family=Droid+Sans', rel='stylesheet', type='text/css')
9 | link(rel='stylesheet', href='css/doormat.css')
10 | link(rel='stylesheet', href='css/dev.css')
11 | body.tx--black
12 | +doormat()
13 | +panel()
14 | +panel()
15 | +panel()
16 | +panel()
17 | +panel()
18 | button.toggleMode Toggle Mode
19 | script(src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js')
20 | script(type='text/javascript', src='js/doormat.js')
21 | script(type='text/javascript', src='js/dev.js')
22 |
--------------------------------------------------------------------------------
/src/pug/index.pug:
--------------------------------------------------------------------------------
1 | include mixins/mixins.pug
2 | doctype html
3 | html
4 | head
5 | title doormat | wipe your fingers before you come in!
6 | meta(name='viewport', content='width=device-width, initial-scale=1.0, user-scalable=0, maximum-scale=1.0')
7 | meta(http-equiv='Content-Type', content='text/html; charset=utf-8')
8 | meta(name='description', content='an entry point to your site, wipe your fingers before you come in!')
9 | link(href='https://fonts.googleapis.com/css?family=Droid+Sans', rel='stylesheet', type='text/css')
10 | link(rel='stylesheet', href='css/doormat.css')
11 | link(rel='stylesheet', href='css/dev.css')
12 | body.tx--black
13 | .controls
14 | for panel in [1, 2, 3, 4, 5]
15 | button.slide-indicator(data-panel= panel)
16 | +doormat()
17 | li.dm-panel.tx--white.bg--white.header
18 | .advice
19 | h1 Let's take a scroll 😊
20 | .title.tx--right
21 | h1 doormat
22 | +githubStats('jh3y', 'doormat')
23 |
24 | +panel('bg--blue blurb')
25 | h2 How about navigating through your site content a little differently?
26 | +panel('bg--purple tutorial')
27 | +panel('bg--red tutorial')
28 |
29 | +panel('bg--teal tutorial')
30 | h1 For more, check out the repo!
31 | script(async, defer, src="https://buttons.github.io/buttons.js")
32 | script(type='text/javascript', src='js/doormat.js')
33 | script(type='text/javascript', src='js/dev.js')
34 |
--------------------------------------------------------------------------------
/src/pug/mixins/mixins.pug:
--------------------------------------------------------------------------------
1 | mixin githubStats(userName, repoName)
2 | .stats
3 | a.github-button(href="https://github.com/jh3y/doormat", data-icon="octicon-star", data-size="large", data-show-count="true", aria-label="Star jh3y/doormat on GitHub") Star
4 | a.github-button(href="https://github.com/jh3y/doormat/fork", data-icon="octicon-repo-forked", data-size="large", data-show-count="true", aria-label="Fork jh3y/doormat on GitHub") Fork
5 | a.github-button(href="https://github.com/jh3y", data-size="large", data-show-count="true", aria-label="Follow @jh3y on GitHub") Follow @jh3y
6 |
7 |
8 |
9 | mixin doormat()
10 | - var doormatClass = blocks.doormat.lbl
11 | ul(class=`${doormatClass}`)
12 | if block
13 | block
14 |
15 | mixin panel(theme)
16 | - var panelClass = blocks.panel.lbl
17 | - var panelContentClass = blocks.panel.lbl + '__' + blocks.panel.els.content
18 | li(class=`${panelClass} ${theme || ''}`)
19 | if block
20 | div(class=`${panelContentClass}`)
21 | block
22 |
--------------------------------------------------------------------------------
/src/stylus/dev.styl:
--------------------------------------------------------------------------------
1 | c = json('../../doormat.config.json', {
2 | hash: true,
3 | leave-strings: true
4 | })
5 |
6 | $white = #fff
7 | $black = #2c3E55
8 | $red = #e74c3c
9 | $teal = #009688
10 | $green = #87d37c
11 | $purple = #9a12b3
12 | $blue = #446cb3
13 |
14 | $colorPalette = {
15 | black : $black
16 | white : $white
17 | teal : $teal
18 | red : $red
19 | purple: $purple
20 | green : $green
21 | blue : $blue
22 | }
23 |
24 | /**
25 | * Images of cats... because
26 | */
27 | $imgUrls = 'photo-1490481920145-fc78891bbb99?dpr=1&auto=format&fit=crop&w=600&h=400&q=80&cs=tinysrgb&crop=' 'photo-1475080433592-8615503c982f?dpr=1&auto=format&fit=crop&w=600&h=400&q=80&cs=tinysrgb&crop=' 'photo-1486530555807-11f29d0dff36?dpr=1&auto=format&fit=crop&w=600&h=400&q=80&cs=tinysrgb&crop=' 'photo-1498100152307-ce63fd6c5424?dpr=1&auto=format&fit=crop&w=600&h=400&q=80&cs=tinysrgb&crop=' 'photo-1496661269814-a841e78df103?dpr=1&auto=format&fit=crop&w=600&h=400&q=80&cs=tinysrgb&crop='
28 |
29 | for color, hex in $colorPalette
30 | .bg--{color}
31 | background-color hex
32 | .tx--{color}
33 | color hex
34 |
35 | body
36 | margin 0
37 | padding 0
38 | font-family 'Droid Sans', sans-serif
39 | font-size 16px
40 | background #111
41 |
42 | @media(max-width: 768px)
43 | font-size 12px
44 |
45 | .bg--purple code
46 | color $black
47 |
48 | code
49 | color $red
50 |
51 |
52 | @keyframes fadeIn
53 | from
54 | opacity 0
55 | to
56 | opacity 1
57 |
58 | .{c.blocks.doormat.lbl}
59 | animation fadeIn .5s
60 |
61 | .{c.blocks.panel.lbl}
62 | display flex !important
63 | align-items center
64 | justify-content center
65 | background-size cover
66 | background-position center
67 | padding 10px
68 | overflow hidden
69 | for img, i in $imgUrls
70 | &:nth-of-type({i + 1})
71 | background-image url('https://images.unsplash.com/' + img)
72 |
73 | &__{c.blocks.panel.els.content}
74 | padding 20px
75 | background-color rgba(255, 255, 255, 0.75)
76 | border-radius 10px
77 | opacity 0
78 | transform scale(0)
79 | max-width 90%
80 | text-align center
81 | transition opacity .25s ease 0s, transform .25s ease 0s
82 |
83 | .{c.blocks.panel.lbl}--{c.mods.active} .{c.blocks.panel.lbl}__{c.blocks.panel.els.content}
84 | opacity 1
85 | transform scale(1)
86 |
87 | .advice
88 | display flex
89 | font-size 2rem
90 | flex 1 1 0
91 | flex-direction column
92 | align-items center
93 | justify-content center
94 | h1
95 | font-size 2.5rem
96 | width 100%
97 | text-align center
98 | display block
99 |
100 | .title
101 | justify-content flex-start
102 |
103 | h1
104 | font-size 2rem
105 | margin 0
106 |
107 | *
108 | box-sizing border-box
109 |
110 | .stats iframe
111 | display block
112 | margin 10px 0 10px 0
113 |
114 | .header
115 | background-size cover
116 | background-position center center
117 | flex-direction column
118 | justify-content flex-end
119 |
120 | *
121 | width 100%
122 |
123 | .show-controls .controls
124 | opacity 1
125 | visibility visible
126 |
127 | @media(max-width 768px)
128 | .blurb
129 | .tutorial
130 | justify-content flex-start
131 |
132 | .tutorial .{c.blocks.panel.lbl}__{c.blocks.panel.els.content}
133 | .blurb .{c.blocks.panel.lbl}__{c.blocks.panel.els.content}
134 | max-width 75%
135 |
136 | .features
137 | padding 0
138 |
139 | .controls
140 | position fixed
141 | display flex
142 | flex-direction column
143 | z-index 1001
144 | opacity 0
145 | visibility hidden
146 | transition opacity 0.25s ease 0s
147 | bottom 25px
148 | right 25px
149 |
150 | .slide-indicator
151 | background-position center center
152 | background-size cover
153 | border-radius 100%
154 | cursor pointer
155 | border none
156 | height 44px
157 | width 44px
158 | margin 4px
159 | opacity .5
160 | transition opacity .25s ease 0s
161 |
162 | &--active
163 | &:hover
164 | opacity 1
165 |
166 | for img, i in $imgUrls
167 | &:nth-of-type({i + 1})
168 | background-image url('https://images.unsplash.com/' + img)
169 |
--------------------------------------------------------------------------------
/src/stylus/doormat.styl:
--------------------------------------------------------------------------------
1 | /*!!
2 | * doormat - http://jh3y.github.io/doormat
3 | *
4 | * @license MIT
5 | * @author jh3y
6 | * (c) 2017
7 | !*/
8 | c = json('../../doormat.config.json', {
9 | hash: true,
10 | leave-strings: true
11 | })
12 |
13 | body
14 | -webkit-overflow-scrolling touch
15 |
16 | .{c.blocks.doormat.lbl}
17 | display block
18 | position relative
19 | margin 0
20 | padding 0
21 | height 100vh
22 | width 100vw
23 | overflow auto
24 |
25 | &--{c.mods.inbound}
26 | .{c.blocks.panel.lbl}
27 | position absolute
28 |
29 | &.{c.blocks.panel.lbl}--{c.mods.obsolete}
30 | &.{c.blocks.panel.lbl}--{c.mods.active}
31 | position fixed
32 |
33 |
34 | .{c.blocks.panel.lbl}
35 | position fixed
36 | top 0
37 | right 0
38 | left 0
39 | min-height 100vh
40 | width 100vw
41 |
42 | &--{c.mods.active}
43 | position absolute
44 |
45 | &--{c.mods.obsolete}
46 | visibility hidden
47 | position fixed
48 |
--------------------------------------------------------------------------------
/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.0"
7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f"
8 |
9 | accepts@1.3.3, accepts@~1.3.3:
10 | version "1.3.3"
11 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca"
12 | dependencies:
13 | mime-types "~2.1.11"
14 | negotiator "0.6.1"
15 |
16 | acorn-globals@^3.0.0:
17 | version "3.1.0"
18 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf"
19 | dependencies:
20 | acorn "^4.0.4"
21 |
22 | acorn-jsx@^3.0.0:
23 | version "3.0.1"
24 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
25 | dependencies:
26 | acorn "^3.0.4"
27 |
28 | acorn@^3.0.4, acorn@^3.1.0, acorn@~3.3.0:
29 | version "3.3.0"
30 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
31 |
32 | acorn@^4.0.4, acorn@~4.0.2:
33 | version "4.0.13"
34 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
35 |
36 | acorn@^5.0.1:
37 | version "5.1.1"
38 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75"
39 |
40 | after@0.8.1:
41 | version "0.8.1"
42 | resolved "https://registry.yarnpkg.com/after/-/after-0.8.1.tgz#ab5d4fb883f596816d3515f8f791c0af486dd627"
43 |
44 | ajv-keywords@^1.0.0:
45 | version "1.5.1"
46 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c"
47 |
48 | ajv@^4.7.0, ajv@^4.9.1:
49 | version "4.11.8"
50 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
51 | dependencies:
52 | co "^4.6.0"
53 | json-stable-stringify "^1.0.1"
54 |
55 | ajv@^5.2.0:
56 | version "5.2.2"
57 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.2.tgz#47c68d69e86f5d953103b0074a9430dc63da5e39"
58 | dependencies:
59 | co "^4.6.0"
60 | fast-deep-equal "^1.0.0"
61 | json-schema-traverse "^0.3.0"
62 | json-stable-stringify "^1.0.1"
63 |
64 | align-text@^0.1.1, align-text@^0.1.3:
65 | version "0.1.4"
66 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
67 | dependencies:
68 | kind-of "^3.0.2"
69 | longest "^1.0.1"
70 | repeat-string "^1.5.2"
71 |
72 | amdefine@>=0.0.4:
73 | version "1.0.1"
74 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
75 |
76 | ansi-escapes@^2.0.0:
77 | version "2.0.0"
78 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b"
79 |
80 | ansi-regex@^2.0.0:
81 | version "2.1.1"
82 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
83 |
84 | ansi-regex@^3.0.0:
85 | version "3.0.0"
86 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
87 |
88 | ansi-styles@^2.2.1:
89 | version "2.2.1"
90 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
91 |
92 | ansi-styles@^3.1.0:
93 | version "3.2.0"
94 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88"
95 | dependencies:
96 | color-convert "^1.9.0"
97 |
98 | anymatch@^1.3.0:
99 | version "1.3.2"
100 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
101 | dependencies:
102 | micromatch "^2.1.5"
103 | normalize-path "^2.0.0"
104 |
105 | aproba@^1.0.3:
106 | version "1.1.2"
107 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1"
108 |
109 | are-we-there-yet@~1.1.2:
110 | version "1.1.4"
111 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
112 | dependencies:
113 | delegates "^1.0.0"
114 | readable-stream "^2.0.6"
115 |
116 | argparse@^1.0.7:
117 | version "1.0.9"
118 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
119 | dependencies:
120 | sprintf-js "~1.0.2"
121 |
122 | arr-diff@^2.0.0:
123 | version "2.0.0"
124 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
125 | dependencies:
126 | arr-flatten "^1.0.1"
127 |
128 | arr-flatten@^1.0.1:
129 | version "1.1.0"
130 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
131 |
132 | array-union@^1.0.1:
133 | version "1.0.2"
134 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
135 | dependencies:
136 | array-uniq "^1.0.1"
137 |
138 | array-uniq@^1.0.1:
139 | version "1.0.3"
140 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
141 |
142 | array-unique@^0.2.1:
143 | version "0.2.1"
144 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
145 |
146 | arraybuffer.slice@0.0.6:
147 | version "0.0.6"
148 | resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz#f33b2159f0532a3f3107a272c0ccfbd1ad2979ca"
149 |
150 | arrify@^1.0.0:
151 | version "1.0.1"
152 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
153 |
154 | asap@~2.0.3:
155 | version "2.0.6"
156 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
157 |
158 | asn1@~0.2.3:
159 | version "0.2.3"
160 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
161 |
162 | assert-plus@1.0.0, assert-plus@^1.0.0:
163 | version "1.0.0"
164 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
165 |
166 | assert-plus@^0.2.0:
167 | version "0.2.0"
168 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
169 |
170 | async-each-series@0.1.1:
171 | version "0.1.1"
172 | resolved "https://registry.yarnpkg.com/async-each-series/-/async-each-series-0.1.1.tgz#7617c1917401fd8ca4a28aadce3dbae98afeb432"
173 |
174 | async-each@^1.0.0:
175 | version "1.0.1"
176 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
177 |
178 | async@1.5.2:
179 | version "1.5.2"
180 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
181 |
182 | async@2.1.4:
183 | version "2.1.4"
184 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.4.tgz#2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4"
185 | dependencies:
186 | lodash "^4.14.0"
187 |
188 | asynckit@^0.4.0:
189 | version "0.4.0"
190 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
191 |
192 | autoprefixer@^7.1.2:
193 | version "7.1.2"
194 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-7.1.2.tgz#fbeaf07d48fd878e0682bf7cbeeade728adb2b18"
195 | dependencies:
196 | browserslist "^2.1.5"
197 | caniuse-lite "^1.0.30000697"
198 | normalize-range "^0.1.2"
199 | num2fraction "^1.2.2"
200 | postcss "^6.0.6"
201 | postcss-value-parser "^3.2.3"
202 |
203 | aws-sign2@~0.6.0:
204 | version "0.6.0"
205 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
206 |
207 | aws4@^1.2.1:
208 | version "1.6.0"
209 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
210 |
211 | babel-cli@^6.24.1:
212 | version "6.24.1"
213 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283"
214 | dependencies:
215 | babel-core "^6.24.1"
216 | babel-polyfill "^6.23.0"
217 | babel-register "^6.24.1"
218 | babel-runtime "^6.22.0"
219 | commander "^2.8.1"
220 | convert-source-map "^1.1.0"
221 | fs-readdir-recursive "^1.0.0"
222 | glob "^7.0.0"
223 | lodash "^4.2.0"
224 | output-file-sync "^1.1.0"
225 | path-is-absolute "^1.0.0"
226 | slash "^1.0.0"
227 | source-map "^0.5.0"
228 | v8flags "^2.0.10"
229 | optionalDependencies:
230 | chokidar "^1.6.1"
231 |
232 | babel-code-frame@^6.22.0:
233 | version "6.22.0"
234 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4"
235 | dependencies:
236 | chalk "^1.1.0"
237 | esutils "^2.0.2"
238 | js-tokens "^3.0.0"
239 |
240 | babel-core@^6.24.1:
241 | version "6.25.0"
242 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729"
243 | dependencies:
244 | babel-code-frame "^6.22.0"
245 | babel-generator "^6.25.0"
246 | babel-helpers "^6.24.1"
247 | babel-messages "^6.23.0"
248 | babel-register "^6.24.1"
249 | babel-runtime "^6.22.0"
250 | babel-template "^6.25.0"
251 | babel-traverse "^6.25.0"
252 | babel-types "^6.25.0"
253 | babylon "^6.17.2"
254 | convert-source-map "^1.1.0"
255 | debug "^2.1.1"
256 | json5 "^0.5.0"
257 | lodash "^4.2.0"
258 | minimatch "^3.0.2"
259 | path-is-absolute "^1.0.0"
260 | private "^0.1.6"
261 | slash "^1.0.0"
262 | source-map "^0.5.0"
263 |
264 | babel-eslint@^7.2.3:
265 | version "7.2.3"
266 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827"
267 | dependencies:
268 | babel-code-frame "^6.22.0"
269 | babel-traverse "^6.23.1"
270 | babel-types "^6.23.0"
271 | babylon "^6.17.0"
272 |
273 | babel-generator@^6.25.0:
274 | version "6.25.0"
275 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc"
276 | dependencies:
277 | babel-messages "^6.23.0"
278 | babel-runtime "^6.22.0"
279 | babel-types "^6.25.0"
280 | detect-indent "^4.0.0"
281 | jsesc "^1.3.0"
282 | lodash "^4.2.0"
283 | source-map "^0.5.0"
284 | trim-right "^1.0.1"
285 |
286 | babel-helper-bindify-decorators@^6.24.1:
287 | version "6.24.1"
288 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330"
289 | dependencies:
290 | babel-runtime "^6.22.0"
291 | babel-traverse "^6.24.1"
292 | babel-types "^6.24.1"
293 |
294 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
295 | version "6.24.1"
296 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
297 | dependencies:
298 | babel-helper-explode-assignable-expression "^6.24.1"
299 | babel-runtime "^6.22.0"
300 | babel-types "^6.24.1"
301 |
302 | babel-helper-call-delegate@^6.24.1:
303 | version "6.24.1"
304 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
305 | dependencies:
306 | babel-helper-hoist-variables "^6.24.1"
307 | babel-runtime "^6.22.0"
308 | babel-traverse "^6.24.1"
309 | babel-types "^6.24.1"
310 |
311 | babel-helper-define-map@^6.24.1:
312 | version "6.24.1"
313 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080"
314 | dependencies:
315 | babel-helper-function-name "^6.24.1"
316 | babel-runtime "^6.22.0"
317 | babel-types "^6.24.1"
318 | lodash "^4.2.0"
319 |
320 | babel-helper-explode-assignable-expression@^6.24.1:
321 | version "6.24.1"
322 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa"
323 | dependencies:
324 | babel-runtime "^6.22.0"
325 | babel-traverse "^6.24.1"
326 | babel-types "^6.24.1"
327 |
328 | babel-helper-explode-class@^6.24.1:
329 | version "6.24.1"
330 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb"
331 | dependencies:
332 | babel-helper-bindify-decorators "^6.24.1"
333 | babel-runtime "^6.22.0"
334 | babel-traverse "^6.24.1"
335 | babel-types "^6.24.1"
336 |
337 | babel-helper-function-name@^6.24.1:
338 | version "6.24.1"
339 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
340 | dependencies:
341 | babel-helper-get-function-arity "^6.24.1"
342 | babel-runtime "^6.22.0"
343 | babel-template "^6.24.1"
344 | babel-traverse "^6.24.1"
345 | babel-types "^6.24.1"
346 |
347 | babel-helper-get-function-arity@^6.24.1:
348 | version "6.24.1"
349 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
350 | dependencies:
351 | babel-runtime "^6.22.0"
352 | babel-types "^6.24.1"
353 |
354 | babel-helper-hoist-variables@^6.24.1:
355 | version "6.24.1"
356 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
357 | dependencies:
358 | babel-runtime "^6.22.0"
359 | babel-types "^6.24.1"
360 |
361 | babel-helper-optimise-call-expression@^6.24.1:
362 | version "6.24.1"
363 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
364 | dependencies:
365 | babel-runtime "^6.22.0"
366 | babel-types "^6.24.1"
367 |
368 | babel-helper-regex@^6.24.1:
369 | version "6.24.1"
370 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8"
371 | dependencies:
372 | babel-runtime "^6.22.0"
373 | babel-types "^6.24.1"
374 | lodash "^4.2.0"
375 |
376 | babel-helper-remap-async-to-generator@^6.24.1:
377 | version "6.24.1"
378 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b"
379 | dependencies:
380 | babel-helper-function-name "^6.24.1"
381 | babel-runtime "^6.22.0"
382 | babel-template "^6.24.1"
383 | babel-traverse "^6.24.1"
384 | babel-types "^6.24.1"
385 |
386 | babel-helper-replace-supers@^6.24.1:
387 | version "6.24.1"
388 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
389 | dependencies:
390 | babel-helper-optimise-call-expression "^6.24.1"
391 | babel-messages "^6.23.0"
392 | babel-runtime "^6.22.0"
393 | babel-template "^6.24.1"
394 | babel-traverse "^6.24.1"
395 | babel-types "^6.24.1"
396 |
397 | babel-helpers@^6.24.1:
398 | version "6.24.1"
399 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
400 | dependencies:
401 | babel-runtime "^6.22.0"
402 | babel-template "^6.24.1"
403 |
404 | babel-messages@^6.23.0:
405 | version "6.23.0"
406 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
407 | dependencies:
408 | babel-runtime "^6.22.0"
409 |
410 | babel-plugin-check-es2015-constants@^6.22.0:
411 | version "6.22.0"
412 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
413 | dependencies:
414 | babel-runtime "^6.22.0"
415 |
416 | babel-plugin-syntax-async-functions@^6.8.0:
417 | version "6.13.0"
418 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
419 |
420 | babel-plugin-syntax-async-generators@^6.5.0:
421 | version "6.13.0"
422 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a"
423 |
424 | babel-plugin-syntax-class-properties@^6.8.0:
425 | version "6.13.0"
426 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
427 |
428 | babel-plugin-syntax-decorators@^6.13.0:
429 | version "6.13.0"
430 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b"
431 |
432 | babel-plugin-syntax-dynamic-import@^6.18.0:
433 | version "6.18.0"
434 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da"
435 |
436 | babel-plugin-syntax-exponentiation-operator@^6.8.0:
437 | version "6.13.0"
438 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
439 |
440 | babel-plugin-syntax-flow@^6.18.0:
441 | version "6.18.0"
442 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
443 |
444 | babel-plugin-syntax-object-rest-spread@^6.8.0:
445 | version "6.13.0"
446 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
447 |
448 | babel-plugin-syntax-trailing-function-commas@^6.22.0:
449 | version "6.22.0"
450 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
451 |
452 | babel-plugin-transform-async-generator-functions@^6.24.1:
453 | version "6.24.1"
454 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db"
455 | dependencies:
456 | babel-helper-remap-async-to-generator "^6.24.1"
457 | babel-plugin-syntax-async-generators "^6.5.0"
458 | babel-runtime "^6.22.0"
459 |
460 | babel-plugin-transform-async-to-generator@^6.24.1:
461 | version "6.24.1"
462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
463 | dependencies:
464 | babel-helper-remap-async-to-generator "^6.24.1"
465 | babel-plugin-syntax-async-functions "^6.8.0"
466 | babel-runtime "^6.22.0"
467 |
468 | babel-plugin-transform-class-properties@^6.24.1:
469 | version "6.24.1"
470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac"
471 | dependencies:
472 | babel-helper-function-name "^6.24.1"
473 | babel-plugin-syntax-class-properties "^6.8.0"
474 | babel-runtime "^6.22.0"
475 | babel-template "^6.24.1"
476 |
477 | babel-plugin-transform-decorators@^6.24.1:
478 | version "6.24.1"
479 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d"
480 | dependencies:
481 | babel-helper-explode-class "^6.24.1"
482 | babel-plugin-syntax-decorators "^6.13.0"
483 | babel-runtime "^6.22.0"
484 | babel-template "^6.24.1"
485 | babel-types "^6.24.1"
486 |
487 | babel-plugin-transform-es2015-arrow-functions@^6.22.0:
488 | version "6.22.0"
489 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
490 | dependencies:
491 | babel-runtime "^6.22.0"
492 |
493 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
494 | version "6.22.0"
495 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
496 | dependencies:
497 | babel-runtime "^6.22.0"
498 |
499 | babel-plugin-transform-es2015-block-scoping@^6.24.1:
500 | version "6.24.1"
501 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576"
502 | dependencies:
503 | babel-runtime "^6.22.0"
504 | babel-template "^6.24.1"
505 | babel-traverse "^6.24.1"
506 | babel-types "^6.24.1"
507 | lodash "^4.2.0"
508 |
509 | babel-plugin-transform-es2015-classes@^6.24.1:
510 | version "6.24.1"
511 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
512 | dependencies:
513 | babel-helper-define-map "^6.24.1"
514 | babel-helper-function-name "^6.24.1"
515 | babel-helper-optimise-call-expression "^6.24.1"
516 | babel-helper-replace-supers "^6.24.1"
517 | babel-messages "^6.23.0"
518 | babel-runtime "^6.22.0"
519 | babel-template "^6.24.1"
520 | babel-traverse "^6.24.1"
521 | babel-types "^6.24.1"
522 |
523 | babel-plugin-transform-es2015-computed-properties@^6.24.1:
524 | version "6.24.1"
525 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
526 | dependencies:
527 | babel-runtime "^6.22.0"
528 | babel-template "^6.24.1"
529 |
530 | babel-plugin-transform-es2015-destructuring@^6.22.0:
531 | version "6.23.0"
532 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
533 | dependencies:
534 | babel-runtime "^6.22.0"
535 |
536 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1:
537 | version "6.24.1"
538 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
539 | dependencies:
540 | babel-runtime "^6.22.0"
541 | babel-types "^6.24.1"
542 |
543 | babel-plugin-transform-es2015-for-of@^6.22.0:
544 | version "6.23.0"
545 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
546 | dependencies:
547 | babel-runtime "^6.22.0"
548 |
549 | babel-plugin-transform-es2015-function-name@^6.24.1:
550 | version "6.24.1"
551 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
552 | dependencies:
553 | babel-helper-function-name "^6.24.1"
554 | babel-runtime "^6.22.0"
555 | babel-types "^6.24.1"
556 |
557 | babel-plugin-transform-es2015-literals@^6.22.0:
558 | version "6.22.0"
559 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
560 | dependencies:
561 | babel-runtime "^6.22.0"
562 |
563 | babel-plugin-transform-es2015-modules-amd@^6.24.1:
564 | version "6.24.1"
565 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
566 | dependencies:
567 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
568 | babel-runtime "^6.22.0"
569 | babel-template "^6.24.1"
570 |
571 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
572 | version "6.24.1"
573 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe"
574 | dependencies:
575 | babel-plugin-transform-strict-mode "^6.24.1"
576 | babel-runtime "^6.22.0"
577 | babel-template "^6.24.1"
578 | babel-types "^6.24.1"
579 |
580 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
581 | version "6.24.1"
582 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
583 | dependencies:
584 | babel-helper-hoist-variables "^6.24.1"
585 | babel-runtime "^6.22.0"
586 | babel-template "^6.24.1"
587 |
588 | babel-plugin-transform-es2015-modules-umd@^6.24.1:
589 | version "6.24.1"
590 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
591 | dependencies:
592 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
593 | babel-runtime "^6.22.0"
594 | babel-template "^6.24.1"
595 |
596 | babel-plugin-transform-es2015-object-super@^6.24.1:
597 | version "6.24.1"
598 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
599 | dependencies:
600 | babel-helper-replace-supers "^6.24.1"
601 | babel-runtime "^6.22.0"
602 |
603 | babel-plugin-transform-es2015-parameters@^6.24.1:
604 | version "6.24.1"
605 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
606 | dependencies:
607 | babel-helper-call-delegate "^6.24.1"
608 | babel-helper-get-function-arity "^6.24.1"
609 | babel-runtime "^6.22.0"
610 | babel-template "^6.24.1"
611 | babel-traverse "^6.24.1"
612 | babel-types "^6.24.1"
613 |
614 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1:
615 | version "6.24.1"
616 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
617 | dependencies:
618 | babel-runtime "^6.22.0"
619 | babel-types "^6.24.1"
620 |
621 | babel-plugin-transform-es2015-spread@^6.22.0:
622 | version "6.22.0"
623 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
624 | dependencies:
625 | babel-runtime "^6.22.0"
626 |
627 | babel-plugin-transform-es2015-sticky-regex@^6.24.1:
628 | version "6.24.1"
629 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
630 | dependencies:
631 | babel-helper-regex "^6.24.1"
632 | babel-runtime "^6.22.0"
633 | babel-types "^6.24.1"
634 |
635 | babel-plugin-transform-es2015-template-literals@^6.22.0:
636 | version "6.22.0"
637 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
638 | dependencies:
639 | babel-runtime "^6.22.0"
640 |
641 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0:
642 | version "6.23.0"
643 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
644 | dependencies:
645 | babel-runtime "^6.22.0"
646 |
647 | babel-plugin-transform-es2015-unicode-regex@^6.24.1:
648 | version "6.24.1"
649 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
650 | dependencies:
651 | babel-helper-regex "^6.24.1"
652 | babel-runtime "^6.22.0"
653 | regexpu-core "^2.0.0"
654 |
655 | babel-plugin-transform-exponentiation-operator@^6.24.1:
656 | version "6.24.1"
657 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
658 | dependencies:
659 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
660 | babel-plugin-syntax-exponentiation-operator "^6.8.0"
661 | babel-runtime "^6.22.0"
662 |
663 | babel-plugin-transform-flow-strip-types@^6.22.0:
664 | version "6.22.0"
665 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
666 | dependencies:
667 | babel-plugin-syntax-flow "^6.18.0"
668 | babel-runtime "^6.22.0"
669 |
670 | babel-plugin-transform-object-rest-spread@^6.22.0:
671 | version "6.23.0"
672 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921"
673 | dependencies:
674 | babel-plugin-syntax-object-rest-spread "^6.8.0"
675 | babel-runtime "^6.22.0"
676 |
677 | babel-plugin-transform-regenerator@^6.24.1:
678 | version "6.24.1"
679 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418"
680 | dependencies:
681 | regenerator-transform "0.9.11"
682 |
683 | babel-plugin-transform-strict-mode@^6.24.1:
684 | version "6.24.1"
685 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
686 | dependencies:
687 | babel-runtime "^6.22.0"
688 | babel-types "^6.24.1"
689 |
690 | babel-polyfill@^6.23.0:
691 | version "6.23.0"
692 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d"
693 | dependencies:
694 | babel-runtime "^6.22.0"
695 | core-js "^2.4.0"
696 | regenerator-runtime "^0.10.0"
697 |
698 | babel-preset-es2015@^6.24.1:
699 | version "6.24.1"
700 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939"
701 | dependencies:
702 | babel-plugin-check-es2015-constants "^6.22.0"
703 | babel-plugin-transform-es2015-arrow-functions "^6.22.0"
704 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
705 | babel-plugin-transform-es2015-block-scoping "^6.24.1"
706 | babel-plugin-transform-es2015-classes "^6.24.1"
707 | babel-plugin-transform-es2015-computed-properties "^6.24.1"
708 | babel-plugin-transform-es2015-destructuring "^6.22.0"
709 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1"
710 | babel-plugin-transform-es2015-for-of "^6.22.0"
711 | babel-plugin-transform-es2015-function-name "^6.24.1"
712 | babel-plugin-transform-es2015-literals "^6.22.0"
713 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
714 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
715 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1"
716 | babel-plugin-transform-es2015-modules-umd "^6.24.1"
717 | babel-plugin-transform-es2015-object-super "^6.24.1"
718 | babel-plugin-transform-es2015-parameters "^6.24.1"
719 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1"
720 | babel-plugin-transform-es2015-spread "^6.22.0"
721 | babel-plugin-transform-es2015-sticky-regex "^6.24.1"
722 | babel-plugin-transform-es2015-template-literals "^6.22.0"
723 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0"
724 | babel-plugin-transform-es2015-unicode-regex "^6.24.1"
725 | babel-plugin-transform-regenerator "^6.24.1"
726 |
727 | babel-preset-flow@^6.23.0:
728 | version "6.23.0"
729 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d"
730 | dependencies:
731 | babel-plugin-transform-flow-strip-types "^6.22.0"
732 |
733 | babel-preset-stage-2@^6.24.1:
734 | version "6.24.1"
735 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1"
736 | dependencies:
737 | babel-plugin-syntax-dynamic-import "^6.18.0"
738 | babel-plugin-transform-class-properties "^6.24.1"
739 | babel-plugin-transform-decorators "^6.24.1"
740 | babel-preset-stage-3 "^6.24.1"
741 |
742 | babel-preset-stage-3@^6.24.1:
743 | version "6.24.1"
744 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395"
745 | dependencies:
746 | babel-plugin-syntax-trailing-function-commas "^6.22.0"
747 | babel-plugin-transform-async-generator-functions "^6.24.1"
748 | babel-plugin-transform-async-to-generator "^6.24.1"
749 | babel-plugin-transform-exponentiation-operator "^6.24.1"
750 | babel-plugin-transform-object-rest-spread "^6.22.0"
751 |
752 | babel-register@^6.24.1:
753 | version "6.24.1"
754 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f"
755 | dependencies:
756 | babel-core "^6.24.1"
757 | babel-runtime "^6.22.0"
758 | core-js "^2.4.0"
759 | home-or-tmp "^2.0.0"
760 | lodash "^4.2.0"
761 | mkdirp "^0.5.1"
762 | source-map-support "^0.4.2"
763 |
764 | babel-runtime@^6.18.0, babel-runtime@^6.22.0:
765 | version "6.25.0"
766 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.25.0.tgz#33b98eaa5d482bb01a8d1aa6b437ad2b01aec41c"
767 | dependencies:
768 | core-js "^2.4.0"
769 | regenerator-runtime "^0.10.0"
770 |
771 | babel-template@^6.24.1, babel-template@^6.25.0:
772 | version "6.25.0"
773 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071"
774 | dependencies:
775 | babel-runtime "^6.22.0"
776 | babel-traverse "^6.25.0"
777 | babel-types "^6.25.0"
778 | babylon "^6.17.2"
779 | lodash "^4.2.0"
780 |
781 | babel-traverse@^6.23.1, babel-traverse@^6.24.1, babel-traverse@^6.25.0:
782 | version "6.25.0"
783 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1"
784 | dependencies:
785 | babel-code-frame "^6.22.0"
786 | babel-messages "^6.23.0"
787 | babel-runtime "^6.22.0"
788 | babel-types "^6.25.0"
789 | babylon "^6.17.2"
790 | debug "^2.2.0"
791 | globals "^9.0.0"
792 | invariant "^2.2.0"
793 | lodash "^4.2.0"
794 |
795 | babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.25.0:
796 | version "6.25.0"
797 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e"
798 | dependencies:
799 | babel-runtime "^6.22.0"
800 | esutils "^2.0.2"
801 | lodash "^4.2.0"
802 | to-fast-properties "^1.0.1"
803 |
804 | babylon@^6.17.0, babylon@^6.17.2:
805 | version "6.17.4"
806 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a"
807 |
808 | backo2@1.0.2:
809 | version "1.0.2"
810 | resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947"
811 |
812 | balanced-match@^1.0.0:
813 | version "1.0.0"
814 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
815 |
816 | base64-arraybuffer@0.1.5:
817 | version "0.1.5"
818 | resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8"
819 |
820 | base64id@0.1.0:
821 | version "0.1.0"
822 | resolved "https://registry.yarnpkg.com/base64id/-/base64id-0.1.0.tgz#02ce0fdeee0cef4f40080e1e73e834f0b1bfce3f"
823 |
824 | base64url@^2.0.0:
825 | version "2.0.0"
826 | resolved "https://registry.yarnpkg.com/base64url/-/base64url-2.0.0.tgz#eac16e03ea1438eff9423d69baa36262ed1f70bb"
827 |
828 | batch@0.5.3:
829 | version "0.5.3"
830 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.5.3.tgz#3f3414f380321743bfc1042f9a83ff1d5824d464"
831 |
832 | bcrypt-pbkdf@^1.0.0:
833 | version "1.0.1"
834 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
835 | dependencies:
836 | tweetnacl "^0.14.3"
837 |
838 | better-assert@~1.0.0:
839 | version "1.0.2"
840 | resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522"
841 | dependencies:
842 | callsite "1.0.0"
843 |
844 | binary-extensions@^1.0.0:
845 | version "1.9.0"
846 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.9.0.tgz#66506c16ce6f4d6928a5b3cd6a33ca41e941e37b"
847 |
848 | blob@0.0.4:
849 | version "0.0.4"
850 | resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.4.tgz#bcf13052ca54463f30f9fc7e95b9a47630a94921"
851 |
852 | block-stream@*:
853 | version "0.0.9"
854 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
855 | dependencies:
856 | inherits "~2.0.0"
857 |
858 | boom@2.x.x:
859 | version "2.10.1"
860 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
861 | dependencies:
862 | hoek "2.x.x"
863 |
864 | brace-expansion@^1.1.7:
865 | version "1.1.8"
866 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
867 | dependencies:
868 | balanced-match "^1.0.0"
869 | concat-map "0.0.1"
870 |
871 | braces@^1.8.2:
872 | version "1.8.5"
873 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
874 | dependencies:
875 | expand-range "^1.8.1"
876 | preserve "^0.2.0"
877 | repeat-element "^1.1.2"
878 |
879 | browser-sync-client@2.5.1:
880 | version "2.5.1"
881 | resolved "https://registry.yarnpkg.com/browser-sync-client/-/browser-sync-client-2.5.1.tgz#ec1ad69a49c2e2d4b645b18b1c06c29b3d9af8eb"
882 | dependencies:
883 | etag "^1.7.0"
884 | fresh "^0.3.0"
885 |
886 | browser-sync-ui@0.6.3:
887 | version "0.6.3"
888 | resolved "https://registry.yarnpkg.com/browser-sync-ui/-/browser-sync-ui-0.6.3.tgz#640a537c180689303d5be92bc476b9ebc441c0bc"
889 | dependencies:
890 | async-each-series "0.1.1"
891 | connect-history-api-fallback "^1.1.0"
892 | immutable "^3.7.6"
893 | server-destroy "1.0.1"
894 | stream-throttle "^0.1.3"
895 | weinre "^2.0.0-pre-I0Z7U9OV"
896 |
897 | browser-sync@^2.18.13:
898 | version "2.18.13"
899 | resolved "https://registry.yarnpkg.com/browser-sync/-/browser-sync-2.18.13.tgz#c28dc3eb3be67c97a907082b772a37f915c14d7d"
900 | dependencies:
901 | browser-sync-client "2.5.1"
902 | browser-sync-ui "0.6.3"
903 | bs-recipes "1.3.4"
904 | chokidar "1.7.0"
905 | connect "3.5.0"
906 | dev-ip "^1.0.1"
907 | easy-extender "2.3.2"
908 | eazy-logger "3.0.2"
909 | emitter-steward "^1.0.0"
910 | fs-extra "3.0.1"
911 | http-proxy "1.15.2"
912 | immutable "3.8.1"
913 | localtunnel "1.8.3"
914 | micromatch "2.3.11"
915 | opn "4.0.2"
916 | portscanner "2.1.1"
917 | qs "6.2.1"
918 | resp-modifier "6.0.2"
919 | rx "4.1.0"
920 | serve-index "1.8.0"
921 | serve-static "1.12.2"
922 | server-destroy "1.0.1"
923 | socket.io "1.6.0"
924 | socket.io-client "1.6.0"
925 | ua-parser-js "0.7.12"
926 | yargs "6.4.0"
927 |
928 | browserslist@^2.1.5:
929 | version "2.2.2"
930 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.2.2.tgz#e9b4618b8a01c193f9786beea09f6fd10dbe31c3"
931 | dependencies:
932 | caniuse-lite "^1.0.30000704"
933 | electron-to-chromium "^1.3.16"
934 |
935 | bs-recipes@1.3.4:
936 | version "1.3.4"
937 | resolved "https://registry.yarnpkg.com/bs-recipes/-/bs-recipes-1.3.4.tgz#0d2d4d48a718c8c044769fdc4f89592dc8b69585"
938 |
939 | builtin-modules@^1.0.0:
940 | version "1.1.1"
941 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
942 |
943 | caller-path@^0.1.0:
944 | version "0.1.0"
945 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
946 | dependencies:
947 | callsites "^0.2.0"
948 |
949 | callsite@1.0.0:
950 | version "1.0.0"
951 | resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20"
952 |
953 | callsites@^0.2.0:
954 | version "0.2.0"
955 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
956 |
957 | camelcase@^1.0.2, camelcase@^1.2.1:
958 | version "1.2.1"
959 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
960 |
961 | camelcase@^3.0.0:
962 | version "3.0.0"
963 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
964 |
965 | camelcase@^4.1.0:
966 | version "4.1.0"
967 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
968 |
969 | caniuse-lite@^1.0.30000697, caniuse-lite@^1.0.30000704:
970 | version "1.0.30000708"
971 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000708.tgz#71dbf388c57f379b1bb66c89a890edc04c2509b6"
972 |
973 | caseless@~0.12.0:
974 | version "0.12.0"
975 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
976 |
977 | center-align@^0.1.1:
978 | version "0.1.3"
979 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
980 | dependencies:
981 | align-text "^0.1.3"
982 | lazy-cache "^1.0.3"
983 |
984 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
985 | version "1.1.3"
986 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
987 | dependencies:
988 | ansi-styles "^2.2.1"
989 | escape-string-regexp "^1.0.2"
990 | has-ansi "^2.0.0"
991 | strip-ansi "^3.0.0"
992 | supports-color "^2.0.0"
993 |
994 | chalk@^2.0.0, chalk@^2.0.1:
995 | version "2.0.1"
996 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.0.1.tgz#dbec49436d2ae15f536114e76d14656cdbc0f44d"
997 | dependencies:
998 | ansi-styles "^3.1.0"
999 | escape-string-regexp "^1.0.5"
1000 | supports-color "^4.0.0"
1001 |
1002 | character-parser@^2.1.1:
1003 | version "2.2.0"
1004 | resolved "https://registry.yarnpkg.com/character-parser/-/character-parser-2.2.0.tgz#c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0"
1005 | dependencies:
1006 | is-regex "^1.0.3"
1007 |
1008 | chokidar@1.7.0, chokidar@^1.6.1:
1009 | version "1.7.0"
1010 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
1011 | dependencies:
1012 | anymatch "^1.3.0"
1013 | async-each "^1.0.0"
1014 | glob-parent "^2.0.0"
1015 | inherits "^2.0.1"
1016 | is-binary-path "^1.0.0"
1017 | is-glob "^2.0.0"
1018 | path-is-absolute "^1.0.0"
1019 | readdirp "^2.0.0"
1020 | optionalDependencies:
1021 | fsevents "^1.0.0"
1022 |
1023 | circular-json@^0.3.1:
1024 | version "0.3.3"
1025 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
1026 |
1027 | clean-css-cli@^4.1.6:
1028 | version "4.1.6"
1029 | resolved "https://registry.yarnpkg.com/clean-css-cli/-/clean-css-cli-4.1.6.tgz#3ef2a2746b074f55ee0539228710a70db7a78389"
1030 | dependencies:
1031 | clean-css "^4.1.5"
1032 | commander "2.x"
1033 | glob "7.x"
1034 |
1035 | clean-css@^3.3.0:
1036 | version "3.4.28"
1037 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-3.4.28.tgz#bf1945e82fc808f55695e6ddeaec01400efd03ff"
1038 | dependencies:
1039 | commander "2.8.x"
1040 | source-map "0.4.x"
1041 |
1042 | clean-css@^4.1.5:
1043 | version "4.1.7"
1044 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.1.7.tgz#b9aea4f85679889cf3eae8b40349ec4ebdfdd032"
1045 | dependencies:
1046 | source-map "0.5.x"
1047 |
1048 | cli-cursor@^2.1.0:
1049 | version "2.1.0"
1050 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
1051 | dependencies:
1052 | restore-cursor "^2.0.0"
1053 |
1054 | cli-spinners@^1.0.0:
1055 | version "1.0.0"
1056 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.0.tgz#ef987ed3d48391ac3dab9180b406a742180d6e6a"
1057 |
1058 | cli-width@^2.0.0:
1059 | version "2.1.0"
1060 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a"
1061 |
1062 | cliui@^2.1.0:
1063 | version "2.1.0"
1064 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
1065 | dependencies:
1066 | center-align "^0.1.1"
1067 | right-align "^0.1.1"
1068 | wordwrap "0.0.2"
1069 |
1070 | cliui@^3.0.3, cliui@^3.2.0:
1071 | version "3.2.0"
1072 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
1073 | dependencies:
1074 | string-width "^1.0.1"
1075 | strip-ansi "^3.0.1"
1076 | wrap-ansi "^2.0.0"
1077 |
1078 | co@^4.6.0:
1079 | version "4.6.0"
1080 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
1081 |
1082 | code-point-at@^1.0.0:
1083 | version "1.1.0"
1084 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
1085 |
1086 | color-convert@^1.9.0:
1087 | version "1.9.0"
1088 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a"
1089 | dependencies:
1090 | color-name "^1.1.1"
1091 |
1092 | color-name@^1.1.1:
1093 | version "1.1.3"
1094 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
1095 |
1096 | combined-stream@^1.0.5, combined-stream@~1.0.5:
1097 | version "1.0.5"
1098 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
1099 | dependencies:
1100 | delayed-stream "~1.0.0"
1101 |
1102 | commander@2.8.x:
1103 | version "2.8.1"
1104 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4"
1105 | dependencies:
1106 | graceful-readlink ">= 1.0.0"
1107 |
1108 | commander@2.9.0:
1109 | version "2.9.0"
1110 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4"
1111 | dependencies:
1112 | graceful-readlink ">= 1.0.0"
1113 |
1114 | commander@2.x, commander@^2.2.0, commander@^2.8.1, commander@~2.11.0:
1115 | version "2.11.0"
1116 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563"
1117 |
1118 | component-bind@1.0.0:
1119 | version "1.0.0"
1120 | resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1"
1121 |
1122 | component-emitter@1.1.2:
1123 | version "1.1.2"
1124 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.1.2.tgz#296594f2753daa63996d2af08d15a95116c9aec3"
1125 |
1126 | component-emitter@1.2.1:
1127 | version "1.2.1"
1128 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
1129 |
1130 | component-inherit@0.0.3:
1131 | version "0.0.3"
1132 | resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143"
1133 |
1134 | concat-map@0.0.1:
1135 | version "0.0.1"
1136 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1137 |
1138 | concat-stream@^1.6.0:
1139 | version "1.6.0"
1140 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
1141 | dependencies:
1142 | inherits "^2.0.3"
1143 | readable-stream "^2.2.2"
1144 | typedarray "^0.0.6"
1145 |
1146 | connect-history-api-fallback@^1.1.0:
1147 | version "1.3.0"
1148 | resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169"
1149 |
1150 | connect@1.x:
1151 | version "1.9.2"
1152 | resolved "https://registry.yarnpkg.com/connect/-/connect-1.9.2.tgz#42880a22e9438ae59a8add74e437f58ae8e52807"
1153 | dependencies:
1154 | formidable "1.0.x"
1155 | mime ">= 0.0.1"
1156 | qs ">= 0.4.0"
1157 |
1158 | connect@3.5.0:
1159 | version "3.5.0"
1160 | resolved "https://registry.yarnpkg.com/connect/-/connect-3.5.0.tgz#b357525a0b4c1f50599cd983e1d9efeea9677198"
1161 | dependencies:
1162 | debug "~2.2.0"
1163 | finalhandler "0.5.0"
1164 | parseurl "~1.3.1"
1165 | utils-merge "1.0.0"
1166 |
1167 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
1168 | version "1.1.0"
1169 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
1170 |
1171 | constantinople@^3.0.1:
1172 | version "3.1.0"
1173 | resolved "https://registry.yarnpkg.com/constantinople/-/constantinople-3.1.0.tgz#7569caa8aa3f8d5935d62e1fa96f9f702cd81c79"
1174 | dependencies:
1175 | acorn "^3.1.0"
1176 | is-expression "^2.0.1"
1177 |
1178 | convert-source-map@^1.1.0:
1179 | version "1.5.0"
1180 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
1181 |
1182 | cookie@0.3.1:
1183 | version "0.3.1"
1184 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
1185 |
1186 | core-js@^2.4.0:
1187 | version "2.4.1"
1188 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
1189 |
1190 | core-util-is@~1.0.0:
1191 | version "1.0.2"
1192 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1193 |
1194 | cosmiconfig@^2.1.0, cosmiconfig@^2.1.1:
1195 | version "2.2.2"
1196 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892"
1197 | dependencies:
1198 | is-directory "^0.3.1"
1199 | js-yaml "^3.4.3"
1200 | minimist "^1.2.0"
1201 | object-assign "^4.1.0"
1202 | os-homedir "^1.0.1"
1203 | parse-json "^2.2.0"
1204 | require-from-string "^1.1.0"
1205 |
1206 | cross-spawn@^5.0.1, cross-spawn@^5.1.0:
1207 | version "5.1.0"
1208 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
1209 | dependencies:
1210 | lru-cache "^4.0.1"
1211 | shebang-command "^1.2.0"
1212 | which "^1.2.9"
1213 |
1214 | cryptiles@2.x.x:
1215 | version "2.0.5"
1216 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
1217 | dependencies:
1218 | boom "2.x.x"
1219 |
1220 | css-parse@1.7.x:
1221 | version "1.7.0"
1222 | resolved "https://registry.yarnpkg.com/css-parse/-/css-parse-1.7.0.tgz#321f6cf73782a6ff751111390fc05e2c657d8c9b"
1223 |
1224 | dashdash@^1.12.0:
1225 | version "1.14.1"
1226 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
1227 | dependencies:
1228 | assert-plus "^1.0.0"
1229 |
1230 | debug@*, debug@2.6.8, debug@^2.1.1, debug@^2.2.0, debug@^2.6.8:
1231 | version "2.6.8"
1232 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc"
1233 | dependencies:
1234 | ms "2.0.0"
1235 |
1236 | debug@2.2.0, debug@~2.2.0:
1237 | version "2.2.0"
1238 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
1239 | dependencies:
1240 | ms "0.7.1"
1241 |
1242 | debug@2.3.3:
1243 | version "2.3.3"
1244 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.3.tgz#40c453e67e6e13c901ddec317af8986cda9eff8c"
1245 | dependencies:
1246 | ms "0.7.2"
1247 |
1248 | debug@2.6.4:
1249 | version "2.6.4"
1250 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.4.tgz#7586a9b3c39741c0282ae33445c4e8ac74734fe0"
1251 | dependencies:
1252 | ms "0.7.3"
1253 |
1254 | decamelize@^1.0.0, decamelize@^1.1.1:
1255 | version "1.2.0"
1256 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1257 |
1258 | deep-extend@~0.4.0:
1259 | version "0.4.2"
1260 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
1261 |
1262 | deep-is@~0.1.3:
1263 | version "0.1.3"
1264 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
1265 |
1266 | del@^2.0.2:
1267 | version "2.2.2"
1268 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
1269 | dependencies:
1270 | globby "^5.0.0"
1271 | is-path-cwd "^1.0.0"
1272 | is-path-in-cwd "^1.0.0"
1273 | object-assign "^4.0.1"
1274 | pify "^2.0.0"
1275 | pinkie-promise "^2.0.0"
1276 | rimraf "^2.2.8"
1277 |
1278 | delayed-stream@~1.0.0:
1279 | version "1.0.0"
1280 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1281 |
1282 | delegates@^1.0.0:
1283 | version "1.0.0"
1284 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1285 |
1286 | depd@1.1.0:
1287 | version "1.1.0"
1288 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3"
1289 |
1290 | depd@~1.1.0:
1291 | version "1.1.1"
1292 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359"
1293 |
1294 | dependency-graph@^0.5.0:
1295 | version "0.5.0"
1296 | resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.5.0.tgz#71edf7945dbba86c1b19ac982b6afb6476b56dd5"
1297 |
1298 | destroy@~1.0.4:
1299 | version "1.0.4"
1300 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
1301 |
1302 | detect-indent@^4.0.0:
1303 | version "4.0.0"
1304 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1305 | dependencies:
1306 | repeating "^2.0.0"
1307 |
1308 | dev-ip@^1.0.1:
1309 | version "1.0.1"
1310 | resolved "https://registry.yarnpkg.com/dev-ip/-/dev-ip-1.0.1.tgz#a76a3ed1855be7a012bb8ac16cb80f3c00dc28f0"
1311 |
1312 | doctrine@^2.0.0:
1313 | version "2.0.0"
1314 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63"
1315 | dependencies:
1316 | esutils "^2.0.2"
1317 | isarray "^1.0.0"
1318 |
1319 | doctypes@^1.1.0:
1320 | version "1.1.0"
1321 | resolved "https://registry.yarnpkg.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9"
1322 |
1323 | easy-extender@2.3.2:
1324 | version "2.3.2"
1325 | resolved "https://registry.yarnpkg.com/easy-extender/-/easy-extender-2.3.2.tgz#3d3248febe2b159607316d8f9cf491c16648221d"
1326 | dependencies:
1327 | lodash "^3.10.1"
1328 |
1329 | eazy-logger@3.0.2:
1330 | version "3.0.2"
1331 | resolved "https://registry.yarnpkg.com/eazy-logger/-/eazy-logger-3.0.2.tgz#a325aa5e53d13a2225889b2ac4113b2b9636f4fc"
1332 | dependencies:
1333 | tfunk "^3.0.1"
1334 |
1335 | ecc-jsbn@~0.1.1:
1336 | version "0.1.1"
1337 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
1338 | dependencies:
1339 | jsbn "~0.1.0"
1340 |
1341 | ee-first@1.1.1:
1342 | version "1.1.1"
1343 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
1344 |
1345 | electron-to-chromium@^1.3.16:
1346 | version "1.3.16"
1347 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.16.tgz#d0e026735754770901ae301a21664cba45d92f7d"
1348 |
1349 | emitter-steward@^1.0.0:
1350 | version "1.0.0"
1351 | resolved "https://registry.yarnpkg.com/emitter-steward/-/emitter-steward-1.0.0.tgz#f3411ade9758a7565df848b2da0cbbd1b46cbd64"
1352 |
1353 | encodeurl@~1.0.1:
1354 | version "1.0.1"
1355 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20"
1356 |
1357 | engine.io-client@1.8.0:
1358 | version "1.8.0"
1359 | resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-1.8.0.tgz#7b730e4127414087596d9be3c88d2bc5fdb6cf5c"
1360 | dependencies:
1361 | component-emitter "1.2.1"
1362 | component-inherit "0.0.3"
1363 | debug "2.3.3"
1364 | engine.io-parser "1.3.1"
1365 | has-cors "1.1.0"
1366 | indexof "0.0.1"
1367 | parsejson "0.0.3"
1368 | parseqs "0.0.5"
1369 | parseuri "0.0.5"
1370 | ws "1.1.1"
1371 | xmlhttprequest-ssl "1.5.3"
1372 | yeast "0.1.2"
1373 |
1374 | engine.io-parser@1.3.1:
1375 | version "1.3.1"
1376 | resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-1.3.1.tgz#9554f1ae33107d6fbd170ca5466d2f833f6a07cf"
1377 | dependencies:
1378 | after "0.8.1"
1379 | arraybuffer.slice "0.0.6"
1380 | base64-arraybuffer "0.1.5"
1381 | blob "0.0.4"
1382 | has-binary "0.1.6"
1383 | wtf-8 "1.0.0"
1384 |
1385 | engine.io@1.8.0:
1386 | version "1.8.0"
1387 | resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-1.8.0.tgz#3eeb5f264cb75dbbec1baaea26d61f5a4eace2aa"
1388 | dependencies:
1389 | accepts "1.3.3"
1390 | base64id "0.1.0"
1391 | cookie "0.3.1"
1392 | debug "2.3.3"
1393 | engine.io-parser "1.3.1"
1394 | ws "1.1.1"
1395 |
1396 | error-ex@^1.2.0:
1397 | version "1.3.1"
1398 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
1399 | dependencies:
1400 | is-arrayish "^0.2.1"
1401 |
1402 | escape-html@~1.0.3:
1403 | version "1.0.3"
1404 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
1405 |
1406 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1407 | version "1.0.5"
1408 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1409 |
1410 | eslint-config-prettier@^2.3.0:
1411 | version "2.3.0"
1412 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.3.0.tgz#b75b1eabea0c8b97b34403647ee25db349b9d8a0"
1413 | dependencies:
1414 | get-stdin "^5.0.1"
1415 |
1416 | eslint-plugin-flowtype@^2.35.0:
1417 | version "2.35.0"
1418 | resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.35.0.tgz#d17494f0ae8b727c632d8b9d4b4a848e7e0c04af"
1419 | dependencies:
1420 | lodash "^4.15.0"
1421 |
1422 | eslint-plugin-prettier@^2.1.2:
1423 | version "2.1.2"
1424 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.1.2.tgz#4b90f4ee7f92bfbe2e926017e1ca40eb628965ea"
1425 | dependencies:
1426 | fast-diff "^1.1.1"
1427 | jest-docblock "^20.0.1"
1428 |
1429 | eslint-scope@^3.7.1:
1430 | version "3.7.1"
1431 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
1432 | dependencies:
1433 | esrecurse "^4.1.0"
1434 | estraverse "^4.1.1"
1435 |
1436 | eslint@^4.3.0:
1437 | version "4.3.0"
1438 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.3.0.tgz#fcd7c96376bbf34c85ee67ed0012a299642b108f"
1439 | dependencies:
1440 | ajv "^5.2.0"
1441 | babel-code-frame "^6.22.0"
1442 | chalk "^1.1.3"
1443 | concat-stream "^1.6.0"
1444 | cross-spawn "^5.1.0"
1445 | debug "^2.6.8"
1446 | doctrine "^2.0.0"
1447 | eslint-scope "^3.7.1"
1448 | espree "^3.4.3"
1449 | esquery "^1.0.0"
1450 | estraverse "^4.2.0"
1451 | esutils "^2.0.2"
1452 | file-entry-cache "^2.0.0"
1453 | functional-red-black-tree "^1.0.1"
1454 | glob "^7.1.2"
1455 | globals "^9.17.0"
1456 | ignore "^3.3.3"
1457 | imurmurhash "^0.1.4"
1458 | inquirer "^3.0.6"
1459 | is-resolvable "^1.0.0"
1460 | js-yaml "^3.8.4"
1461 | json-stable-stringify "^1.0.1"
1462 | levn "^0.3.0"
1463 | lodash "^4.17.4"
1464 | minimatch "^3.0.2"
1465 | mkdirp "^0.5.1"
1466 | natural-compare "^1.4.0"
1467 | optionator "^0.8.2"
1468 | path-is-inside "^1.0.2"
1469 | pluralize "^4.0.0"
1470 | progress "^2.0.0"
1471 | require-uncached "^1.0.3"
1472 | semver "^5.3.0"
1473 | strip-json-comments "~2.0.1"
1474 | table "^4.0.1"
1475 | text-table "~0.2.0"
1476 |
1477 | espree@^3.4.3:
1478 | version "3.4.3"
1479 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374"
1480 | dependencies:
1481 | acorn "^5.0.1"
1482 | acorn-jsx "^3.0.0"
1483 |
1484 | esprima@^4.0.0:
1485 | version "4.0.0"
1486 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
1487 |
1488 | esquery@^1.0.0:
1489 | version "1.0.0"
1490 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa"
1491 | dependencies:
1492 | estraverse "^4.0.0"
1493 |
1494 | esrecurse@^4.1.0:
1495 | version "4.2.0"
1496 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163"
1497 | dependencies:
1498 | estraverse "^4.1.0"
1499 | object-assign "^4.0.1"
1500 |
1501 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0:
1502 | version "4.2.0"
1503 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
1504 |
1505 | esutils@^2.0.2:
1506 | version "2.0.2"
1507 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1508 |
1509 | etag@^1.7.0, etag@~1.8.0:
1510 | version "1.8.0"
1511 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.0.tgz#6f631aef336d6c46362b51764044ce216be3c051"
1512 |
1513 | eventemitter3@1.x.x:
1514 | version "1.2.0"
1515 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508"
1516 |
1517 | execa@^0.7.0:
1518 | version "0.7.0"
1519 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
1520 | dependencies:
1521 | cross-spawn "^5.0.1"
1522 | get-stream "^3.0.0"
1523 | is-stream "^1.1.0"
1524 | npm-run-path "^2.0.0"
1525 | p-finally "^1.0.0"
1526 | signal-exit "^3.0.0"
1527 | strip-eof "^1.0.0"
1528 |
1529 | expand-brackets@^0.1.4:
1530 | version "0.1.5"
1531 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1532 | dependencies:
1533 | is-posix-bracket "^0.1.0"
1534 |
1535 | expand-range@^1.8.1:
1536 | version "1.8.2"
1537 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1538 | dependencies:
1539 | fill-range "^2.1.0"
1540 |
1541 | express@2.5.x:
1542 | version "2.5.11"
1543 | resolved "https://registry.yarnpkg.com/express/-/express-2.5.11.tgz#4ce8ea1f3635e69e49f0ebb497b6a4b0a51ce6f0"
1544 | dependencies:
1545 | connect "1.x"
1546 | mime "1.2.4"
1547 | mkdirp "0.3.0"
1548 | qs "0.4.x"
1549 |
1550 | extend@~3.0.0:
1551 | version "3.0.1"
1552 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
1553 |
1554 | external-editor@^2.0.4:
1555 | version "2.0.4"
1556 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972"
1557 | dependencies:
1558 | iconv-lite "^0.4.17"
1559 | jschardet "^1.4.2"
1560 | tmp "^0.0.31"
1561 |
1562 | extglob@^0.3.1:
1563 | version "0.3.2"
1564 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1565 | dependencies:
1566 | is-extglob "^1.0.0"
1567 |
1568 | extsprintf@1.0.2:
1569 | version "1.0.2"
1570 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550"
1571 |
1572 | fast-deep-equal@^1.0.0:
1573 | version "1.0.0"
1574 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
1575 |
1576 | fast-diff@^1.1.1:
1577 | version "1.1.1"
1578 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.1.tgz#0aea0e4e605b6a2189f0e936d4b7fbaf1b7cfd9b"
1579 |
1580 | fast-levenshtein@~2.0.4:
1581 | version "2.0.6"
1582 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1583 |
1584 | figures@^2.0.0:
1585 | version "2.0.0"
1586 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
1587 | dependencies:
1588 | escape-string-regexp "^1.0.5"
1589 |
1590 | file-entry-cache@^2.0.0:
1591 | version "2.0.0"
1592 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
1593 | dependencies:
1594 | flat-cache "^1.2.1"
1595 | object-assign "^4.0.1"
1596 |
1597 | filename-regex@^2.0.0:
1598 | version "2.0.1"
1599 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1600 |
1601 | fill-range@^2.1.0:
1602 | version "2.2.3"
1603 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1604 | dependencies:
1605 | is-number "^2.1.0"
1606 | isobject "^2.0.0"
1607 | randomatic "^1.1.3"
1608 | repeat-element "^1.1.2"
1609 | repeat-string "^1.5.2"
1610 |
1611 | finalhandler@0.5.0:
1612 | version "0.5.0"
1613 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.5.0.tgz#e9508abece9b6dba871a6942a1d7911b91911ac7"
1614 | dependencies:
1615 | debug "~2.2.0"
1616 | escape-html "~1.0.3"
1617 | on-finished "~2.3.0"
1618 | statuses "~1.3.0"
1619 | unpipe "~1.0.0"
1620 |
1621 | find-up@^1.0.0:
1622 | version "1.1.2"
1623 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1624 | dependencies:
1625 | path-exists "^2.0.0"
1626 | pinkie-promise "^2.0.0"
1627 |
1628 | find-up@^2.0.0:
1629 | version "2.1.0"
1630 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1631 | dependencies:
1632 | locate-path "^2.0.0"
1633 |
1634 | flat-cache@^1.2.1:
1635 | version "1.2.2"
1636 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96"
1637 | dependencies:
1638 | circular-json "^0.3.1"
1639 | del "^2.0.2"
1640 | graceful-fs "^4.1.2"
1641 | write "^0.2.1"
1642 |
1643 | flow-bin@^0.52.0:
1644 | version "0.52.0"
1645 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.52.0.tgz#b6d9abe8bcd1ee5c62df386451a4e2553cadc3a3"
1646 |
1647 | for-in@^1.0.1:
1648 | version "1.0.2"
1649 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1650 |
1651 | for-own@^0.1.4:
1652 | version "0.1.5"
1653 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1654 | dependencies:
1655 | for-in "^1.0.1"
1656 |
1657 | forever-agent@~0.6.1:
1658 | version "0.6.1"
1659 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1660 |
1661 | form-data@~2.1.1:
1662 | version "2.1.4"
1663 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
1664 | dependencies:
1665 | asynckit "^0.4.0"
1666 | combined-stream "^1.0.5"
1667 | mime-types "^2.1.12"
1668 |
1669 | formidable@1.0.x:
1670 | version "1.0.17"
1671 | resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.0.17.tgz#ef5491490f9433b705faa77249c99029ae348559"
1672 |
1673 | fresh@0.5.0:
1674 | version "0.5.0"
1675 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e"
1676 |
1677 | fresh@^0.3.0:
1678 | version "0.3.0"
1679 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f"
1680 |
1681 | fs-extra@3.0.1, fs-extra@^3.0.1:
1682 | version "3.0.1"
1683 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291"
1684 | dependencies:
1685 | graceful-fs "^4.1.2"
1686 | jsonfile "^3.0.0"
1687 | universalify "^0.1.0"
1688 |
1689 | fs-readdir-recursive@^1.0.0:
1690 | version "1.0.0"
1691 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560"
1692 |
1693 | fs.realpath@^1.0.0:
1694 | version "1.0.0"
1695 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1696 |
1697 | fsevents@^1.0.0:
1698 | version "1.1.2"
1699 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4"
1700 | dependencies:
1701 | nan "^2.3.0"
1702 | node-pre-gyp "^0.6.36"
1703 |
1704 | fstream-ignore@^1.0.5:
1705 | version "1.0.5"
1706 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1707 | dependencies:
1708 | fstream "^1.0.0"
1709 | inherits "2"
1710 | minimatch "^3.0.0"
1711 |
1712 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
1713 | version "1.0.11"
1714 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
1715 | dependencies:
1716 | graceful-fs "^4.1.2"
1717 | inherits "~2.0.0"
1718 | mkdirp ">=0.5 0"
1719 | rimraf "2"
1720 |
1721 | function-bind@^1.0.2:
1722 | version "1.1.0"
1723 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771"
1724 |
1725 | functional-red-black-tree@^1.0.1:
1726 | version "1.0.1"
1727 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
1728 |
1729 | gauge@~2.7.3:
1730 | version "2.7.4"
1731 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1732 | dependencies:
1733 | aproba "^1.0.3"
1734 | console-control-strings "^1.0.0"
1735 | has-unicode "^2.0.0"
1736 | object-assign "^4.1.0"
1737 | signal-exit "^3.0.0"
1738 | string-width "^1.0.1"
1739 | strip-ansi "^3.0.1"
1740 | wide-align "^1.1.0"
1741 |
1742 | get-caller-file@^1.0.1:
1743 | version "1.0.2"
1744 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1745 |
1746 | get-stdin@^5.0.1:
1747 | version "5.0.1"
1748 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398"
1749 |
1750 | get-stream@^3.0.0:
1751 | version "3.0.0"
1752 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
1753 |
1754 | getpass@^0.1.1:
1755 | version "0.1.7"
1756 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
1757 | dependencies:
1758 | assert-plus "^1.0.0"
1759 |
1760 | gh-pages@^1.0.0:
1761 | version "1.0.0"
1762 | resolved "https://registry.yarnpkg.com/gh-pages/-/gh-pages-1.0.0.tgz#4a46f4c25439f7a2b7e6835504d4a49e949f04ca"
1763 | dependencies:
1764 | async "2.1.4"
1765 | base64url "^2.0.0"
1766 | commander "2.9.0"
1767 | fs-extra "^3.0.1"
1768 | globby "^6.1.0"
1769 | graceful-fs "4.1.11"
1770 | rimraf "^2.5.4"
1771 |
1772 | glob-base@^0.3.0:
1773 | version "0.3.0"
1774 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1775 | dependencies:
1776 | glob-parent "^2.0.0"
1777 | is-glob "^2.0.0"
1778 |
1779 | glob-parent@^2.0.0:
1780 | version "2.0.0"
1781 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1782 | dependencies:
1783 | is-glob "^2.0.0"
1784 |
1785 | glob@7.0.x:
1786 | version "7.0.6"
1787 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a"
1788 | dependencies:
1789 | fs.realpath "^1.0.0"
1790 | inflight "^1.0.4"
1791 | inherits "2"
1792 | minimatch "^3.0.2"
1793 | once "^1.3.0"
1794 | path-is-absolute "^1.0.0"
1795 |
1796 | glob@7.x, glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.2:
1797 | version "7.1.2"
1798 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1799 | dependencies:
1800 | fs.realpath "^1.0.0"
1801 | inflight "^1.0.4"
1802 | inherits "2"
1803 | minimatch "^3.0.4"
1804 | once "^1.3.0"
1805 | path-is-absolute "^1.0.0"
1806 |
1807 | globals@^9.0.0, globals@^9.17.0:
1808 | version "9.18.0"
1809 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
1810 |
1811 | globby@^5.0.0:
1812 | version "5.0.0"
1813 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
1814 | dependencies:
1815 | array-union "^1.0.1"
1816 | arrify "^1.0.0"
1817 | glob "^7.0.3"
1818 | object-assign "^4.0.1"
1819 | pify "^2.0.0"
1820 | pinkie-promise "^2.0.0"
1821 |
1822 | globby@^6.1.0:
1823 | version "6.1.0"
1824 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
1825 | dependencies:
1826 | array-union "^1.0.1"
1827 | glob "^7.0.3"
1828 | object-assign "^4.0.1"
1829 | pify "^2.0.0"
1830 | pinkie-promise "^2.0.0"
1831 |
1832 | graceful-fs@4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6:
1833 | version "4.1.11"
1834 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1835 |
1836 | "graceful-readlink@>= 1.0.0":
1837 | version "1.0.1"
1838 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725"
1839 |
1840 | har-schema@^1.0.5:
1841 | version "1.0.5"
1842 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
1843 |
1844 | har-validator@~4.2.1:
1845 | version "4.2.1"
1846 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
1847 | dependencies:
1848 | ajv "^4.9.1"
1849 | har-schema "^1.0.5"
1850 |
1851 | has-ansi@^2.0.0:
1852 | version "2.0.0"
1853 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1854 | dependencies:
1855 | ansi-regex "^2.0.0"
1856 |
1857 | has-binary@0.1.6:
1858 | version "0.1.6"
1859 | resolved "https://registry.yarnpkg.com/has-binary/-/has-binary-0.1.6.tgz#25326f39cfa4f616ad8787894e3af2cfbc7b6e10"
1860 | dependencies:
1861 | isarray "0.0.1"
1862 |
1863 | has-binary@0.1.7:
1864 | version "0.1.7"
1865 | resolved "https://registry.yarnpkg.com/has-binary/-/has-binary-0.1.7.tgz#68e61eb16210c9545a0a5cce06a873912fe1e68c"
1866 | dependencies:
1867 | isarray "0.0.1"
1868 |
1869 | has-cors@1.1.0:
1870 | version "1.1.0"
1871 | resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39"
1872 |
1873 | has-flag@^2.0.0:
1874 | version "2.0.0"
1875 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
1876 |
1877 | has-unicode@^2.0.0:
1878 | version "2.0.1"
1879 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1880 |
1881 | has@^1.0.1:
1882 | version "1.0.1"
1883 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
1884 | dependencies:
1885 | function-bind "^1.0.2"
1886 |
1887 | hawk@~3.1.3:
1888 | version "3.1.3"
1889 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1890 | dependencies:
1891 | boom "2.x.x"
1892 | cryptiles "2.x.x"
1893 | hoek "2.x.x"
1894 | sntp "1.x.x"
1895 |
1896 | hoek@2.x.x:
1897 | version "2.16.3"
1898 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1899 |
1900 | home-or-tmp@^2.0.0:
1901 | version "2.0.0"
1902 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1903 | dependencies:
1904 | os-homedir "^1.0.0"
1905 | os-tmpdir "^1.0.1"
1906 |
1907 | hosted-git-info@^2.1.4:
1908 | version "2.5.0"
1909 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
1910 |
1911 | http-errors@~1.5.0:
1912 | version "1.5.1"
1913 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750"
1914 | dependencies:
1915 | inherits "2.0.3"
1916 | setprototypeof "1.0.2"
1917 | statuses ">= 1.3.1 < 2"
1918 |
1919 | http-errors@~1.6.1:
1920 | version "1.6.1"
1921 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.1.tgz#5f8b8ed98aca545656bf572997387f904a722257"
1922 | dependencies:
1923 | depd "1.1.0"
1924 | inherits "2.0.3"
1925 | setprototypeof "1.0.3"
1926 | statuses ">= 1.3.1 < 2"
1927 |
1928 | http-proxy@1.15.2:
1929 | version "1.15.2"
1930 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.15.2.tgz#642fdcaffe52d3448d2bda3b0079e9409064da31"
1931 | dependencies:
1932 | eventemitter3 "1.x.x"
1933 | requires-port "1.x.x"
1934 |
1935 | http-signature@~1.1.0:
1936 | version "1.1.1"
1937 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1938 | dependencies:
1939 | assert-plus "^0.2.0"
1940 | jsprim "^1.2.2"
1941 | sshpk "^1.7.0"
1942 |
1943 | iconv-lite@^0.4.17:
1944 | version "0.4.18"
1945 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2"
1946 |
1947 | ignore@^3.3.3:
1948 | version "3.3.3"
1949 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d"
1950 |
1951 | immutable@3.8.1, immutable@^3.7.6:
1952 | version "3.8.1"
1953 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.1.tgz#200807f11ab0f72710ea485542de088075f68cd2"
1954 |
1955 | imurmurhash@^0.1.4:
1956 | version "0.1.4"
1957 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1958 |
1959 | indexof@0.0.1:
1960 | version "0.0.1"
1961 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
1962 |
1963 | inflight@^1.0.4:
1964 | version "1.0.6"
1965 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1966 | dependencies:
1967 | once "^1.3.0"
1968 | wrappy "1"
1969 |
1970 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3:
1971 | version "2.0.3"
1972 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1973 |
1974 | ini@~1.3.0:
1975 | version "1.3.4"
1976 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
1977 |
1978 | inquirer@^3.0.6:
1979 | version "3.2.1"
1980 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.1.tgz#06ceb0f540f45ca548c17d6840959878265fa175"
1981 | dependencies:
1982 | ansi-escapes "^2.0.0"
1983 | chalk "^2.0.0"
1984 | cli-cursor "^2.1.0"
1985 | cli-width "^2.0.0"
1986 | external-editor "^2.0.4"
1987 | figures "^2.0.0"
1988 | lodash "^4.3.0"
1989 | mute-stream "0.0.7"
1990 | run-async "^2.2.0"
1991 | rx-lite "^4.0.8"
1992 | rx-lite-aggregates "^4.0.8"
1993 | string-width "^2.1.0"
1994 | strip-ansi "^4.0.0"
1995 | through "^2.3.6"
1996 |
1997 | invariant@^2.2.0:
1998 | version "2.2.2"
1999 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
2000 | dependencies:
2001 | loose-envify "^1.0.0"
2002 |
2003 | invert-kv@^1.0.0:
2004 | version "1.0.0"
2005 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
2006 |
2007 | is-arrayish@^0.2.1:
2008 | version "0.2.1"
2009 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
2010 |
2011 | is-binary-path@^1.0.0:
2012 | version "1.0.1"
2013 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
2014 | dependencies:
2015 | binary-extensions "^1.0.0"
2016 |
2017 | is-buffer@^1.1.5:
2018 | version "1.1.5"
2019 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
2020 |
2021 | is-builtin-module@^1.0.0:
2022 | version "1.0.0"
2023 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
2024 | dependencies:
2025 | builtin-modules "^1.0.0"
2026 |
2027 | is-directory@^0.3.1:
2028 | version "0.3.1"
2029 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
2030 |
2031 | is-dotfile@^1.0.0:
2032 | version "1.0.3"
2033 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
2034 |
2035 | is-equal-shallow@^0.1.3:
2036 | version "0.1.3"
2037 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
2038 | dependencies:
2039 | is-primitive "^2.0.0"
2040 |
2041 | is-expression@^2.0.1:
2042 | version "2.1.0"
2043 | resolved "https://registry.yarnpkg.com/is-expression/-/is-expression-2.1.0.tgz#91be9d47debcfef077977e9722be6dcfb4465ef0"
2044 | dependencies:
2045 | acorn "~3.3.0"
2046 | object-assign "^4.0.1"
2047 |
2048 | is-expression@^3.0.0:
2049 | version "3.0.0"
2050 | resolved "https://registry.yarnpkg.com/is-expression/-/is-expression-3.0.0.tgz#39acaa6be7fd1f3471dc42c7416e61c24317ac9f"
2051 | dependencies:
2052 | acorn "~4.0.2"
2053 | object-assign "^4.0.1"
2054 |
2055 | is-extendable@^0.1.1:
2056 | version "0.1.1"
2057 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
2058 |
2059 | is-extglob@^1.0.0:
2060 | version "1.0.0"
2061 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
2062 |
2063 | is-finite@^1.0.0:
2064 | version "1.0.2"
2065 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
2066 | dependencies:
2067 | number-is-nan "^1.0.0"
2068 |
2069 | is-fullwidth-code-point@^1.0.0:
2070 | version "1.0.0"
2071 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
2072 | dependencies:
2073 | number-is-nan "^1.0.0"
2074 |
2075 | is-fullwidth-code-point@^2.0.0:
2076 | version "2.0.0"
2077 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
2078 |
2079 | is-glob@^2.0.0, is-glob@^2.0.1:
2080 | version "2.0.1"
2081 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
2082 | dependencies:
2083 | is-extglob "^1.0.0"
2084 |
2085 | is-number-like@^1.0.3:
2086 | version "1.0.8"
2087 | resolved "https://registry.yarnpkg.com/is-number-like/-/is-number-like-1.0.8.tgz#2e129620b50891042e44e9bbbb30593e75cfbbe3"
2088 | dependencies:
2089 | lodash.isfinite "^3.3.2"
2090 |
2091 | is-number@^2.1.0:
2092 | version "2.1.0"
2093 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
2094 | dependencies:
2095 | kind-of "^3.0.2"
2096 |
2097 | is-number@^3.0.0:
2098 | version "3.0.0"
2099 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
2100 | dependencies:
2101 | kind-of "^3.0.2"
2102 |
2103 | is-path-cwd@^1.0.0:
2104 | version "1.0.0"
2105 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
2106 |
2107 | is-path-in-cwd@^1.0.0:
2108 | version "1.0.0"
2109 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
2110 | dependencies:
2111 | is-path-inside "^1.0.0"
2112 |
2113 | is-path-inside@^1.0.0:
2114 | version "1.0.0"
2115 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f"
2116 | dependencies:
2117 | path-is-inside "^1.0.1"
2118 |
2119 | is-posix-bracket@^0.1.0:
2120 | version "0.1.1"
2121 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
2122 |
2123 | is-primitive@^2.0.0:
2124 | version "2.0.0"
2125 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
2126 |
2127 | is-promise@^2.0.0, is-promise@^2.1.0:
2128 | version "2.1.0"
2129 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
2130 |
2131 | is-regex@^1.0.3:
2132 | version "1.0.4"
2133 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
2134 | dependencies:
2135 | has "^1.0.1"
2136 |
2137 | is-resolvable@^1.0.0:
2138 | version "1.0.0"
2139 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62"
2140 | dependencies:
2141 | tryit "^1.0.1"
2142 |
2143 | is-stream@^1.1.0:
2144 | version "1.1.0"
2145 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
2146 |
2147 | is-typedarray@~1.0.0:
2148 | version "1.0.0"
2149 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
2150 |
2151 | is-utf8@^0.2.0:
2152 | version "0.2.1"
2153 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
2154 |
2155 | isarray@0.0.1:
2156 | version "0.0.1"
2157 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
2158 |
2159 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
2160 | version "1.0.0"
2161 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
2162 |
2163 | isexe@^2.0.0:
2164 | version "2.0.0"
2165 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
2166 |
2167 | isobject@^2.0.0:
2168 | version "2.1.0"
2169 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
2170 | dependencies:
2171 | isarray "1.0.0"
2172 |
2173 | isstream@~0.1.2:
2174 | version "0.1.2"
2175 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
2176 |
2177 | jest-docblock@^20.0.1:
2178 | version "20.0.3"
2179 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712"
2180 |
2181 | js-stringify@^1.0.1:
2182 | version "1.0.2"
2183 | resolved "https://registry.yarnpkg.com/js-stringify/-/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db"
2184 |
2185 | js-tokens@^3.0.0:
2186 | version "3.0.2"
2187 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
2188 |
2189 | js-yaml@^3.4.3, js-yaml@^3.8.4:
2190 | version "3.9.1"
2191 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.1.tgz#08775cebdfdd359209f0d2acd383c8f86a6904a0"
2192 | dependencies:
2193 | argparse "^1.0.7"
2194 | esprima "^4.0.0"
2195 |
2196 | jsbn@~0.1.0:
2197 | version "0.1.1"
2198 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
2199 |
2200 | jschardet@^1.4.2:
2201 | version "1.5.0"
2202 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.0.tgz#a61f310306a5a71188e1b1acd08add3cfbb08b1e"
2203 |
2204 | jsesc@^1.3.0:
2205 | version "1.3.0"
2206 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
2207 |
2208 | jsesc@~0.5.0:
2209 | version "0.5.0"
2210 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2211 |
2212 | json-schema-traverse@^0.3.0:
2213 | version "0.3.1"
2214 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
2215 |
2216 | json-schema@0.2.3:
2217 | version "0.2.3"
2218 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
2219 |
2220 | json-stable-stringify@^1.0.1:
2221 | version "1.0.1"
2222 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
2223 | dependencies:
2224 | jsonify "~0.0.0"
2225 |
2226 | json-stringify-safe@~5.0.1:
2227 | version "5.0.1"
2228 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
2229 |
2230 | json3@3.3.2:
2231 | version "3.3.2"
2232 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1"
2233 |
2234 | json5@^0.5.0:
2235 | version "0.5.1"
2236 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
2237 |
2238 | jsonfile@^3.0.0:
2239 | version "3.0.1"
2240 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-3.0.1.tgz#a5ecc6f65f53f662c4415c7675a0331d0992ec66"
2241 | optionalDependencies:
2242 | graceful-fs "^4.1.6"
2243 |
2244 | jsonify@~0.0.0:
2245 | version "0.0.0"
2246 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
2247 |
2248 | jsprim@^1.2.2:
2249 | version "1.4.0"
2250 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918"
2251 | dependencies:
2252 | assert-plus "1.0.0"
2253 | extsprintf "1.0.2"
2254 | json-schema "0.2.3"
2255 | verror "1.3.6"
2256 |
2257 | jstransformer@1.0.0:
2258 | version "1.0.0"
2259 | resolved "https://registry.yarnpkg.com/jstransformer/-/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3"
2260 | dependencies:
2261 | is-promise "^2.0.0"
2262 | promise "^7.0.1"
2263 |
2264 | kind-of@^3.0.2:
2265 | version "3.2.2"
2266 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
2267 | dependencies:
2268 | is-buffer "^1.1.5"
2269 |
2270 | kind-of@^4.0.0:
2271 | version "4.0.0"
2272 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
2273 | dependencies:
2274 | is-buffer "^1.1.5"
2275 |
2276 | lazy-cache@^1.0.3:
2277 | version "1.0.4"
2278 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
2279 |
2280 | lcid@^1.0.0:
2281 | version "1.0.0"
2282 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
2283 | dependencies:
2284 | invert-kv "^1.0.0"
2285 |
2286 | levn@^0.3.0, levn@~0.3.0:
2287 | version "0.3.0"
2288 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2289 | dependencies:
2290 | prelude-ls "~1.1.2"
2291 | type-check "~0.3.2"
2292 |
2293 | limiter@^1.0.5:
2294 | version "1.1.2"
2295 | resolved "https://registry.yarnpkg.com/limiter/-/limiter-1.1.2.tgz#229d8055891c8b11af9e0ee5200e8e09bb3dcbeb"
2296 |
2297 | load-json-file@^1.0.0:
2298 | version "1.1.0"
2299 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
2300 | dependencies:
2301 | graceful-fs "^4.1.2"
2302 | parse-json "^2.2.0"
2303 | pify "^2.0.0"
2304 | pinkie-promise "^2.0.0"
2305 | strip-bom "^2.0.0"
2306 |
2307 | load-json-file@^2.0.0:
2308 | version "2.0.0"
2309 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
2310 | dependencies:
2311 | graceful-fs "^4.1.2"
2312 | parse-json "^2.2.0"
2313 | pify "^2.0.0"
2314 | strip-bom "^3.0.0"
2315 |
2316 | localtunnel@1.8.3:
2317 | version "1.8.3"
2318 | resolved "https://registry.yarnpkg.com/localtunnel/-/localtunnel-1.8.3.tgz#dcc5922fd85651037d4bde24fd93248d0b24eb05"
2319 | dependencies:
2320 | debug "2.6.8"
2321 | openurl "1.1.1"
2322 | request "2.81.0"
2323 | yargs "3.29.0"
2324 |
2325 | locate-path@^2.0.0:
2326 | version "2.0.0"
2327 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
2328 | dependencies:
2329 | p-locate "^2.0.0"
2330 | path-exists "^3.0.0"
2331 |
2332 | lodash.isfinite@^3.3.2:
2333 | version "3.3.2"
2334 | resolved "https://registry.yarnpkg.com/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz#fb89b65a9a80281833f0b7478b3a5104f898ebb3"
2335 |
2336 | lodash@^3.10.1:
2337 | version "3.10.1"
2338 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6"
2339 |
2340 | lodash@^4.0.0, lodash@^4.1.0, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0:
2341 | version "4.17.4"
2342 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
2343 |
2344 | log-symbols@^1.0.2:
2345 | version "1.0.2"
2346 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18"
2347 | dependencies:
2348 | chalk "^1.0.0"
2349 |
2350 | longest@^1.0.1:
2351 | version "1.0.1"
2352 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
2353 |
2354 | loose-envify@^1.0.0:
2355 | version "1.3.1"
2356 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
2357 | dependencies:
2358 | js-tokens "^3.0.0"
2359 |
2360 | lru-cache@^4.0.1:
2361 | version "4.1.1"
2362 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
2363 | dependencies:
2364 | pseudomap "^1.0.2"
2365 | yallist "^2.1.2"
2366 |
2367 | mem@^1.1.0:
2368 | version "1.1.0"
2369 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
2370 | dependencies:
2371 | mimic-fn "^1.0.0"
2372 |
2373 | micromatch@2.3.11, micromatch@^2.1.5:
2374 | version "2.3.11"
2375 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2376 | dependencies:
2377 | arr-diff "^2.0.0"
2378 | array-unique "^0.2.1"
2379 | braces "^1.8.2"
2380 | expand-brackets "^0.1.4"
2381 | extglob "^0.3.1"
2382 | filename-regex "^2.0.0"
2383 | is-extglob "^1.0.0"
2384 | is-glob "^2.0.1"
2385 | kind-of "^3.0.2"
2386 | normalize-path "^2.0.1"
2387 | object.omit "^2.0.0"
2388 | parse-glob "^3.0.4"
2389 | regex-cache "^0.4.2"
2390 |
2391 | mime-db@~1.29.0:
2392 | version "1.29.0"
2393 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878"
2394 |
2395 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.7:
2396 | version "2.1.16"
2397 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23"
2398 | dependencies:
2399 | mime-db "~1.29.0"
2400 |
2401 | mime@1.2.4:
2402 | version "1.2.4"
2403 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.2.4.tgz#11b5fdaf29c2509255176b80ad520294f5de92b7"
2404 |
2405 | mime@1.3.4, "mime@>= 0.0.1":
2406 | version "1.3.4"
2407 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53"
2408 |
2409 | mimic-fn@^1.0.0:
2410 | version "1.1.0"
2411 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
2412 |
2413 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4:
2414 | version "3.0.4"
2415 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2416 | dependencies:
2417 | brace-expansion "^1.1.7"
2418 |
2419 | minimist@0.0.8:
2420 | version "0.0.8"
2421 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2422 |
2423 | minimist@^1.2.0:
2424 | version "1.2.0"
2425 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2426 |
2427 | mkdirp@0.3.0:
2428 | version "0.3.0"
2429 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e"
2430 |
2431 | mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.1:
2432 | version "0.5.1"
2433 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2434 | dependencies:
2435 | minimist "0.0.8"
2436 |
2437 | ms@0.7.1:
2438 | version "0.7.1"
2439 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098"
2440 |
2441 | ms@0.7.2:
2442 | version "0.7.2"
2443 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765"
2444 |
2445 | ms@0.7.3:
2446 | version "0.7.3"
2447 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff"
2448 |
2449 | ms@1.0.0:
2450 | version "1.0.0"
2451 | resolved "https://registry.yarnpkg.com/ms/-/ms-1.0.0.tgz#59adcd22edc543f7b5381862d31387b1f4bc9473"
2452 |
2453 | ms@2.0.0:
2454 | version "2.0.0"
2455 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2456 |
2457 | mute-stream@0.0.7:
2458 | version "0.0.7"
2459 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
2460 |
2461 | nan@^2.3.0:
2462 | version "2.6.2"
2463 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45"
2464 |
2465 | natural-compare@^1.4.0:
2466 | version "1.4.0"
2467 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2468 |
2469 | negotiator@0.6.1:
2470 | version "0.6.1"
2471 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
2472 |
2473 | node-pre-gyp@^0.6.36:
2474 | version "0.6.36"
2475 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786"
2476 | dependencies:
2477 | mkdirp "^0.5.1"
2478 | nopt "^4.0.1"
2479 | npmlog "^4.0.2"
2480 | rc "^1.1.7"
2481 | request "^2.81.0"
2482 | rimraf "^2.6.1"
2483 | semver "^5.3.0"
2484 | tar "^2.2.1"
2485 | tar-pack "^3.4.0"
2486 |
2487 | nopt@3.0.x:
2488 | version "3.0.6"
2489 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
2490 | dependencies:
2491 | abbrev "1"
2492 |
2493 | nopt@^4.0.1:
2494 | version "4.0.1"
2495 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
2496 | dependencies:
2497 | abbrev "1"
2498 | osenv "^0.1.4"
2499 |
2500 | normalize-package-data@^2.3.2:
2501 | version "2.4.0"
2502 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
2503 | dependencies:
2504 | hosted-git-info "^2.1.4"
2505 | is-builtin-module "^1.0.0"
2506 | semver "2 || 3 || 4 || 5"
2507 | validate-npm-package-license "^3.0.1"
2508 |
2509 | normalize-path@^2.0.0, normalize-path@^2.0.1:
2510 | version "2.1.1"
2511 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2512 | dependencies:
2513 | remove-trailing-separator "^1.0.1"
2514 |
2515 | normalize-range@^0.1.2:
2516 | version "0.1.2"
2517 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
2518 |
2519 | npm-run-path@^2.0.0:
2520 | version "2.0.2"
2521 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
2522 | dependencies:
2523 | path-key "^2.0.0"
2524 |
2525 | npmlog@^4.0.2:
2526 | version "4.1.2"
2527 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
2528 | dependencies:
2529 | are-we-there-yet "~1.1.2"
2530 | console-control-strings "~1.1.0"
2531 | gauge "~2.7.3"
2532 | set-blocking "~2.0.0"
2533 |
2534 | num2fraction@^1.2.2:
2535 | version "1.2.2"
2536 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
2537 |
2538 | number-is-nan@^1.0.0:
2539 | version "1.0.1"
2540 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2541 |
2542 | oauth-sign@~0.8.1:
2543 | version "0.8.2"
2544 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
2545 |
2546 | object-assign@4.1.0:
2547 | version "4.1.0"
2548 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0"
2549 |
2550 | object-assign@^4.0.1, object-assign@^4.1.0:
2551 | version "4.1.1"
2552 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2553 |
2554 | object-component@0.0.3:
2555 | version "0.0.3"
2556 | resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291"
2557 |
2558 | object-path@^0.9.0:
2559 | version "0.9.2"
2560 | resolved "https://registry.yarnpkg.com/object-path/-/object-path-0.9.2.tgz#0fd9a74fc5fad1ae3968b586bda5c632bd6c05a5"
2561 |
2562 | object.omit@^2.0.0:
2563 | version "2.0.1"
2564 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2565 | dependencies:
2566 | for-own "^0.1.4"
2567 | is-extendable "^0.1.1"
2568 |
2569 | on-finished@~2.3.0:
2570 | version "2.3.0"
2571 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
2572 | dependencies:
2573 | ee-first "1.1.1"
2574 |
2575 | once@^1.3.0, once@^1.3.3:
2576 | version "1.4.0"
2577 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2578 | dependencies:
2579 | wrappy "1"
2580 |
2581 | onetime@^2.0.0:
2582 | version "2.0.1"
2583 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
2584 | dependencies:
2585 | mimic-fn "^1.0.0"
2586 |
2587 | openurl@1.1.1:
2588 | version "1.1.1"
2589 | resolved "https://registry.yarnpkg.com/openurl/-/openurl-1.1.1.tgz#3875b4b0ef7a52c156f0db41d4609dbb0f94b387"
2590 |
2591 | opn@4.0.2:
2592 | version "4.0.2"
2593 | resolved "https://registry.yarnpkg.com/opn/-/opn-4.0.2.tgz#7abc22e644dff63b0a96d5ab7f2790c0f01abc95"
2594 | dependencies:
2595 | object-assign "^4.0.1"
2596 | pinkie-promise "^2.0.0"
2597 |
2598 | optionator@^0.8.2:
2599 | version "0.8.2"
2600 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
2601 | dependencies:
2602 | deep-is "~0.1.3"
2603 | fast-levenshtein "~2.0.4"
2604 | levn "~0.3.0"
2605 | prelude-ls "~1.1.2"
2606 | type-check "~0.3.2"
2607 | wordwrap "~1.0.0"
2608 |
2609 | options@>=0.0.5:
2610 | version "0.0.6"
2611 | resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f"
2612 |
2613 | ora@^1.1.0:
2614 | version "1.3.0"
2615 | resolved "https://registry.yarnpkg.com/ora/-/ora-1.3.0.tgz#80078dd2b92a934af66a3ad72a5b910694ede51a"
2616 | dependencies:
2617 | chalk "^1.1.1"
2618 | cli-cursor "^2.1.0"
2619 | cli-spinners "^1.0.0"
2620 | log-symbols "^1.0.2"
2621 |
2622 | os-homedir@^1.0.0, os-homedir@^1.0.1:
2623 | version "1.0.2"
2624 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2625 |
2626 | os-locale@^1.4.0:
2627 | version "1.4.0"
2628 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9"
2629 | dependencies:
2630 | lcid "^1.0.0"
2631 |
2632 | os-locale@^2.0.0:
2633 | version "2.1.0"
2634 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
2635 | dependencies:
2636 | execa "^0.7.0"
2637 | lcid "^1.0.0"
2638 | mem "^1.1.0"
2639 |
2640 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1:
2641 | version "1.0.2"
2642 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2643 |
2644 | osenv@^0.1.4:
2645 | version "0.1.4"
2646 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
2647 | dependencies:
2648 | os-homedir "^1.0.0"
2649 | os-tmpdir "^1.0.0"
2650 |
2651 | output-file-sync@^1.1.0:
2652 | version "1.1.2"
2653 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76"
2654 | dependencies:
2655 | graceful-fs "^4.1.4"
2656 | mkdirp "^0.5.1"
2657 | object-assign "^4.1.0"
2658 |
2659 | p-finally@^1.0.0:
2660 | version "1.0.0"
2661 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
2662 |
2663 | p-limit@^1.1.0:
2664 | version "1.1.0"
2665 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
2666 |
2667 | p-locate@^2.0.0:
2668 | version "2.0.0"
2669 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
2670 | dependencies:
2671 | p-limit "^1.1.0"
2672 |
2673 | parse-glob@^3.0.4:
2674 | version "3.0.4"
2675 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2676 | dependencies:
2677 | glob-base "^0.3.0"
2678 | is-dotfile "^1.0.0"
2679 | is-extglob "^1.0.0"
2680 | is-glob "^2.0.0"
2681 |
2682 | parse-json@^2.2.0:
2683 | version "2.2.0"
2684 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2685 | dependencies:
2686 | error-ex "^1.2.0"
2687 |
2688 | parsejson@0.0.3:
2689 | version "0.0.3"
2690 | resolved "https://registry.yarnpkg.com/parsejson/-/parsejson-0.0.3.tgz#ab7e3759f209ece99437973f7d0f1f64ae0e64ab"
2691 | dependencies:
2692 | better-assert "~1.0.0"
2693 |
2694 | parseqs@0.0.5:
2695 | version "0.0.5"
2696 | resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d"
2697 | dependencies:
2698 | better-assert "~1.0.0"
2699 |
2700 | parseuri@0.0.5:
2701 | version "0.0.5"
2702 | resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a"
2703 | dependencies:
2704 | better-assert "~1.0.0"
2705 |
2706 | parseurl@~1.3.1:
2707 | version "1.3.1"
2708 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56"
2709 |
2710 | path-exists@^2.0.0:
2711 | version "2.1.0"
2712 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
2713 | dependencies:
2714 | pinkie-promise "^2.0.0"
2715 |
2716 | path-exists@^3.0.0:
2717 | version "3.0.0"
2718 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2719 |
2720 | path-is-absolute@^1.0.0:
2721 | version "1.0.1"
2722 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2723 |
2724 | path-is-inside@^1.0.1, path-is-inside@^1.0.2:
2725 | version "1.0.2"
2726 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
2727 |
2728 | path-key@^2.0.0:
2729 | version "2.0.1"
2730 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2731 |
2732 | path-parse@^1.0.5:
2733 | version "1.0.5"
2734 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
2735 |
2736 | path-type@^1.0.0:
2737 | version "1.1.0"
2738 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
2739 | dependencies:
2740 | graceful-fs "^4.1.2"
2741 | pify "^2.0.0"
2742 | pinkie-promise "^2.0.0"
2743 |
2744 | path-type@^2.0.0:
2745 | version "2.0.0"
2746 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
2747 | dependencies:
2748 | pify "^2.0.0"
2749 |
2750 | performance-now@^0.2.0:
2751 | version "0.2.0"
2752 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
2753 |
2754 | pify@^2.0.0, pify@^2.3.0:
2755 | version "2.3.0"
2756 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2757 |
2758 | pinkie-promise@^2.0.0:
2759 | version "2.0.1"
2760 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
2761 | dependencies:
2762 | pinkie "^2.0.0"
2763 |
2764 | pinkie@^2.0.0:
2765 | version "2.0.4"
2766 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
2767 |
2768 | pluralize@^4.0.0:
2769 | version "4.0.0"
2770 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762"
2771 |
2772 | portscanner@2.1.1:
2773 | version "2.1.1"
2774 | resolved "https://registry.yarnpkg.com/portscanner/-/portscanner-2.1.1.tgz#eabb409e4de24950f5a2a516d35ae769343fbb96"
2775 | dependencies:
2776 | async "1.5.2"
2777 | is-number-like "^1.0.3"
2778 |
2779 | postcss-cli@^4.1.0:
2780 | version "4.1.0"
2781 | resolved "https://registry.yarnpkg.com/postcss-cli/-/postcss-cli-4.1.0.tgz#8f6803678acd7a4f21483f1a4039136f6e1c214f"
2782 | dependencies:
2783 | chalk "^1.1.3"
2784 | chokidar "^1.6.1"
2785 | dependency-graph "^0.5.0"
2786 | fs-extra "^3.0.1"
2787 | get-stdin "^5.0.1"
2788 | globby "^6.1.0"
2789 | ora "^1.1.0"
2790 | postcss "^6.0.1"
2791 | postcss-load-config "^1.1.0"
2792 | postcss-reporter "^4.0.0"
2793 | read-cache "^1.0.0"
2794 | yargs "^8.0.1"
2795 |
2796 | postcss-load-config@^1.1.0:
2797 | version "1.2.0"
2798 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a"
2799 | dependencies:
2800 | cosmiconfig "^2.1.0"
2801 | object-assign "^4.1.0"
2802 | postcss-load-options "^1.2.0"
2803 | postcss-load-plugins "^2.3.0"
2804 |
2805 | postcss-load-options@^1.2.0:
2806 | version "1.2.0"
2807 | resolved "https://registry.yarnpkg.com/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c"
2808 | dependencies:
2809 | cosmiconfig "^2.1.0"
2810 | object-assign "^4.1.0"
2811 |
2812 | postcss-load-plugins@^2.3.0:
2813 | version "2.3.0"
2814 | resolved "https://registry.yarnpkg.com/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92"
2815 | dependencies:
2816 | cosmiconfig "^2.1.1"
2817 | object-assign "^4.1.0"
2818 |
2819 | postcss-reporter@^4.0.0:
2820 | version "4.0.0"
2821 | resolved "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-4.0.0.tgz#13356c365c36783adde88e28e09dbba6ec6c6501"
2822 | dependencies:
2823 | chalk "^1.0.0"
2824 | lodash "^4.1.0"
2825 | log-symbols "^1.0.2"
2826 |
2827 | postcss-value-parser@^3.2.3:
2828 | version "3.3.0"
2829 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15"
2830 |
2831 | postcss@^6.0.1, postcss@^6.0.6:
2832 | version "6.0.8"
2833 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.8.tgz#89067a9ce8b11f8a84cbc5117efc30419a0857b3"
2834 | dependencies:
2835 | chalk "^2.0.1"
2836 | source-map "^0.5.6"
2837 | supports-color "^4.2.0"
2838 |
2839 | prelude-ls@~1.1.2:
2840 | version "1.1.2"
2841 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
2842 |
2843 | preserve@^0.2.0:
2844 | version "0.2.0"
2845 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
2846 |
2847 | prettier@^1.5.3:
2848 | version "1.5.3"
2849 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.5.3.tgz#59dadc683345ec6b88f88b94ed4ae7e1da394bfe"
2850 |
2851 | private@^0.1.6:
2852 | version "0.1.7"
2853 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1"
2854 |
2855 | process-nextick-args@~1.0.6:
2856 | version "1.0.7"
2857 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
2858 |
2859 | progress@^2.0.0:
2860 | version "2.0.0"
2861 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f"
2862 |
2863 | promise@^7.0.1:
2864 | version "7.3.1"
2865 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
2866 | dependencies:
2867 | asap "~2.0.3"
2868 |
2869 | pseudomap@^1.0.2:
2870 | version "1.0.2"
2871 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
2872 |
2873 | pug-attrs@^2.0.2:
2874 | version "2.0.2"
2875 | resolved "https://registry.yarnpkg.com/pug-attrs/-/pug-attrs-2.0.2.tgz#8be2b2225568ffa75d1b866982bff9f4111affcb"
2876 | dependencies:
2877 | constantinople "^3.0.1"
2878 | js-stringify "^1.0.1"
2879 | pug-runtime "^2.0.3"
2880 |
2881 | pug-cli@^1.0.0-alpha6:
2882 | version "1.0.0-alpha6"
2883 | resolved "https://registry.yarnpkg.com/pug-cli/-/pug-cli-1.0.0-alpha6.tgz#1ca539ea4ac0ebb69ce4aae84aeed5d64ffe6501"
2884 | dependencies:
2885 | chalk "^1.0.0"
2886 | commander "^2.8.1"
2887 | mkdirp "^0.5.1"
2888 | pug "^2.0.0-alpha7"
2889 |
2890 | pug-code-gen@^1.1.1:
2891 | version "1.1.1"
2892 | resolved "https://registry.yarnpkg.com/pug-code-gen/-/pug-code-gen-1.1.1.tgz#1cf72744ef2a039eae6a3340caaa1105871258e8"
2893 | dependencies:
2894 | constantinople "^3.0.1"
2895 | doctypes "^1.1.0"
2896 | js-stringify "^1.0.1"
2897 | pug-attrs "^2.0.2"
2898 | pug-error "^1.3.2"
2899 | pug-runtime "^2.0.3"
2900 | void-elements "^2.0.1"
2901 | with "^5.0.0"
2902 |
2903 | pug-error@^1.3.2:
2904 | version "1.3.2"
2905 | resolved "https://registry.yarnpkg.com/pug-error/-/pug-error-1.3.2.tgz#53ae7d9d29bb03cf564493a026109f54c47f5f26"
2906 |
2907 | pug-filters@^2.1.3:
2908 | version "2.1.3"
2909 | resolved "https://registry.yarnpkg.com/pug-filters/-/pug-filters-2.1.3.tgz#d59767a220de797dd755489f66834cf9aa83aa54"
2910 | dependencies:
2911 | clean-css "^3.3.0"
2912 | constantinople "^3.0.1"
2913 | jstransformer "1.0.0"
2914 | pug-error "^1.3.2"
2915 | pug-walk "^1.1.3"
2916 | resolve "^1.1.6"
2917 | uglify-js "^2.6.1"
2918 |
2919 | pug-lexer@^3.1.0:
2920 | version "3.1.0"
2921 | resolved "https://registry.yarnpkg.com/pug-lexer/-/pug-lexer-3.1.0.tgz#fd087376d4a675b4f59f8fef422883434e9581a2"
2922 | dependencies:
2923 | character-parser "^2.1.1"
2924 | is-expression "^3.0.0"
2925 | pug-error "^1.3.2"
2926 |
2927 | pug-linker@^3.0.1:
2928 | version "3.0.1"
2929 | resolved "https://registry.yarnpkg.com/pug-linker/-/pug-linker-3.0.1.tgz#ba3f8ff213ca8f3a304859b44fed13ca7b9dfa19"
2930 | dependencies:
2931 | pug-error "^1.3.2"
2932 | pug-walk "^1.1.3"
2933 |
2934 | pug-load@^2.0.7:
2935 | version "2.0.7"
2936 | resolved "https://registry.yarnpkg.com/pug-load/-/pug-load-2.0.7.tgz#531d0c6e11546010e984630d03df406367d2de77"
2937 | dependencies:
2938 | object-assign "^4.1.0"
2939 | pug-walk "^1.1.3"
2940 |
2941 | pug-parser@^3.0.0:
2942 | version "3.0.0"
2943 | resolved "https://registry.yarnpkg.com/pug-parser/-/pug-parser-3.0.0.tgz#37c619dd800f642187ce4d6ce1a164cdd75487a3"
2944 | dependencies:
2945 | pug-error "^1.3.2"
2946 | token-stream "0.0.1"
2947 |
2948 | pug-runtime@^2.0.3:
2949 | version "2.0.3"
2950 | resolved "https://registry.yarnpkg.com/pug-runtime/-/pug-runtime-2.0.3.tgz#98162607b0fce9e254d427f33987a5aee7168bda"
2951 |
2952 | pug-strip-comments@^1.0.2:
2953 | version "1.0.2"
2954 | resolved "https://registry.yarnpkg.com/pug-strip-comments/-/pug-strip-comments-1.0.2.tgz#d313afa01bcc374980e1399e23ebf2eb9bdc8513"
2955 | dependencies:
2956 | pug-error "^1.3.2"
2957 |
2958 | pug-walk@^1.1.3:
2959 | version "1.1.3"
2960 | resolved "https://registry.yarnpkg.com/pug-walk/-/pug-walk-1.1.3.tgz#d7cd5b23db3ca87c636c86a0973f9cd8e030436c"
2961 |
2962 | pug@^2.0.0-alpha7:
2963 | version "2.0.0-rc.2"
2964 | resolved "https://registry.yarnpkg.com/pug/-/pug-2.0.0-rc.2.tgz#07845527790ab2c6be67dcf5eb1f31804081f04a"
2965 | dependencies:
2966 | pug-code-gen "^1.1.1"
2967 | pug-filters "^2.1.3"
2968 | pug-lexer "^3.1.0"
2969 | pug-linker "^3.0.1"
2970 | pug-load "^2.0.7"
2971 | pug-parser "^3.0.0"
2972 | pug-runtime "^2.0.3"
2973 | pug-strip-comments "^1.0.2"
2974 |
2975 | punycode@^1.4.1:
2976 | version "1.4.1"
2977 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2978 |
2979 | qs@0.4.x:
2980 | version "0.4.2"
2981 | resolved "https://registry.yarnpkg.com/qs/-/qs-0.4.2.tgz#3cac4c861e371a8c9c4770ac23cda8de639b8e5f"
2982 |
2983 | qs@6.2.1:
2984 | version "6.2.1"
2985 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.1.tgz#ce03c5ff0935bc1d9d69a9f14cbd18e568d67625"
2986 |
2987 | "qs@>= 0.4.0", qs@~6.4.0:
2988 | version "6.4.0"
2989 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
2990 |
2991 | randomatic@^1.1.3:
2992 | version "1.1.7"
2993 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
2994 | dependencies:
2995 | is-number "^3.0.0"
2996 | kind-of "^4.0.0"
2997 |
2998 | range-parser@~1.2.0:
2999 | version "1.2.0"
3000 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
3001 |
3002 | rc@^1.1.7:
3003 | version "1.2.1"
3004 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"
3005 | dependencies:
3006 | deep-extend "~0.4.0"
3007 | ini "~1.3.0"
3008 | minimist "^1.2.0"
3009 | strip-json-comments "~2.0.1"
3010 |
3011 | read-cache@^1.0.0:
3012 | version "1.0.0"
3013 | resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774"
3014 | dependencies:
3015 | pify "^2.3.0"
3016 |
3017 | read-pkg-up@^1.0.1:
3018 | version "1.0.1"
3019 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
3020 | dependencies:
3021 | find-up "^1.0.0"
3022 | read-pkg "^1.0.0"
3023 |
3024 | read-pkg-up@^2.0.0:
3025 | version "2.0.0"
3026 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
3027 | dependencies:
3028 | find-up "^2.0.0"
3029 | read-pkg "^2.0.0"
3030 |
3031 | read-pkg@^1.0.0:
3032 | version "1.1.0"
3033 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
3034 | dependencies:
3035 | load-json-file "^1.0.0"
3036 | normalize-package-data "^2.3.2"
3037 | path-type "^1.0.0"
3038 |
3039 | read-pkg@^2.0.0:
3040 | version "2.0.0"
3041 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
3042 | dependencies:
3043 | load-json-file "^2.0.0"
3044 | normalize-package-data "^2.3.2"
3045 | path-type "^2.0.0"
3046 |
3047 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2:
3048 | version "2.3.3"
3049 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
3050 | dependencies:
3051 | core-util-is "~1.0.0"
3052 | inherits "~2.0.3"
3053 | isarray "~1.0.0"
3054 | process-nextick-args "~1.0.6"
3055 | safe-buffer "~5.1.1"
3056 | string_decoder "~1.0.3"
3057 | util-deprecate "~1.0.1"
3058 |
3059 | readdirp@^2.0.0:
3060 | version "2.1.0"
3061 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
3062 | dependencies:
3063 | graceful-fs "^4.1.2"
3064 | minimatch "^3.0.2"
3065 | readable-stream "^2.0.2"
3066 | set-immediate-shim "^1.0.1"
3067 |
3068 | regenerate@^1.2.1:
3069 | version "1.3.2"
3070 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260"
3071 |
3072 | regenerator-runtime@^0.10.0:
3073 | version "0.10.5"
3074 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
3075 |
3076 | regenerator-transform@0.9.11:
3077 | version "0.9.11"
3078 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283"
3079 | dependencies:
3080 | babel-runtime "^6.18.0"
3081 | babel-types "^6.19.0"
3082 | private "^0.1.6"
3083 |
3084 | regex-cache@^0.4.2:
3085 | version "0.4.3"
3086 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
3087 | dependencies:
3088 | is-equal-shallow "^0.1.3"
3089 | is-primitive "^2.0.0"
3090 |
3091 | regexpu-core@^2.0.0:
3092 | version "2.0.0"
3093 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
3094 | dependencies:
3095 | regenerate "^1.2.1"
3096 | regjsgen "^0.2.0"
3097 | regjsparser "^0.1.4"
3098 |
3099 | regjsgen@^0.2.0:
3100 | version "0.2.0"
3101 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
3102 |
3103 | regjsparser@^0.1.4:
3104 | version "0.1.5"
3105 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
3106 | dependencies:
3107 | jsesc "~0.5.0"
3108 |
3109 | remove-trailing-separator@^1.0.1:
3110 | version "1.0.2"
3111 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511"
3112 |
3113 | repeat-element@^1.1.2:
3114 | version "1.1.2"
3115 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
3116 |
3117 | repeat-string@^1.5.2:
3118 | version "1.6.1"
3119 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
3120 |
3121 | repeating@^2.0.0:
3122 | version "2.0.1"
3123 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
3124 | dependencies:
3125 | is-finite "^1.0.0"
3126 |
3127 | request@2.81.0, request@^2.81.0:
3128 | version "2.81.0"
3129 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
3130 | dependencies:
3131 | aws-sign2 "~0.6.0"
3132 | aws4 "^1.2.1"
3133 | caseless "~0.12.0"
3134 | combined-stream "~1.0.5"
3135 | extend "~3.0.0"
3136 | forever-agent "~0.6.1"
3137 | form-data "~2.1.1"
3138 | har-validator "~4.2.1"
3139 | hawk "~3.1.3"
3140 | http-signature "~1.1.0"
3141 | is-typedarray "~1.0.0"
3142 | isstream "~0.1.2"
3143 | json-stringify-safe "~5.0.1"
3144 | mime-types "~2.1.7"
3145 | oauth-sign "~0.8.1"
3146 | performance-now "^0.2.0"
3147 | qs "~6.4.0"
3148 | safe-buffer "^5.0.1"
3149 | stringstream "~0.0.4"
3150 | tough-cookie "~2.3.0"
3151 | tunnel-agent "^0.6.0"
3152 | uuid "^3.0.0"
3153 |
3154 | require-directory@^2.1.1:
3155 | version "2.1.1"
3156 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
3157 |
3158 | require-from-string@^1.1.0:
3159 | version "1.2.1"
3160 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418"
3161 |
3162 | require-main-filename@^1.0.1:
3163 | version "1.0.1"
3164 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
3165 |
3166 | require-uncached@^1.0.3:
3167 | version "1.0.3"
3168 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
3169 | dependencies:
3170 | caller-path "^0.1.0"
3171 | resolve-from "^1.0.0"
3172 |
3173 | requires-port@1.x.x:
3174 | version "1.0.0"
3175 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
3176 |
3177 | resolve-from@^1.0.0:
3178 | version "1.0.1"
3179 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
3180 |
3181 | resolve@^1.1.6:
3182 | version "1.4.0"
3183 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86"
3184 | dependencies:
3185 | path-parse "^1.0.5"
3186 |
3187 | resp-modifier@6.0.2:
3188 | version "6.0.2"
3189 | resolved "https://registry.yarnpkg.com/resp-modifier/-/resp-modifier-6.0.2.tgz#b124de5c4fbafcba541f48ffa73970f4aa456b4f"
3190 | dependencies:
3191 | debug "^2.2.0"
3192 | minimatch "^3.0.2"
3193 |
3194 | restore-cursor@^2.0.0:
3195 | version "2.0.0"
3196 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
3197 | dependencies:
3198 | onetime "^2.0.0"
3199 | signal-exit "^3.0.2"
3200 |
3201 | right-align@^0.1.1:
3202 | version "0.1.3"
3203 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
3204 | dependencies:
3205 | align-text "^0.1.1"
3206 |
3207 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1:
3208 | version "2.6.1"
3209 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d"
3210 | dependencies:
3211 | glob "^7.0.5"
3212 |
3213 | run-async@^2.2.0:
3214 | version "2.3.0"
3215 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
3216 | dependencies:
3217 | is-promise "^2.1.0"
3218 |
3219 | rx-lite-aggregates@^4.0.8:
3220 | version "4.0.8"
3221 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be"
3222 | dependencies:
3223 | rx-lite "*"
3224 |
3225 | rx-lite@*, rx-lite@^4.0.8:
3226 | version "4.0.8"
3227 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
3228 |
3229 | rx@4.1.0:
3230 | version "4.1.0"
3231 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782"
3232 |
3233 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
3234 | version "5.1.1"
3235 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
3236 |
3237 | sax@0.5.x:
3238 | version "0.5.8"
3239 | resolved "https://registry.yarnpkg.com/sax/-/sax-0.5.8.tgz#d472db228eb331c2506b0e8c15524adb939d12c1"
3240 |
3241 | "semver@2 || 3 || 4 || 5", semver@^5.3.0:
3242 | version "5.4.1"
3243 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
3244 |
3245 | send@0.15.2:
3246 | version "0.15.2"
3247 | resolved "https://registry.yarnpkg.com/send/-/send-0.15.2.tgz#f91fab4403bcf87e716f70ceb5db2f578bdc17d6"
3248 | dependencies:
3249 | debug "2.6.4"
3250 | depd "~1.1.0"
3251 | destroy "~1.0.4"
3252 | encodeurl "~1.0.1"
3253 | escape-html "~1.0.3"
3254 | etag "~1.8.0"
3255 | fresh "0.5.0"
3256 | http-errors "~1.6.1"
3257 | mime "1.3.4"
3258 | ms "1.0.0"
3259 | on-finished "~2.3.0"
3260 | range-parser "~1.2.0"
3261 | statuses "~1.3.1"
3262 |
3263 | serve-index@1.8.0:
3264 | version "1.8.0"
3265 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.8.0.tgz#7c5d96c13fb131101f93c1c5774f8516a1e78d3b"
3266 | dependencies:
3267 | accepts "~1.3.3"
3268 | batch "0.5.3"
3269 | debug "~2.2.0"
3270 | escape-html "~1.0.3"
3271 | http-errors "~1.5.0"
3272 | mime-types "~2.1.11"
3273 | parseurl "~1.3.1"
3274 |
3275 | serve-static@1.12.2:
3276 | version "1.12.2"
3277 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.12.2.tgz#e546e2726081b81b4bcec8e90808ebcdd323afba"
3278 | dependencies:
3279 | encodeurl "~1.0.1"
3280 | escape-html "~1.0.3"
3281 | parseurl "~1.3.1"
3282 | send "0.15.2"
3283 |
3284 | server-destroy@1.0.1:
3285 | version "1.0.1"
3286 | resolved "https://registry.yarnpkg.com/server-destroy/-/server-destroy-1.0.1.tgz#f13bf928e42b9c3e79383e61cc3998b5d14e6cdd"
3287 |
3288 | set-blocking@^2.0.0, set-blocking@~2.0.0:
3289 | version "2.0.0"
3290 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
3291 |
3292 | set-immediate-shim@^1.0.1:
3293 | version "1.0.1"
3294 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
3295 |
3296 | setprototypeof@1.0.2:
3297 | version "1.0.2"
3298 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08"
3299 |
3300 | setprototypeof@1.0.3:
3301 | version "1.0.3"
3302 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04"
3303 |
3304 | shebang-command@^1.2.0:
3305 | version "1.2.0"
3306 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
3307 | dependencies:
3308 | shebang-regex "^1.0.0"
3309 |
3310 | shebang-regex@^1.0.0:
3311 | version "1.0.0"
3312 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
3313 |
3314 | signal-exit@^3.0.0, signal-exit@^3.0.2:
3315 | version "3.0.2"
3316 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
3317 |
3318 | slash@^1.0.0:
3319 | version "1.0.0"
3320 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
3321 |
3322 | slice-ansi@0.0.4:
3323 | version "0.0.4"
3324 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
3325 |
3326 | sntp@1.x.x:
3327 | version "1.0.9"
3328 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
3329 | dependencies:
3330 | hoek "2.x.x"
3331 |
3332 | socket.io-adapter@0.5.0:
3333 | version "0.5.0"
3334 | resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz#cb6d4bb8bec81e1078b99677f9ced0046066bb8b"
3335 | dependencies:
3336 | debug "2.3.3"
3337 | socket.io-parser "2.3.1"
3338 |
3339 | socket.io-client@1.6.0:
3340 | version "1.6.0"
3341 | resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-1.6.0.tgz#5b668f4f771304dfeed179064708386fa6717853"
3342 | dependencies:
3343 | backo2 "1.0.2"
3344 | component-bind "1.0.0"
3345 | component-emitter "1.2.1"
3346 | debug "2.3.3"
3347 | engine.io-client "1.8.0"
3348 | has-binary "0.1.7"
3349 | indexof "0.0.1"
3350 | object-component "0.0.3"
3351 | parseuri "0.0.5"
3352 | socket.io-parser "2.3.1"
3353 | to-array "0.1.4"
3354 |
3355 | socket.io-parser@2.3.1:
3356 | version "2.3.1"
3357 | resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-2.3.1.tgz#dd532025103ce429697326befd64005fcfe5b4a0"
3358 | dependencies:
3359 | component-emitter "1.1.2"
3360 | debug "2.2.0"
3361 | isarray "0.0.1"
3362 | json3 "3.3.2"
3363 |
3364 | socket.io@1.6.0:
3365 | version "1.6.0"
3366 | resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-1.6.0.tgz#3e40d932637e6bd923981b25caf7c53e83b6e2e1"
3367 | dependencies:
3368 | debug "2.3.3"
3369 | engine.io "1.8.0"
3370 | has-binary "0.1.7"
3371 | object-assign "4.1.0"
3372 | socket.io-adapter "0.5.0"
3373 | socket.io-client "1.6.0"
3374 | socket.io-parser "2.3.1"
3375 |
3376 | source-map-support@^0.4.2:
3377 | version "0.4.15"
3378 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1"
3379 | dependencies:
3380 | source-map "^0.5.6"
3381 |
3382 | source-map@0.1.x:
3383 | version "0.1.43"
3384 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346"
3385 | dependencies:
3386 | amdefine ">=0.0.4"
3387 |
3388 | source-map@0.4.x:
3389 | version "0.4.4"
3390 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
3391 | dependencies:
3392 | amdefine ">=0.0.4"
3393 |
3394 | source-map@0.5.x, source-map@^0.5.0, source-map@^0.5.6, source-map@~0.5.1:
3395 | version "0.5.6"
3396 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
3397 |
3398 | spdx-correct@~1.0.0:
3399 | version "1.0.2"
3400 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
3401 | dependencies:
3402 | spdx-license-ids "^1.0.2"
3403 |
3404 | spdx-expression-parse@~1.0.0:
3405 | version "1.0.4"
3406 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
3407 |
3408 | spdx-license-ids@^1.0.2:
3409 | version "1.2.2"
3410 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
3411 |
3412 | sprintf-js@~1.0.2:
3413 | version "1.0.3"
3414 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
3415 |
3416 | sshpk@^1.7.0:
3417 | version "1.13.1"
3418 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
3419 | dependencies:
3420 | asn1 "~0.2.3"
3421 | assert-plus "^1.0.0"
3422 | dashdash "^1.12.0"
3423 | getpass "^0.1.1"
3424 | optionalDependencies:
3425 | bcrypt-pbkdf "^1.0.0"
3426 | ecc-jsbn "~0.1.1"
3427 | jsbn "~0.1.0"
3428 | tweetnacl "~0.14.0"
3429 |
3430 | "statuses@>= 1.3.1 < 2", statuses@~1.3.0, statuses@~1.3.1:
3431 | version "1.3.1"
3432 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e"
3433 |
3434 | stream-throttle@^0.1.3:
3435 | version "0.1.3"
3436 | resolved "https://registry.yarnpkg.com/stream-throttle/-/stream-throttle-0.1.3.tgz#add57c8d7cc73a81630d31cd55d3961cfafba9c3"
3437 | dependencies:
3438 | commander "^2.2.0"
3439 | limiter "^1.0.5"
3440 |
3441 | string-width@^1.0.1, string-width@^1.0.2:
3442 | version "1.0.2"
3443 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3444 | dependencies:
3445 | code-point-at "^1.0.0"
3446 | is-fullwidth-code-point "^1.0.0"
3447 | strip-ansi "^3.0.0"
3448 |
3449 | string-width@^2.0.0, string-width@^2.1.0:
3450 | version "2.1.1"
3451 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
3452 | dependencies:
3453 | is-fullwidth-code-point "^2.0.0"
3454 | strip-ansi "^4.0.0"
3455 |
3456 | string_decoder@~1.0.3:
3457 | version "1.0.3"
3458 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
3459 | dependencies:
3460 | safe-buffer "~5.1.0"
3461 |
3462 | stringstream@~0.0.4:
3463 | version "0.0.5"
3464 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
3465 |
3466 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3467 | version "3.0.1"
3468 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3469 | dependencies:
3470 | ansi-regex "^2.0.0"
3471 |
3472 | strip-ansi@^4.0.0:
3473 | version "4.0.0"
3474 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
3475 | dependencies:
3476 | ansi-regex "^3.0.0"
3477 |
3478 | strip-bom@^2.0.0:
3479 | version "2.0.0"
3480 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
3481 | dependencies:
3482 | is-utf8 "^0.2.0"
3483 |
3484 | strip-bom@^3.0.0:
3485 | version "3.0.0"
3486 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
3487 |
3488 | strip-eof@^1.0.0:
3489 | version "1.0.0"
3490 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
3491 |
3492 | strip-json-comments@~2.0.1:
3493 | version "2.0.1"
3494 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
3495 |
3496 | stylus@^0.54.5:
3497 | version "0.54.5"
3498 | resolved "https://registry.yarnpkg.com/stylus/-/stylus-0.54.5.tgz#42b9560931ca7090ce8515a798ba9e6aa3d6dc79"
3499 | dependencies:
3500 | css-parse "1.7.x"
3501 | debug "*"
3502 | glob "7.0.x"
3503 | mkdirp "0.5.x"
3504 | sax "0.5.x"
3505 | source-map "0.1.x"
3506 |
3507 | supports-color@^2.0.0:
3508 | version "2.0.0"
3509 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
3510 |
3511 | supports-color@^4.0.0, supports-color@^4.2.0:
3512 | version "4.2.1"
3513 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.2.1.tgz#65a4bb2631e90e02420dba5554c375a4754bb836"
3514 | dependencies:
3515 | has-flag "^2.0.0"
3516 |
3517 | table@^4.0.1:
3518 | version "4.0.1"
3519 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435"
3520 | dependencies:
3521 | ajv "^4.7.0"
3522 | ajv-keywords "^1.0.0"
3523 | chalk "^1.1.1"
3524 | lodash "^4.0.0"
3525 | slice-ansi "0.0.4"
3526 | string-width "^2.0.0"
3527 |
3528 | tar-pack@^3.4.0:
3529 | version "3.4.0"
3530 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984"
3531 | dependencies:
3532 | debug "^2.2.0"
3533 | fstream "^1.0.10"
3534 | fstream-ignore "^1.0.5"
3535 | once "^1.3.3"
3536 | readable-stream "^2.1.4"
3537 | rimraf "^2.5.1"
3538 | tar "^2.2.1"
3539 | uid-number "^0.0.6"
3540 |
3541 | tar@^2.2.1:
3542 | version "2.2.1"
3543 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
3544 | dependencies:
3545 | block-stream "*"
3546 | fstream "^1.0.2"
3547 | inherits "2"
3548 |
3549 | text-table@~0.2.0:
3550 | version "0.2.0"
3551 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
3552 |
3553 | tfunk@^3.0.1:
3554 | version "3.1.0"
3555 | resolved "https://registry.yarnpkg.com/tfunk/-/tfunk-3.1.0.tgz#38e4414fc64977d87afdaa72facb6d29f82f7b5b"
3556 | dependencies:
3557 | chalk "^1.1.1"
3558 | object-path "^0.9.0"
3559 |
3560 | through@^2.3.6:
3561 | version "2.3.8"
3562 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
3563 |
3564 | tmp@^0.0.31:
3565 | version "0.0.31"
3566 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7"
3567 | dependencies:
3568 | os-tmpdir "~1.0.1"
3569 |
3570 | to-array@0.1.4:
3571 | version "0.1.4"
3572 | resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890"
3573 |
3574 | to-fast-properties@^1.0.1:
3575 | version "1.0.3"
3576 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
3577 |
3578 | token-stream@0.0.1:
3579 | version "0.0.1"
3580 | resolved "https://registry.yarnpkg.com/token-stream/-/token-stream-0.0.1.tgz#ceeefc717a76c4316f126d0b9dbaa55d7e7df01a"
3581 |
3582 | tough-cookie@~2.3.0:
3583 | version "2.3.2"
3584 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
3585 | dependencies:
3586 | punycode "^1.4.1"
3587 |
3588 | trim-right@^1.0.1:
3589 | version "1.0.1"
3590 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
3591 |
3592 | tryit@^1.0.1:
3593 | version "1.0.3"
3594 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb"
3595 |
3596 | tunnel-agent@^0.6.0:
3597 | version "0.6.0"
3598 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
3599 | dependencies:
3600 | safe-buffer "^5.0.1"
3601 |
3602 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
3603 | version "0.14.5"
3604 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
3605 |
3606 | type-check@~0.3.2:
3607 | version "0.3.2"
3608 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
3609 | dependencies:
3610 | prelude-ls "~1.1.2"
3611 |
3612 | typedarray@^0.0.6:
3613 | version "0.0.6"
3614 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
3615 |
3616 | ua-parser-js@0.7.12:
3617 | version "0.7.12"
3618 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb"
3619 |
3620 | uglify-js@^2.6.1:
3621 | version "2.8.29"
3622 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
3623 | dependencies:
3624 | source-map "~0.5.1"
3625 | yargs "~3.10.0"
3626 | optionalDependencies:
3627 | uglify-to-browserify "~1.0.0"
3628 |
3629 | uglify-js@^3.0.27:
3630 | version "3.0.27"
3631 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.0.27.tgz#a97db8c8ba6b9dba4e2f88d86aa9548fa6320034"
3632 | dependencies:
3633 | commander "~2.11.0"
3634 | source-map "~0.5.1"
3635 |
3636 | uglify-to-browserify@~1.0.0:
3637 | version "1.0.2"
3638 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
3639 |
3640 | uid-number@^0.0.6:
3641 | version "0.0.6"
3642 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
3643 |
3644 | ultron@1.0.x:
3645 | version "1.0.2"
3646 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa"
3647 |
3648 | underscore@1.7.x:
3649 | version "1.7.0"
3650 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209"
3651 |
3652 | universalify@^0.1.0:
3653 | version "0.1.1"
3654 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7"
3655 |
3656 | unpipe@~1.0.0:
3657 | version "1.0.0"
3658 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
3659 |
3660 | user-home@^1.1.1:
3661 | version "1.1.1"
3662 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190"
3663 |
3664 | util-deprecate@~1.0.1:
3665 | version "1.0.2"
3666 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3667 |
3668 | utils-merge@1.0.0:
3669 | version "1.0.0"
3670 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8"
3671 |
3672 | uuid@^3.0.0:
3673 | version "3.1.0"
3674 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
3675 |
3676 | v8flags@^2.0.10:
3677 | version "2.1.1"
3678 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4"
3679 | dependencies:
3680 | user-home "^1.1.1"
3681 |
3682 | validate-npm-package-license@^3.0.1:
3683 | version "3.0.1"
3684 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
3685 | dependencies:
3686 | spdx-correct "~1.0.0"
3687 | spdx-expression-parse "~1.0.0"
3688 |
3689 | verror@1.3.6:
3690 | version "1.3.6"
3691 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
3692 | dependencies:
3693 | extsprintf "1.0.2"
3694 |
3695 | void-elements@^2.0.1:
3696 | version "2.0.1"
3697 | resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec"
3698 |
3699 | weinre@^2.0.0-pre-I0Z7U9OV:
3700 | version "2.0.0-pre-I0Z7U9OV"
3701 | resolved "https://registry.yarnpkg.com/weinre/-/weinre-2.0.0-pre-I0Z7U9OV.tgz#fef8aa223921f7b40bbbbd4c3ed4302f6fd0a813"
3702 | dependencies:
3703 | express "2.5.x"
3704 | nopt "3.0.x"
3705 | underscore "1.7.x"
3706 |
3707 | which-module@^1.0.0:
3708 | version "1.0.0"
3709 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f"
3710 |
3711 | which-module@^2.0.0:
3712 | version "2.0.0"
3713 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
3714 |
3715 | which@^1.2.9:
3716 | version "1.2.14"
3717 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5"
3718 | dependencies:
3719 | isexe "^2.0.0"
3720 |
3721 | wide-align@^1.1.0:
3722 | version "1.1.2"
3723 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
3724 | dependencies:
3725 | string-width "^1.0.2"
3726 |
3727 | window-size@0.1.0:
3728 | version "0.1.0"
3729 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
3730 |
3731 | window-size@^0.1.2:
3732 | version "0.1.4"
3733 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876"
3734 |
3735 | window-size@^0.2.0:
3736 | version "0.2.0"
3737 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075"
3738 |
3739 | with@^5.0.0:
3740 | version "5.1.1"
3741 | resolved "https://registry.yarnpkg.com/with/-/with-5.1.1.tgz#fa4daa92daf32c4ea94ed453c81f04686b575dfe"
3742 | dependencies:
3743 | acorn "^3.1.0"
3744 | acorn-globals "^3.0.0"
3745 |
3746 | wordwrap@0.0.2:
3747 | version "0.0.2"
3748 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
3749 |
3750 | wordwrap@~1.0.0:
3751 | version "1.0.0"
3752 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
3753 |
3754 | wrap-ansi@^2.0.0:
3755 | version "2.1.0"
3756 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
3757 | dependencies:
3758 | string-width "^1.0.1"
3759 | strip-ansi "^3.0.1"
3760 |
3761 | wrappy@1:
3762 | version "1.0.2"
3763 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3764 |
3765 | write@^0.2.1:
3766 | version "0.2.1"
3767 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
3768 | dependencies:
3769 | mkdirp "^0.5.1"
3770 |
3771 | ws@1.1.1:
3772 | version "1.1.1"
3773 | resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.1.tgz#082ddb6c641e85d4bb451f03d52f06eabdb1f018"
3774 | dependencies:
3775 | options ">=0.0.5"
3776 | ultron "1.0.x"
3777 |
3778 | wtf-8@1.0.0:
3779 | version "1.0.0"
3780 | resolved "https://registry.yarnpkg.com/wtf-8/-/wtf-8-1.0.0.tgz#392d8ba2d0f1c34d1ee2d630f15d0efb68e1048a"
3781 |
3782 | xmlhttprequest-ssl@1.5.3:
3783 | version "1.5.3"
3784 | resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz#185a888c04eca46c3e4070d99f7b49de3528992d"
3785 |
3786 | y18n@^3.2.0, y18n@^3.2.1:
3787 | version "3.2.1"
3788 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
3789 |
3790 | yallist@^2.1.2:
3791 | version "2.1.2"
3792 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
3793 |
3794 | yargs-parser@^4.1.0:
3795 | version "4.2.1"
3796 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c"
3797 | dependencies:
3798 | camelcase "^3.0.0"
3799 |
3800 | yargs-parser@^7.0.0:
3801 | version "7.0.0"
3802 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
3803 | dependencies:
3804 | camelcase "^4.1.0"
3805 |
3806 | yargs@3.29.0:
3807 | version "3.29.0"
3808 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.29.0.tgz#1aab9660eae79d8b8f675bcaeeab6ee34c2cf69c"
3809 | dependencies:
3810 | camelcase "^1.2.1"
3811 | cliui "^3.0.3"
3812 | decamelize "^1.0.0"
3813 | os-locale "^1.4.0"
3814 | window-size "^0.1.2"
3815 | y18n "^3.2.0"
3816 |
3817 | yargs@6.4.0:
3818 | version "6.4.0"
3819 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.4.0.tgz#816e1a866d5598ccf34e5596ddce22d92da490d4"
3820 | dependencies:
3821 | camelcase "^3.0.0"
3822 | cliui "^3.2.0"
3823 | decamelize "^1.1.1"
3824 | get-caller-file "^1.0.1"
3825 | os-locale "^1.4.0"
3826 | read-pkg-up "^1.0.1"
3827 | require-directory "^2.1.1"
3828 | require-main-filename "^1.0.1"
3829 | set-blocking "^2.0.0"
3830 | string-width "^1.0.2"
3831 | which-module "^1.0.0"
3832 | window-size "^0.2.0"
3833 | y18n "^3.2.1"
3834 | yargs-parser "^4.1.0"
3835 |
3836 | yargs@^8.0.1:
3837 | version "8.0.2"
3838 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360"
3839 | dependencies:
3840 | camelcase "^4.1.0"
3841 | cliui "^3.2.0"
3842 | decamelize "^1.1.1"
3843 | get-caller-file "^1.0.1"
3844 | os-locale "^2.0.0"
3845 | read-pkg-up "^2.0.0"
3846 | require-directory "^2.1.1"
3847 | require-main-filename "^1.0.1"
3848 | set-blocking "^2.0.0"
3849 | string-width "^2.0.0"
3850 | which-module "^2.0.0"
3851 | y18n "^3.2.1"
3852 | yargs-parser "^7.0.0"
3853 |
3854 | yargs@~3.10.0:
3855 | version "3.10.0"
3856 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
3857 | dependencies:
3858 | camelcase "^1.0.2"
3859 | cliui "^2.1.0"
3860 | decamelize "^1.0.0"
3861 | window-size "0.1.0"
3862 |
3863 | yeast@0.1.2:
3864 | version "0.1.2"
3865 | resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419"
3866 |
--------------------------------------------------------------------------------