├── .babelrc
├── .editorconfig
├── .gitignore
├── .prettierignore
├── .prettierrc
├── LICENSE
├── README.md
├── example_test
├── EXIF_Orientation_Samples
│ ├── down-mirrored.jpg
│ ├── down.jpg
│ ├── left-mirrored.jpg
│ ├── left.jpg
│ ├── right-mirrored.jpg
│ ├── right.jpg
│ ├── up-mirrored.jpg
│ └── up.jpg
├── baboon.png
├── demo.js
├── giphy.gif
└── index.html
├── package.json
├── src
├── Compress.js
└── core
│ ├── Photo.js
│ ├── converter.js
│ ├── image.js
│ └── rotate.js
├── webpack.config.js
└── yarn.lock
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | ["env", {
4 | "targets": {
5 | "browsers": ["last 2 versions"]
6 | }
7 | }]
8 | ],
9 | "plugins": [
10 | "add-module-exports",
11 | "transform-class-properties",
12 | ["transform-runtime", {
13 | "helpers": false,
14 | "polyfill": false,
15 | "regenerator": true
16 | }]
17 | ]
18 | }
19 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | # top-most EditorConfig file
2 | root = true
3 |
4 | # Unix-style newlines with a newline ending every file
5 | [*]
6 | end_of_line = lf
7 | insert_final_newline = true
8 |
9 | # 2 space indentation
10 | [*]
11 | indent_style = space
12 | indent_size = 2
13 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | coverage
3 | 10mb-image.jpg
4 | yarn-error.log
5 | out
6 |
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | dist/*
2 | out/*
3 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "semi": false,
3 | "arrowParens": "always"
4 | }
5 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 |
2 | The MIT License (MIT)
3 |
4 | Copyright (c) 2016 Alex Tan Hong Pin
5 |
6 | Permission is hereby granted, free of charge, to any person obtaining a copy
7 | of this software and associated documentation files (the "Software"), to deal
8 | in the Software without restriction, including without limitation the rights
9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 | copies of the Software, and to permit persons to whom the Software is
11 | furnished to do so, subject to the following conditions:
12 |
13 | The above copyright notice and this permission notice shall be included in all
14 | copies or substantial portions of the Software.
15 |
16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 | SOFTWARE.
23 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # client-compress
2 |
3 | [](https://travis-ci.org/davejm/client-compress)
4 | [](https://www.npmjs.com/package/client-compress)
5 |
6 | [Check out the demo!](https://davidmoodie.com/client-compress/)
7 |
8 | A JavaScript client side image compression library. This library uses the Canvas API to compress the image, and thus will not work on the node.js server-side. This library is forked from [compress.js](https://github.com/alextanhongpin/compress.js). This version has been updated to use the latest packages, uses async/await, fixes bugs, offers more options and a cleaner API.
9 |
10 | The input format is a Blob-like object (Blob or File) representing an image (can take most image formats), and the output data format is a JPEG Blob. See the usage section for details.
11 |
12 | **Note on v1 vs v2+:** V1 originally returned the photo data as a base64 encoded string. The processing also used this base64 string which made the size calculation inaccurate. V2 and up returns the photo data as Blob object. If you really need to, you can use the static method `Compress.blobToBase64` to convert a Blob to base64 e.g. for displaying in an `img` element or uploading to server (it is preferred to use URL.createObjectURL). However, you should be able to upload images as raw Blobs. An example of how to display a compressed image is below.
13 |
14 | ## Advantages
15 |
16 | * Quick compression on the client-side
17 | * Compress multiple images and convert them to base64 string
18 | * Save data by compressing it on the client-side before sending to the server
19 | * Automatically resize the image to max 1920px (width or height, but maintains the aspect ratio of the images) - this is configurable
20 | * Fix image rotation issue when uploading images from Android an iOS (uses EXIF data)
21 |
22 | ## Limitations
23 |
24 | There are several limitations for this library:
25 |
26 | * When working with `image/gif`, the compressed image will no longer animate.
27 | * When working with `image/png` with transparent background, the compressed image will lose transparency and result in black background.
28 |
29 | ## Installation
30 |
31 | ```
32 | yarn add client-compress
33 | ```
34 |
35 | OR
36 |
37 | ```
38 | npm install client-compress --save
39 | ```
40 |
41 | ## Import
42 |
43 | ```
44 | const Compress = require('client-compress')
45 | ```
46 |
47 | ## Usage
48 |
49 | See the example directory for a full example.
50 |
51 | ### Listening to an input element and displaying the compressed image
52 |
53 | ```javascript
54 | const options = {
55 | targetSize: 0.2,
56 | quality: 0.75,
57 | maxWidth: 800,
58 | maxHeight: 600
59 | }
60 |
61 | const compress = new Compress(options)
62 | const upload = document.getElementById("upload")
63 |
64 | upload.addEventListener(
65 | "change",
66 | (evt) => {
67 | const files = [...evt.target.files]
68 | compress.compress(files).then((conversions) => {
69 | // Conversions is an array of objects like { photo, info }.
70 | // 'photo' has the photo data while 'info' contains metadata
71 | // about that particular image compression (e.g. time taken).
72 |
73 | const { photo, info } = conversions[0]
74 |
75 | console.log({ photo, info })
76 |
77 | // Create an object URL which points to the photo Blob data
78 | const objectUrl = URL.createObjectURL(photo.data)
79 |
80 | // Set the preview img src to the object URL and wait for it to load
81 | Compress.loadImageElement(preview, objectUrl).then(() => {
82 | // Revoke the object URL to free up memory
83 | URL.revokeObjectURL(objectUrl)
84 | })
85 | })
86 | },
87 | false
88 | )
89 | ```
90 |
91 | ### Example Output
92 |
93 | The `compress` method returns a promise which resolves to an array of objects which
94 | take the form `{ photo, info }` where photo contains data about the output photo,
95 | and info contains metadata about that particular compression.
96 |
97 | Here is an example of one of the elements in the output array:
98 |
99 | ```javascript
100 | {
101 | // This is the photo output
102 | "photo": {
103 | "name": "photo-1234.jpg",
104 | "type": "image/jpeg",
105 | "size": 55472.99270072992,
106 | "orientation": -1,
107 | "data": "[object Blob]",
108 | "width": 800,
109 | "height": 435.6913183279743
110 | },
111 | // This is the metadata for this conversion
112 | "info": {
113 | "start": 3572.8999999992084,
114 | "quality": 0.75,
115 | "startType": "image/jpeg",
116 | "startWidth": 4976,
117 | "startHeight": 2710,
118 | "endWidth": 800,
119 | "endHeight": 435.6913183279743,
120 | "iterations": 1,
121 | "startSizeMB": 3.11684,
122 | "endSizeMB": 0.05547299270072992,
123 | "sizeReducedInPercent": 98.22021686385153,
124 | "end": 4180.400000004738,
125 | "elapsedTimeInSeconds": 0.6075000000055297,
126 | "endType": "image/jpeg"
127 | }
128 | }
129 | ```
130 |
131 | ## Options
132 |
133 | | Option | Default | Description |
134 | | --------------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
135 | | targetSize | Infinity | The target size of the photo in MB. If the image size is greater than the target size after a compression, the image is compressed with a lower quality. This happens in a loop until the next compression would make the size <= target size or the quality would be less than the minimum quality. Setting the targetSize to Infinity will cause the algorithm to only every perform 1 iteration at the given quality. |
136 | | quality | 0.75 | The initial quality to compress the image at. |
137 | | minQuality | 0.5 | The minimum quality allowed for an image compression. This is only relevant if the initial compression does not make the image size <= the target size. |
138 | | qualityStepSize | 0.1 | The amount to try reducing the quality by in each iteration, if the image size is still > the target size. |
139 | | maxWidth | 1920 | The maximum width of the output image. |
140 | | maxHeight | 1920 | The maximum height of the output image. |
141 | | resize | true | Whether the image should be resized to within the bounds set by maxWidth and maxHeight (maintains the aspect ratio). |
142 | | throwIfSizeNotReached | false | Whether to throw an Error if the target size is not reached. |
143 | | autoRotate | true | Rotates the image based on the EXIF orientation. This only applies if the current browser does not support displaying images according to their EXIF rotation. |
144 |
--------------------------------------------------------------------------------
/example_test/EXIF_Orientation_Samples/down-mirrored.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davejm/client-compress/3ed270b8a01d86a1226085bc746c246ac8d007a1/example_test/EXIF_Orientation_Samples/down-mirrored.jpg
--------------------------------------------------------------------------------
/example_test/EXIF_Orientation_Samples/down.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davejm/client-compress/3ed270b8a01d86a1226085bc746c246ac8d007a1/example_test/EXIF_Orientation_Samples/down.jpg
--------------------------------------------------------------------------------
/example_test/EXIF_Orientation_Samples/left-mirrored.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davejm/client-compress/3ed270b8a01d86a1226085bc746c246ac8d007a1/example_test/EXIF_Orientation_Samples/left-mirrored.jpg
--------------------------------------------------------------------------------
/example_test/EXIF_Orientation_Samples/left.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davejm/client-compress/3ed270b8a01d86a1226085bc746c246ac8d007a1/example_test/EXIF_Orientation_Samples/left.jpg
--------------------------------------------------------------------------------
/example_test/EXIF_Orientation_Samples/right-mirrored.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davejm/client-compress/3ed270b8a01d86a1226085bc746c246ac8d007a1/example_test/EXIF_Orientation_Samples/right-mirrored.jpg
--------------------------------------------------------------------------------
/example_test/EXIF_Orientation_Samples/right.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davejm/client-compress/3ed270b8a01d86a1226085bc746c246ac8d007a1/example_test/EXIF_Orientation_Samples/right.jpg
--------------------------------------------------------------------------------
/example_test/EXIF_Orientation_Samples/up-mirrored.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davejm/client-compress/3ed270b8a01d86a1226085bc746c246ac8d007a1/example_test/EXIF_Orientation_Samples/up-mirrored.jpg
--------------------------------------------------------------------------------
/example_test/EXIF_Orientation_Samples/up.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davejm/client-compress/3ed270b8a01d86a1226085bc746c246ac8d007a1/example_test/EXIF_Orientation_Samples/up.jpg
--------------------------------------------------------------------------------
/example_test/baboon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davejm/client-compress/3ed270b8a01d86a1226085bc746c246ac8d007a1/example_test/baboon.png
--------------------------------------------------------------------------------
/example_test/demo.js:
--------------------------------------------------------------------------------
1 | "use strict"
2 |
3 | const options = {
4 | targetSize: 0.15,
5 | quality: 0.75,
6 | maxWidth: 1600,
7 | maxHeight: 1600
8 | }
9 |
10 | const compress = new Compress(options)
11 | const preview = document.getElementById("preview")
12 |
13 | const upload = document.getElementById("upload")
14 |
15 | function displayObject(obj, elId) {
16 | const el = document.getElementById(elId)
17 | let html = "
"
18 | for (const [key, value] of Object.entries(obj)) {
19 | if (!key.startsWith("_")) {
20 | html += `
21 |
22 | ${key}
23 | ${value}
24 | `
25 | }
26 | }
27 | html += "
"
28 | el.innerHTML = html
29 | }
30 |
31 | upload.addEventListener(
32 | "change",
33 | (evt) => {
34 | const files = [...evt.target.files]
35 | compress.compress(files).then((conversions) => {
36 | const { photo, info } = conversions[0]
37 |
38 | console.log({ photo, info })
39 |
40 | // Create an object URL which points to the photo Blob data
41 | const objectUrl = URL.createObjectURL(photo.data)
42 |
43 | // Set the preview img src to the object URL and wait for it to load
44 | Compress.loadImageElement(preview, objectUrl).then(() => {
45 | // Revoke the object URL to free up memory
46 | URL.revokeObjectURL(objectUrl)
47 | })
48 |
49 | displayObject(photo, "output-photo")
50 | displayObject(info, "output-info")
51 | })
52 | },
53 | false
54 | )
55 |
--------------------------------------------------------------------------------
/example_test/giphy.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/davejm/client-compress/3ed270b8a01d86a1226085bc746c246ac8d007a1/example_test/giphy.gif
--------------------------------------------------------------------------------
/example_test/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Compress Demo
5 |
34 |
35 |
36 |
37 |
client-compress
38 |
41 |
Usage
42 |
Compress your images before uploading to your database. Get it from
43 | here .
44 |
Demo
45 |
Upload an image and watch the file size before and after.
46 |
47 |
48 |
49 |
50 |
51 |
Photo object
52 |
Compress an image to see some output
53 |
Info object
54 |
Compress an image to see some output
55 |
56 |
57 |
59 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "client-compress",
3 | "version": "2.2.2",
4 | "description":
5 | "A client side JavaScript image compression library. Forked from compress.js (alextanhongpin), and improved rewrite by David Moodie.",
6 | "main": "dist/index.js",
7 | "files": ["dist/index.js"],
8 | "scripts": {
9 | "test": "echo \"Error: no test specified\" && exit 1",
10 | "build": "webpack -p --config webpack.config.js",
11 | "watch":
12 | "webpack --config webpack.config.js --watch -o example_test/out/index.js --mode development --devtool source-map",
13 | "precommit": "pretty-quick --staged"
14 | },
15 | "author": "David Moodie (https://davidmoodie.com)",
16 | "license": "MIT",
17 | "devDependencies": {
18 | "babel-core": "^6.26.3",
19 | "babel-loader": "^7.1.4",
20 | "babel-plugin-add-module-exports": "^0.2.1",
21 | "babel-plugin-transform-class-properties": "^6.24.1",
22 | "babel-plugin-transform-runtime": "^6.23.0",
23 | "babel-preset-env": "^1.6.1",
24 | "husky": "^0.14.3",
25 | "prettier": "1.12.1",
26 | "pretty-quick": "^1.4.1",
27 | "webpack": "^4.7.0",
28 | "webpack-cli": "^2.1.2"
29 | },
30 | "dependencies": {
31 | "babel-runtime": "^6.26.0"
32 | },
33 | "keywords": ["javascript", "image", "compression", "base64"],
34 | "repository": "github:davejm/client-compress",
35 | "homepage": "https://github.com/davejm/client-compress",
36 | "bugs": "https://github.com/davejm/client-compress/issues"
37 | }
38 |
--------------------------------------------------------------------------------
/src/Compress.js:
--------------------------------------------------------------------------------
1 | import * as converter from "./core/converter"
2 | import { resize, loadImageElement } from "./core/image"
3 | import Photo from "./core/Photo"
4 |
5 | class Compress {
6 | constructor(options = {}) {
7 | this.setOptions(options)
8 | }
9 |
10 | setOptions(options) {
11 | const defaultOptions = {
12 | targetSize: Infinity, // the max size in MB
13 | quality: 0.75, // the quality of the image, max is 1
14 | minQuality: 0.5,
15 | qualityStepSize: 0.1,
16 | maxWidth: 1920,
17 | maxHeight: 1920,
18 | resize: true,
19 | throwIfSizeNotReached: false,
20 | autoRotate: true
21 | }
22 |
23 | const handler = {
24 | get: (obj, prop) => (prop in obj ? obj[prop] : defaultOptions[prop])
25 | }
26 |
27 | const p = new Proxy(options, handler)
28 |
29 | this.options = p
30 | }
31 |
32 | async _compressFile(file) {
33 | // Create a new photo object
34 | const photo = new Photo(file)
35 |
36 | // Create the conversion info object
37 | const conversion = {}
38 | conversion.start = window.performance.now()
39 | conversion.quality = this.options.quality
40 | conversion.startType = photo.type
41 |
42 | // Load the file into the photo object
43 | await photo.load()
44 |
45 | return await this._compressImage(photo, conversion)
46 | }
47 |
48 | async _compressImage(photo, conversion) {
49 | // Store the initial dimensions
50 | conversion.startWidth = photo.width
51 | conversion.startHeight = photo.height
52 |
53 | // Resize the image
54 | let newWidth, newHeight
55 |
56 | if (this.options.resize) {
57 | const resizedDims = resize(
58 | photo.width,
59 | photo.height,
60 | this.options.maxWidth,
61 | this.options.maxHeight
62 | )
63 | newWidth = resizedDims.width
64 | newHeight = resizedDims.height
65 | } else {
66 | newWidth = photo.width
67 | newHeight = photo.height
68 | }
69 |
70 | conversion.endWidth = newWidth
71 | conversion.endHeight = newHeight
72 |
73 | // Create a canvas element and resize the image onto the canvas
74 | const orientationOverride = this.doAutoRotation ? undefined : 1
75 | const canvas = photo.getCanvas(newWidth, newHeight, orientationOverride)
76 |
77 | // Initialise some variables for recursive call
78 | conversion.iterations = 0
79 | conversion.startSizeMB = converter.size(photo.size).MB
80 |
81 | await this._loopCompression(canvas, photo, conversion)
82 |
83 | conversion.endSizeMB = converter.size(photo.size).MB
84 | conversion.sizeReducedInPercent =
85 | (conversion.startSizeMB - conversion.endSizeMB) /
86 | conversion.startSizeMB *
87 | 100
88 |
89 | conversion.end = window.performance.now()
90 | conversion.elapsedTimeInSeconds = (conversion.end - conversion.start) / 1000
91 | conversion.endType = photo.type
92 |
93 | return { photo, info: conversion }
94 | }
95 |
96 | async _loopCompression(canvas, photo, conversion) {
97 | conversion.iterations++
98 |
99 | photo.setData(await converter.canvasToBlob(canvas, conversion.quality))
100 |
101 | if (conversion.iterations == 1) {
102 | // Update the photo width and height properties now that the photo data
103 | // represents an image with these dimensions.
104 | photo.width = conversion.endWidth
105 | photo.height = conversion.endHeight
106 | }
107 |
108 | if (converter.size(photo.size).MB > this.options.targetSize) {
109 | // toFixed avoids floating point errors messing with inequality
110 | if (conversion.quality.toFixed(10) - 0.1 < this.options.minQuality) {
111 | const errorText = `Couldn't compress image to target size while maintaining quality.
112 | Target size: ${this.options.targetSize}
113 | Actual size: ${converter.size(photo.size).MB}`
114 |
115 | if (!this.options.throwIfSizeNotReached) {
116 | console.error(errorText)
117 | } else {
118 | throw new Error(errorText)
119 | }
120 | return
121 | } else {
122 | conversion.quality -= this.options.qualityStepSize
123 | return await this._loopCompression(canvas, photo, conversion)
124 | }
125 | } else {
126 | return
127 | }
128 | }
129 |
130 | async setAutoRotate() {
131 | const supportsAutoRotation = await Compress.automaticRotationFeatureTest()
132 | this.doAutoRotation = this.options.autoRotate && !supportsAutoRotation
133 | }
134 |
135 | async compress(files) {
136 | await this.setAutoRotate()
137 | return Promise.all(files.map((file) => this._compressFile(file)))
138 | }
139 |
140 | static async blobToBase64(...args) {
141 | return await converter.blobToBase64(...args)
142 | }
143 |
144 | static async loadImageElement(...args) {
145 | return await loadImageElement(...args)
146 | }
147 |
148 | static automaticRotationFeatureTest() {
149 | // Black 2x1 JPEG, with the following meta information set:
150 | // - EXIF Orientation: 6 (Rotated 90° CCW)
151 | // Source: https://github.com/blueimp/JavaScript-Load-Image
152 | const testAutoOrientationImageURL =
153 | "data:image/jpeg;base64,/9j/4QAiRXhpZgAATU0AKgAAAAgAAQESAAMAAAABAAYAAAA" +
154 | "AAAD/2wCEAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA" +
155 | "QEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE" +
156 | "BAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAf/AABEIAAEAAgMBEQACEQEDEQH/x" +
157 | "ABKAAEAAAAAAAAAAAAAAAAAAAALEAEAAAAAAAAAAAAAAAAAAAAAAQEAAAAAAAAAAAAAAAA" +
158 | "AAAAAEQEAAAAAAAAAAAAAAAAAAAAA/9oADAMBAAIRAxEAPwA/8H//2Q=="
159 |
160 | return new Promise((resolve) => {
161 | const img = new Image()
162 | img.onload = () => {
163 | // Check if browser supports automatic image orientation:
164 | const supported = img.width === 1 && img.height === 2
165 | resolve(supported)
166 | }
167 | img.src = testAutoOrientationImageURL
168 | })
169 | }
170 | }
171 |
172 | // Supported input formats
173 | // image/png, image/jpeg, image/jpg, image/gif, image/bmp, image/tiff, image/x-icon, image/svg+xml, image/webp, image/xxx
174 | // image/png, image/jpeg, image/webp
175 | export default Compress
176 |
--------------------------------------------------------------------------------
/src/core/Photo.js:
--------------------------------------------------------------------------------
1 | import { extractOrientation } from "./rotate"
2 | import { loadImageElement } from "./image"
3 | import { imageToCanvas } from "./converter"
4 |
5 | // The photo model
6 | export default class Photo {
7 | constructor(file) {
8 | this.data = file // Store the File or Blob
9 | this.name = file.name
10 | this.type = file.type
11 | this.size = file.size
12 | }
13 |
14 | setData(data) {
15 | this.data = data
16 | this.size = data.size
17 | this.type = data.type
18 | }
19 |
20 | async _calculateOrientation() {
21 | const orientation = await extractOrientation(this.data)
22 | this.orientation = orientation
23 | }
24 |
25 | async load() {
26 | await this._calculateOrientation()
27 |
28 | // Create an object URL which points to the File/Blob image data
29 | const objectUrl = URL.createObjectURL(this.data)
30 | const img = new window.Image()
31 | await loadImageElement(img, objectUrl)
32 |
33 | // Image element has now loaded the object so we can safely revoke the
34 | // object URL
35 | URL.revokeObjectURL(objectUrl)
36 |
37 | this._img = img
38 | this.width = img.naturalWidth
39 | this.height = img.naturalHeight
40 | }
41 |
42 | getCanvas(width, height, orientationOverride) {
43 | if (orientationOverride !== undefined) {
44 | return imageToCanvas(this._img, width, height, orientationOverride)
45 | } else {
46 | return imageToCanvas(this._img, width, height, this.orientation)
47 | }
48 | }
49 | }
50 |
--------------------------------------------------------------------------------
/src/core/converter.js:
--------------------------------------------------------------------------------
1 | const base64ToFile = (base64, mime = "image/jpeg") => {
2 | const byteString = window.atob(base64)
3 | const content = []
4 | for (let i = 0; i < byteString.length; i++) {
5 | content[i] = byteString.charCodeAt(i)
6 | }
7 | return new window.Blob([new Uint8Array(content)], { type: mime })
8 | }
9 |
10 | const blobToBase64 = (file) => {
11 | return new Promise((resolve, reject) => {
12 | const fileReader = new window.FileReader()
13 | fileReader.addEventListener(
14 | "load",
15 | (evt) => {
16 | resolve(evt.target.result)
17 | },
18 | false
19 | )
20 |
21 | fileReader.addEventListener(
22 | "error",
23 | (err) => {
24 | reject(err)
25 | },
26 | false
27 | )
28 |
29 | fileReader.readAsDataURL(file)
30 | })
31 | }
32 |
33 | const imageToCanvas = (image, width, height, orientation) => {
34 | const canvas = document.createElement("canvas")
35 | const context = canvas.getContext("2d")
36 |
37 | canvas.width = width
38 | canvas.height = height
39 |
40 | if (!orientation || orientation > 8) {
41 | context.drawImage(image, 0, 0, canvas.width, canvas.height)
42 | return canvas
43 | }
44 | if (orientation > 4) {
45 | canvas.width = height
46 | canvas.height = width
47 | }
48 | switch (orientation) {
49 | case 2:
50 | // horizontal flip
51 | context.translate(width, 0)
52 | context.scale(-1, 1)
53 | break
54 | case 3:
55 | // 180° rotate left
56 | context.translate(width, height)
57 | context.rotate(Math.PI)
58 | break
59 | case 4:
60 | // vertical flip
61 | context.translate(0, height)
62 | context.scale(1, -1)
63 | break
64 | case 5:
65 | // vertical flip + 90 rotate right
66 | context.rotate(0.5 * Math.PI)
67 | context.scale(1, -1)
68 | break
69 | case 6:
70 | // 90° rotate right
71 | context.rotate(0.5 * Math.PI)
72 | context.translate(0, -height)
73 | break
74 | case 7:
75 | // horizontal flip + 90 rotate right
76 | context.rotate(0.5 * Math.PI)
77 | context.translate(width, -height)
78 | context.scale(-1, 1)
79 | break
80 | case 8:
81 | // 90° rotate left
82 | context.rotate(-0.5 * Math.PI)
83 | context.translate(-width, 0)
84 | break
85 | }
86 | if (orientation > 4) {
87 | context.drawImage(image, 0, 0, canvas.height, canvas.width)
88 | } else {
89 | context.drawImage(image, 0, 0, canvas.width, canvas.height)
90 | }
91 | return canvas
92 | }
93 |
94 | const canvasToBlob = (canvas, quality) => {
95 | return new Promise((resolve, reject) => {
96 | // In order to compress, the final image format must be jpeg
97 | canvas.toBlob(
98 | (blob) => {
99 | resolve(blob)
100 | },
101 | "image/jpeg",
102 | quality
103 | )
104 | })
105 | }
106 |
107 | const size = (size) => {
108 | return {
109 | kB: size * 1e-3,
110 | MB: size * 1e-6
111 | }
112 | }
113 |
114 | export { base64ToFile, imageToCanvas, canvasToBlob, size, blobToBase64 }
115 |
--------------------------------------------------------------------------------
/src/core/image.js:
--------------------------------------------------------------------------------
1 | const loadImageElement = (img, src) => {
2 | return new Promise((resolve, reject) => {
3 | img.addEventListener(
4 | "load",
5 | () => {
6 | resolve(img)
7 | },
8 | false
9 | )
10 |
11 | img.addEventListener(
12 | "error",
13 | (err) => {
14 | reject(err)
15 | },
16 | false
17 | )
18 |
19 | img.src = src
20 | })
21 | }
22 | /*
23 | * Resize the image based on the given height or width boundary.
24 | * Auto resize based on aspect ratio.
25 | **/
26 | const resize = (currentWidth, currentHeight, maxWidth, maxHeight) => {
27 | if (!maxWidth && !maxHeight) return { currentWidth, currentHeight }
28 |
29 | const originalAspectRatio = currentWidth / currentHeight
30 | const targetAspectRatio = maxWidth / maxHeight
31 |
32 | let outputWidth, outputHeight
33 |
34 | if (originalAspectRatio > targetAspectRatio) {
35 | outputWidth = Math.min(currentWidth, maxWidth)
36 | outputHeight = outputWidth / originalAspectRatio
37 | } else {
38 | outputHeight = Math.min(currentHeight, maxHeight)
39 | outputWidth = outputHeight * originalAspectRatio
40 | }
41 |
42 | return { width: outputWidth, height: outputHeight }
43 | }
44 |
45 | export { loadImageElement, resize }
46 |
--------------------------------------------------------------------------------
/src/core/rotate.js:
--------------------------------------------------------------------------------
1 | // https://stackoverflow.com/questions/20600800/js-client-side-exif-orientation-rotate-and-mirror-jpeg-images/31273162#31273162
2 |
3 | const extractOrientation = (file) => {
4 | return new Promise((resolve, reject) => {
5 | const reader = new window.FileReader()
6 |
7 | reader.onload = function(event) {
8 | var view = new DataView(event.target.result)
9 |
10 | if (view.getUint16(0, false) !== 0xffd8) {
11 | resolve(-2)
12 | }
13 | const length = view.byteLength
14 | let offset = 2
15 |
16 | while (offset < length) {
17 | const marker = view.getUint16(offset, false)
18 | offset += 2
19 |
20 | if (marker === 0xffe1) {
21 | if (view.getUint32((offset += 2), false) !== 0x45786966) {
22 | resolve(-1)
23 | }
24 | const little = view.getUint16((offset += 6), false) === 0x4949
25 | offset += view.getUint32(offset + 4, little)
26 | const tags = view.getUint16(offset, little)
27 | offset += 2
28 |
29 | for (let i = 0; i < tags; i++) {
30 | if (view.getUint16(offset + i * 12, little) === 0x0112) {
31 | resolve(view.getUint16(offset + i * 12 + 8, little))
32 | }
33 | }
34 | } else if ((marker & 0xff00) !== 0xff00) break
35 | else offset += view.getUint16(offset, false)
36 | }
37 | resolve(-1)
38 | }
39 | reader.readAsArrayBuffer(file.slice(0, 64 * 1024))
40 | })
41 | }
42 |
43 | export { extractOrientation }
44 |
--------------------------------------------------------------------------------
/webpack.config.js:
--------------------------------------------------------------------------------
1 | const path = require("path")
2 | const webpack = require("webpack")
3 |
4 | module.exports = {
5 | entry: path.resolve(__dirname, "src", "Compress.js"),
6 | output: {
7 | path: path.resolve(__dirname, "dist"),
8 | filename: "index.js",
9 | library: "Compress",
10 | libraryTarget: "umd"
11 | },
12 | resolve: {
13 | extensions: [".js"]
14 | },
15 | module: {
16 | rules: [
17 | {
18 | test: /\.js$/,
19 | exclude: /node_modules/,
20 | loader: "babel-loader"
21 | }
22 | ]
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@mrmlnc/readdir-enhanced@^2.2.1":
6 | version "2.2.1"
7 | resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde"
8 | dependencies:
9 | call-me-maybe "^1.0.1"
10 | glob-to-regexp "^0.3.0"
11 |
12 | "@sindresorhus/is@^0.7.0":
13 | version "0.7.0"
14 | resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.7.0.tgz#9a06f4f137ee84d7df0460c1fdb1135ffa6c50fd"
15 |
16 | abbrev@1:
17 | version "1.1.1"
18 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
19 |
20 | acorn-dynamic-import@^3.0.0:
21 | version "3.0.0"
22 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz#901ceee4c7faaef7e07ad2a47e890675da50a278"
23 | dependencies:
24 | acorn "^5.0.0"
25 |
26 | acorn@^5.0.0:
27 | version "5.5.3"
28 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9"
29 |
30 | ajv-keywords@^3.1.0:
31 | version "3.2.0"
32 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.2.0.tgz#e86b819c602cf8821ad637413698f1dec021847a"
33 |
34 | ajv@^6.1.0:
35 | version "6.4.0"
36 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.4.0.tgz#d3aff78e9277549771daf0164cff48482b754fc6"
37 | dependencies:
38 | fast-deep-equal "^1.0.0"
39 | fast-json-stable-stringify "^2.0.0"
40 | json-schema-traverse "^0.3.0"
41 | uri-js "^3.0.2"
42 |
43 | ansi-escapes@^1.0.0:
44 | version "1.4.0"
45 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
46 |
47 | ansi-escapes@^3.0.0:
48 | version "3.1.0"
49 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30"
50 |
51 | ansi-regex@^2.0.0:
52 | version "2.1.1"
53 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
54 |
55 | ansi-regex@^3.0.0:
56 | version "3.0.0"
57 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
58 |
59 | ansi-styles@^2.2.1:
60 | version "2.2.1"
61 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
62 |
63 | ansi-styles@^3.2.1:
64 | version "3.2.1"
65 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
66 | dependencies:
67 | color-convert "^1.9.0"
68 |
69 | ansi-styles@~1.0.0:
70 | version "1.0.0"
71 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178"
72 |
73 | any-observable@^0.2.0:
74 | version "0.2.0"
75 | resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.2.0.tgz#c67870058003579009083f54ac0abafb5c33d242"
76 |
77 | anymatch@^2.0.0:
78 | version "2.0.0"
79 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
80 | dependencies:
81 | micromatch "^3.1.4"
82 | normalize-path "^2.1.1"
83 |
84 | aproba@^1.0.3, aproba@^1.1.1:
85 | version "1.2.0"
86 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
87 |
88 | are-we-there-yet@~1.1.2:
89 | version "1.1.4"
90 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
91 | dependencies:
92 | delegates "^1.0.0"
93 | readable-stream "^2.0.6"
94 |
95 | arr-diff@^2.0.0:
96 | version "2.0.0"
97 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
98 | dependencies:
99 | arr-flatten "^1.0.1"
100 |
101 | arr-diff@^4.0.0:
102 | version "4.0.0"
103 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
104 |
105 | arr-flatten@^1.0.1, arr-flatten@^1.1.0:
106 | version "1.1.0"
107 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
108 |
109 | arr-union@^3.1.0:
110 | version "3.1.0"
111 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
112 |
113 | array-differ@^1.0.0:
114 | version "1.0.0"
115 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031"
116 |
117 | array-union@^1.0.1:
118 | version "1.0.2"
119 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
120 | dependencies:
121 | array-uniq "^1.0.1"
122 |
123 | array-uniq@^1.0.1:
124 | version "1.0.3"
125 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
126 |
127 | array-unique@^0.2.1:
128 | version "0.2.1"
129 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
130 |
131 | array-unique@^0.3.2:
132 | version "0.3.2"
133 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
134 |
135 | arrify@^1.0.0, arrify@^1.0.1:
136 | version "1.0.1"
137 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
138 |
139 | asn1.js@^4.0.0:
140 | version "4.10.1"
141 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0"
142 | dependencies:
143 | bn.js "^4.0.0"
144 | inherits "^2.0.1"
145 | minimalistic-assert "^1.0.0"
146 |
147 | assert@^1.1.1:
148 | version "1.4.1"
149 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
150 | dependencies:
151 | util "0.10.3"
152 |
153 | assign-symbols@^1.0.0:
154 | version "1.0.0"
155 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
156 |
157 | ast-types@0.10.1:
158 | version "0.10.1"
159 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.10.1.tgz#f52fca9715579a14f841d67d7f8d25432ab6a3dd"
160 |
161 | ast-types@0.11.3:
162 | version "0.11.3"
163 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.11.3.tgz#c20757fe72ee71278ea0ff3d87e5c2ca30d9edf8"
164 |
165 | async-each@^1.0.0:
166 | version "1.0.1"
167 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
168 |
169 | async@^1.5.0:
170 | version "1.5.2"
171 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
172 |
173 | async@^2.6.0:
174 | version "2.6.0"
175 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4"
176 | dependencies:
177 | lodash "^4.14.0"
178 |
179 | atob@^2.0.0:
180 | version "2.1.1"
181 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a"
182 |
183 | babel-code-frame@^6.26.0:
184 | version "6.26.0"
185 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
186 | dependencies:
187 | chalk "^1.1.3"
188 | esutils "^2.0.2"
189 | js-tokens "^3.0.2"
190 |
191 | babel-core@^6.26.0, babel-core@^6.26.3:
192 | version "6.26.3"
193 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207"
194 | dependencies:
195 | babel-code-frame "^6.26.0"
196 | babel-generator "^6.26.0"
197 | babel-helpers "^6.24.1"
198 | babel-messages "^6.23.0"
199 | babel-register "^6.26.0"
200 | babel-runtime "^6.26.0"
201 | babel-template "^6.26.0"
202 | babel-traverse "^6.26.0"
203 | babel-types "^6.26.0"
204 | babylon "^6.18.0"
205 | convert-source-map "^1.5.1"
206 | debug "^2.6.9"
207 | json5 "^0.5.1"
208 | lodash "^4.17.4"
209 | minimatch "^3.0.4"
210 | path-is-absolute "^1.0.1"
211 | private "^0.1.8"
212 | slash "^1.0.0"
213 | source-map "^0.5.7"
214 |
215 | babel-generator@^6.26.0:
216 | version "6.26.1"
217 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90"
218 | dependencies:
219 | babel-messages "^6.23.0"
220 | babel-runtime "^6.26.0"
221 | babel-types "^6.26.0"
222 | detect-indent "^4.0.0"
223 | jsesc "^1.3.0"
224 | lodash "^4.17.4"
225 | source-map "^0.5.7"
226 | trim-right "^1.0.1"
227 |
228 | babel-helper-bindify-decorators@^6.24.1:
229 | version "6.24.1"
230 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330"
231 | dependencies:
232 | babel-runtime "^6.22.0"
233 | babel-traverse "^6.24.1"
234 | babel-types "^6.24.1"
235 |
236 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
237 | version "6.24.1"
238 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
239 | dependencies:
240 | babel-helper-explode-assignable-expression "^6.24.1"
241 | babel-runtime "^6.22.0"
242 | babel-types "^6.24.1"
243 |
244 | babel-helper-call-delegate@^6.24.1:
245 | version "6.24.1"
246 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
247 | dependencies:
248 | babel-helper-hoist-variables "^6.24.1"
249 | babel-runtime "^6.22.0"
250 | babel-traverse "^6.24.1"
251 | babel-types "^6.24.1"
252 |
253 | babel-helper-define-map@^6.24.1:
254 | version "6.26.0"
255 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
256 | dependencies:
257 | babel-helper-function-name "^6.24.1"
258 | babel-runtime "^6.26.0"
259 | babel-types "^6.26.0"
260 | lodash "^4.17.4"
261 |
262 | babel-helper-explode-assignable-expression@^6.24.1:
263 | version "6.24.1"
264 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa"
265 | dependencies:
266 | babel-runtime "^6.22.0"
267 | babel-traverse "^6.24.1"
268 | babel-types "^6.24.1"
269 |
270 | babel-helper-explode-class@^6.24.1:
271 | version "6.24.1"
272 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb"
273 | dependencies:
274 | babel-helper-bindify-decorators "^6.24.1"
275 | babel-runtime "^6.22.0"
276 | babel-traverse "^6.24.1"
277 | babel-types "^6.24.1"
278 |
279 | babel-helper-function-name@^6.24.1:
280 | version "6.24.1"
281 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
282 | dependencies:
283 | babel-helper-get-function-arity "^6.24.1"
284 | babel-runtime "^6.22.0"
285 | babel-template "^6.24.1"
286 | babel-traverse "^6.24.1"
287 | babel-types "^6.24.1"
288 |
289 | babel-helper-get-function-arity@^6.24.1:
290 | version "6.24.1"
291 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
292 | dependencies:
293 | babel-runtime "^6.22.0"
294 | babel-types "^6.24.1"
295 |
296 | babel-helper-hoist-variables@^6.24.1:
297 | version "6.24.1"
298 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
299 | dependencies:
300 | babel-runtime "^6.22.0"
301 | babel-types "^6.24.1"
302 |
303 | babel-helper-optimise-call-expression@^6.24.1:
304 | version "6.24.1"
305 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
306 | dependencies:
307 | babel-runtime "^6.22.0"
308 | babel-types "^6.24.1"
309 |
310 | babel-helper-regex@^6.24.1:
311 | version "6.26.0"
312 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
313 | dependencies:
314 | babel-runtime "^6.26.0"
315 | babel-types "^6.26.0"
316 | lodash "^4.17.4"
317 |
318 | babel-helper-remap-async-to-generator@^6.24.1:
319 | version "6.24.1"
320 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b"
321 | dependencies:
322 | babel-helper-function-name "^6.24.1"
323 | babel-runtime "^6.22.0"
324 | babel-template "^6.24.1"
325 | babel-traverse "^6.24.1"
326 | babel-types "^6.24.1"
327 |
328 | babel-helper-replace-supers@^6.24.1:
329 | version "6.24.1"
330 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
331 | dependencies:
332 | babel-helper-optimise-call-expression "^6.24.1"
333 | babel-messages "^6.23.0"
334 | babel-runtime "^6.22.0"
335 | babel-template "^6.24.1"
336 | babel-traverse "^6.24.1"
337 | babel-types "^6.24.1"
338 |
339 | babel-helpers@^6.24.1:
340 | version "6.24.1"
341 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
342 | dependencies:
343 | babel-runtime "^6.22.0"
344 | babel-template "^6.24.1"
345 |
346 | babel-loader@^7.1.4:
347 | version "7.1.4"
348 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.4.tgz#e3463938bd4e6d55d1c174c5485d406a188ed015"
349 | dependencies:
350 | find-cache-dir "^1.0.0"
351 | loader-utils "^1.0.2"
352 | mkdirp "^0.5.1"
353 |
354 | babel-messages@^6.23.0:
355 | version "6.23.0"
356 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
357 | dependencies:
358 | babel-runtime "^6.22.0"
359 |
360 | babel-plugin-add-module-exports@^0.2.1:
361 | version "0.2.1"
362 | resolved "https://registry.yarnpkg.com/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.2.1.tgz#9ae9a1f4a8dc67f0cdec4f4aeda1e43a5ff65e25"
363 |
364 | babel-plugin-check-es2015-constants@^6.22.0:
365 | version "6.22.0"
366 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
367 | dependencies:
368 | babel-runtime "^6.22.0"
369 |
370 | babel-plugin-syntax-async-functions@^6.8.0:
371 | version "6.13.0"
372 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
373 |
374 | babel-plugin-syntax-async-generators@^6.5.0:
375 | version "6.13.0"
376 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a"
377 |
378 | babel-plugin-syntax-class-constructor-call@^6.18.0:
379 | version "6.18.0"
380 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416"
381 |
382 | babel-plugin-syntax-class-properties@^6.8.0:
383 | version "6.13.0"
384 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
385 |
386 | babel-plugin-syntax-decorators@^6.13.0:
387 | version "6.13.0"
388 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b"
389 |
390 | babel-plugin-syntax-dynamic-import@^6.18.0:
391 | version "6.18.0"
392 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da"
393 |
394 | babel-plugin-syntax-exponentiation-operator@^6.8.0:
395 | version "6.13.0"
396 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
397 |
398 | babel-plugin-syntax-export-extensions@^6.8.0:
399 | version "6.13.0"
400 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721"
401 |
402 | babel-plugin-syntax-flow@^6.18.0:
403 | version "6.18.0"
404 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
405 |
406 | babel-plugin-syntax-object-rest-spread@^6.8.0:
407 | version "6.13.0"
408 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
409 |
410 | babel-plugin-syntax-trailing-function-commas@^6.22.0:
411 | version "6.22.0"
412 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
413 |
414 | babel-plugin-transform-async-generator-functions@^6.24.1:
415 | version "6.24.1"
416 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db"
417 | dependencies:
418 | babel-helper-remap-async-to-generator "^6.24.1"
419 | babel-plugin-syntax-async-generators "^6.5.0"
420 | babel-runtime "^6.22.0"
421 |
422 | babel-plugin-transform-async-to-generator@^6.22.0, babel-plugin-transform-async-to-generator@^6.24.1:
423 | version "6.24.1"
424 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
425 | dependencies:
426 | babel-helper-remap-async-to-generator "^6.24.1"
427 | babel-plugin-syntax-async-functions "^6.8.0"
428 | babel-runtime "^6.22.0"
429 |
430 | babel-plugin-transform-class-constructor-call@^6.24.1:
431 | version "6.24.1"
432 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9"
433 | dependencies:
434 | babel-plugin-syntax-class-constructor-call "^6.18.0"
435 | babel-runtime "^6.22.0"
436 | babel-template "^6.24.1"
437 |
438 | babel-plugin-transform-class-properties@^6.24.1:
439 | version "6.24.1"
440 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac"
441 | dependencies:
442 | babel-helper-function-name "^6.24.1"
443 | babel-plugin-syntax-class-properties "^6.8.0"
444 | babel-runtime "^6.22.0"
445 | babel-template "^6.24.1"
446 |
447 | babel-plugin-transform-decorators@^6.24.1:
448 | version "6.24.1"
449 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d"
450 | dependencies:
451 | babel-helper-explode-class "^6.24.1"
452 | babel-plugin-syntax-decorators "^6.13.0"
453 | babel-runtime "^6.22.0"
454 | babel-template "^6.24.1"
455 | babel-types "^6.24.1"
456 |
457 | babel-plugin-transform-es2015-arrow-functions@^6.22.0:
458 | version "6.22.0"
459 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
460 | dependencies:
461 | babel-runtime "^6.22.0"
462 |
463 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
464 | version "6.22.0"
465 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
466 | dependencies:
467 | babel-runtime "^6.22.0"
468 |
469 | babel-plugin-transform-es2015-block-scoping@^6.23.0, babel-plugin-transform-es2015-block-scoping@^6.24.1:
470 | version "6.26.0"
471 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
472 | dependencies:
473 | babel-runtime "^6.26.0"
474 | babel-template "^6.26.0"
475 | babel-traverse "^6.26.0"
476 | babel-types "^6.26.0"
477 | lodash "^4.17.4"
478 |
479 | babel-plugin-transform-es2015-classes@^6.23.0, babel-plugin-transform-es2015-classes@^6.24.1:
480 | version "6.24.1"
481 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
482 | dependencies:
483 | babel-helper-define-map "^6.24.1"
484 | babel-helper-function-name "^6.24.1"
485 | babel-helper-optimise-call-expression "^6.24.1"
486 | babel-helper-replace-supers "^6.24.1"
487 | babel-messages "^6.23.0"
488 | babel-runtime "^6.22.0"
489 | babel-template "^6.24.1"
490 | babel-traverse "^6.24.1"
491 | babel-types "^6.24.1"
492 |
493 | babel-plugin-transform-es2015-computed-properties@^6.22.0, babel-plugin-transform-es2015-computed-properties@^6.24.1:
494 | version "6.24.1"
495 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
496 | dependencies:
497 | babel-runtime "^6.22.0"
498 | babel-template "^6.24.1"
499 |
500 | babel-plugin-transform-es2015-destructuring@^6.22.0, babel-plugin-transform-es2015-destructuring@^6.23.0:
501 | version "6.23.0"
502 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
503 | dependencies:
504 | babel-runtime "^6.22.0"
505 |
506 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0, babel-plugin-transform-es2015-duplicate-keys@^6.24.1:
507 | version "6.24.1"
508 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
509 | dependencies:
510 | babel-runtime "^6.22.0"
511 | babel-types "^6.24.1"
512 |
513 | babel-plugin-transform-es2015-for-of@^6.22.0, babel-plugin-transform-es2015-for-of@^6.23.0:
514 | version "6.23.0"
515 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
516 | dependencies:
517 | babel-runtime "^6.22.0"
518 |
519 | babel-plugin-transform-es2015-function-name@^6.22.0, babel-plugin-transform-es2015-function-name@^6.24.1:
520 | version "6.24.1"
521 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
522 | dependencies:
523 | babel-helper-function-name "^6.24.1"
524 | babel-runtime "^6.22.0"
525 | babel-types "^6.24.1"
526 |
527 | babel-plugin-transform-es2015-literals@^6.22.0:
528 | version "6.22.0"
529 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
530 | dependencies:
531 | babel-runtime "^6.22.0"
532 |
533 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1:
534 | version "6.24.1"
535 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
536 | dependencies:
537 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
538 | babel-runtime "^6.22.0"
539 | babel-template "^6.24.1"
540 |
541 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
542 | version "6.26.2"
543 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3"
544 | dependencies:
545 | babel-plugin-transform-strict-mode "^6.24.1"
546 | babel-runtime "^6.26.0"
547 | babel-template "^6.26.0"
548 | babel-types "^6.26.0"
549 |
550 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0, babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
551 | version "6.24.1"
552 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
553 | dependencies:
554 | babel-helper-hoist-variables "^6.24.1"
555 | babel-runtime "^6.22.0"
556 | babel-template "^6.24.1"
557 |
558 | babel-plugin-transform-es2015-modules-umd@^6.23.0, babel-plugin-transform-es2015-modules-umd@^6.24.1:
559 | version "6.24.1"
560 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
561 | dependencies:
562 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
563 | babel-runtime "^6.22.0"
564 | babel-template "^6.24.1"
565 |
566 | babel-plugin-transform-es2015-object-super@^6.22.0, babel-plugin-transform-es2015-object-super@^6.24.1:
567 | version "6.24.1"
568 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
569 | dependencies:
570 | babel-helper-replace-supers "^6.24.1"
571 | babel-runtime "^6.22.0"
572 |
573 | babel-plugin-transform-es2015-parameters@^6.23.0, babel-plugin-transform-es2015-parameters@^6.24.1:
574 | version "6.24.1"
575 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
576 | dependencies:
577 | babel-helper-call-delegate "^6.24.1"
578 | babel-helper-get-function-arity "^6.24.1"
579 | babel-runtime "^6.22.0"
580 | babel-template "^6.24.1"
581 | babel-traverse "^6.24.1"
582 | babel-types "^6.24.1"
583 |
584 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0, babel-plugin-transform-es2015-shorthand-properties@^6.24.1:
585 | version "6.24.1"
586 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
587 | dependencies:
588 | babel-runtime "^6.22.0"
589 | babel-types "^6.24.1"
590 |
591 | babel-plugin-transform-es2015-spread@^6.22.0:
592 | version "6.22.0"
593 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
594 | dependencies:
595 | babel-runtime "^6.22.0"
596 |
597 | babel-plugin-transform-es2015-sticky-regex@^6.22.0, babel-plugin-transform-es2015-sticky-regex@^6.24.1:
598 | version "6.24.1"
599 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
600 | dependencies:
601 | babel-helper-regex "^6.24.1"
602 | babel-runtime "^6.22.0"
603 | babel-types "^6.24.1"
604 |
605 | babel-plugin-transform-es2015-template-literals@^6.22.0:
606 | version "6.22.0"
607 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
608 | dependencies:
609 | babel-runtime "^6.22.0"
610 |
611 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0, babel-plugin-transform-es2015-typeof-symbol@^6.23.0:
612 | version "6.23.0"
613 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
614 | dependencies:
615 | babel-runtime "^6.22.0"
616 |
617 | babel-plugin-transform-es2015-unicode-regex@^6.22.0, babel-plugin-transform-es2015-unicode-regex@^6.24.1:
618 | version "6.24.1"
619 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
620 | dependencies:
621 | babel-helper-regex "^6.24.1"
622 | babel-runtime "^6.22.0"
623 | regexpu-core "^2.0.0"
624 |
625 | babel-plugin-transform-exponentiation-operator@^6.22.0, babel-plugin-transform-exponentiation-operator@^6.24.1:
626 | version "6.24.1"
627 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
628 | dependencies:
629 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
630 | babel-plugin-syntax-exponentiation-operator "^6.8.0"
631 | babel-runtime "^6.22.0"
632 |
633 | babel-plugin-transform-export-extensions@^6.22.0:
634 | version "6.22.0"
635 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653"
636 | dependencies:
637 | babel-plugin-syntax-export-extensions "^6.8.0"
638 | babel-runtime "^6.22.0"
639 |
640 | babel-plugin-transform-flow-strip-types@^6.8.0:
641 | version "6.22.0"
642 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
643 | dependencies:
644 | babel-plugin-syntax-flow "^6.18.0"
645 | babel-runtime "^6.22.0"
646 |
647 | babel-plugin-transform-object-rest-spread@^6.22.0:
648 | version "6.26.0"
649 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06"
650 | dependencies:
651 | babel-plugin-syntax-object-rest-spread "^6.8.0"
652 | babel-runtime "^6.26.0"
653 |
654 | babel-plugin-transform-regenerator@^6.22.0, babel-plugin-transform-regenerator@^6.24.1:
655 | version "6.26.0"
656 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
657 | dependencies:
658 | regenerator-transform "^0.10.0"
659 |
660 | babel-plugin-transform-runtime@^6.23.0:
661 | version "6.23.0"
662 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee"
663 | dependencies:
664 | babel-runtime "^6.22.0"
665 |
666 | babel-plugin-transform-strict-mode@^6.24.1:
667 | version "6.24.1"
668 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
669 | dependencies:
670 | babel-runtime "^6.22.0"
671 | babel-types "^6.24.1"
672 |
673 | babel-preset-env@^1.6.1:
674 | version "1.6.1"
675 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48"
676 | dependencies:
677 | babel-plugin-check-es2015-constants "^6.22.0"
678 | babel-plugin-syntax-trailing-function-commas "^6.22.0"
679 | babel-plugin-transform-async-to-generator "^6.22.0"
680 | babel-plugin-transform-es2015-arrow-functions "^6.22.0"
681 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
682 | babel-plugin-transform-es2015-block-scoping "^6.23.0"
683 | babel-plugin-transform-es2015-classes "^6.23.0"
684 | babel-plugin-transform-es2015-computed-properties "^6.22.0"
685 | babel-plugin-transform-es2015-destructuring "^6.23.0"
686 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0"
687 | babel-plugin-transform-es2015-for-of "^6.23.0"
688 | babel-plugin-transform-es2015-function-name "^6.22.0"
689 | babel-plugin-transform-es2015-literals "^6.22.0"
690 | babel-plugin-transform-es2015-modules-amd "^6.22.0"
691 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0"
692 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0"
693 | babel-plugin-transform-es2015-modules-umd "^6.23.0"
694 | babel-plugin-transform-es2015-object-super "^6.22.0"
695 | babel-plugin-transform-es2015-parameters "^6.23.0"
696 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0"
697 | babel-plugin-transform-es2015-spread "^6.22.0"
698 | babel-plugin-transform-es2015-sticky-regex "^6.22.0"
699 | babel-plugin-transform-es2015-template-literals "^6.22.0"
700 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0"
701 | babel-plugin-transform-es2015-unicode-regex "^6.22.0"
702 | babel-plugin-transform-exponentiation-operator "^6.22.0"
703 | babel-plugin-transform-regenerator "^6.22.0"
704 | browserslist "^2.1.2"
705 | invariant "^2.2.2"
706 | semver "^5.3.0"
707 |
708 | babel-preset-es2015@^6.9.0:
709 | version "6.24.1"
710 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939"
711 | dependencies:
712 | babel-plugin-check-es2015-constants "^6.22.0"
713 | babel-plugin-transform-es2015-arrow-functions "^6.22.0"
714 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
715 | babel-plugin-transform-es2015-block-scoping "^6.24.1"
716 | babel-plugin-transform-es2015-classes "^6.24.1"
717 | babel-plugin-transform-es2015-computed-properties "^6.24.1"
718 | babel-plugin-transform-es2015-destructuring "^6.22.0"
719 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1"
720 | babel-plugin-transform-es2015-for-of "^6.22.0"
721 | babel-plugin-transform-es2015-function-name "^6.24.1"
722 | babel-plugin-transform-es2015-literals "^6.22.0"
723 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
724 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
725 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1"
726 | babel-plugin-transform-es2015-modules-umd "^6.24.1"
727 | babel-plugin-transform-es2015-object-super "^6.24.1"
728 | babel-plugin-transform-es2015-parameters "^6.24.1"
729 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1"
730 | babel-plugin-transform-es2015-spread "^6.22.0"
731 | babel-plugin-transform-es2015-sticky-regex "^6.24.1"
732 | babel-plugin-transform-es2015-template-literals "^6.22.0"
733 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0"
734 | babel-plugin-transform-es2015-unicode-regex "^6.24.1"
735 | babel-plugin-transform-regenerator "^6.24.1"
736 |
737 | babel-preset-stage-1@^6.5.0:
738 | version "6.24.1"
739 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0"
740 | dependencies:
741 | babel-plugin-transform-class-constructor-call "^6.24.1"
742 | babel-plugin-transform-export-extensions "^6.22.0"
743 | babel-preset-stage-2 "^6.24.1"
744 |
745 | babel-preset-stage-2@^6.24.1:
746 | version "6.24.1"
747 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1"
748 | dependencies:
749 | babel-plugin-syntax-dynamic-import "^6.18.0"
750 | babel-plugin-transform-class-properties "^6.24.1"
751 | babel-plugin-transform-decorators "^6.24.1"
752 | babel-preset-stage-3 "^6.24.1"
753 |
754 | babel-preset-stage-3@^6.24.1:
755 | version "6.24.1"
756 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395"
757 | dependencies:
758 | babel-plugin-syntax-trailing-function-commas "^6.22.0"
759 | babel-plugin-transform-async-generator-functions "^6.24.1"
760 | babel-plugin-transform-async-to-generator "^6.24.1"
761 | babel-plugin-transform-exponentiation-operator "^6.24.1"
762 | babel-plugin-transform-object-rest-spread "^6.22.0"
763 |
764 | babel-register@^6.26.0, babel-register@^6.9.0:
765 | version "6.26.0"
766 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
767 | dependencies:
768 | babel-core "^6.26.0"
769 | babel-runtime "^6.26.0"
770 | core-js "^2.5.0"
771 | home-or-tmp "^2.0.0"
772 | lodash "^4.17.4"
773 | mkdirp "^0.5.1"
774 | source-map-support "^0.4.15"
775 |
776 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
777 | version "6.26.0"
778 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
779 | dependencies:
780 | core-js "^2.4.0"
781 | regenerator-runtime "^0.11.0"
782 |
783 | babel-template@^6.24.1, babel-template@^6.26.0:
784 | version "6.26.0"
785 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
786 | dependencies:
787 | babel-runtime "^6.26.0"
788 | babel-traverse "^6.26.0"
789 | babel-types "^6.26.0"
790 | babylon "^6.18.0"
791 | lodash "^4.17.4"
792 |
793 | babel-traverse@^6.24.1, babel-traverse@^6.26.0:
794 | version "6.26.0"
795 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
796 | dependencies:
797 | babel-code-frame "^6.26.0"
798 | babel-messages "^6.23.0"
799 | babel-runtime "^6.26.0"
800 | babel-types "^6.26.0"
801 | babylon "^6.18.0"
802 | debug "^2.6.8"
803 | globals "^9.18.0"
804 | invariant "^2.2.2"
805 | lodash "^4.17.4"
806 |
807 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0:
808 | version "6.26.0"
809 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
810 | dependencies:
811 | babel-runtime "^6.26.0"
812 | esutils "^2.0.2"
813 | lodash "^4.17.4"
814 | to-fast-properties "^1.0.3"
815 |
816 | babylon@^6.17.3, babylon@^6.18.0:
817 | version "6.18.0"
818 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
819 |
820 | babylon@^7.0.0-beta.30:
821 | version "7.0.0-beta.46"
822 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.46.tgz#b6ddaba81bbb130313932757ff9c195d527088b6"
823 |
824 | balanced-match@^1.0.0:
825 | version "1.0.0"
826 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
827 |
828 | base64-js@^1.0.2:
829 | version "1.3.0"
830 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3"
831 |
832 | base@^0.11.1:
833 | version "0.11.2"
834 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
835 | dependencies:
836 | cache-base "^1.0.1"
837 | class-utils "^0.3.5"
838 | component-emitter "^1.2.1"
839 | define-property "^1.0.0"
840 | isobject "^3.0.1"
841 | mixin-deep "^1.2.0"
842 | pascalcase "^0.1.1"
843 |
844 | big.js@^3.1.3:
845 | version "3.2.0"
846 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e"
847 |
848 | binary-extensions@^1.0.0:
849 | version "1.11.0"
850 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205"
851 |
852 | binaryextensions@2:
853 | version "2.1.1"
854 | resolved "https://registry.yarnpkg.com/binaryextensions/-/binaryextensions-2.1.1.tgz#3209a51ca4a4ad541a3b8d3d6a6d5b83a2485935"
855 |
856 | bluebird@^3.5.1:
857 | version "3.5.1"
858 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9"
859 |
860 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
861 | version "4.11.8"
862 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f"
863 |
864 | brace-expansion@^1.1.7:
865 | version "1.1.11"
866 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
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 | braces@^2.3.0, braces@^2.3.1:
880 | version "2.3.2"
881 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
882 | dependencies:
883 | arr-flatten "^1.1.0"
884 | array-unique "^0.3.2"
885 | extend-shallow "^2.0.1"
886 | fill-range "^4.0.0"
887 | isobject "^3.0.1"
888 | repeat-element "^1.1.2"
889 | snapdragon "^0.8.1"
890 | snapdragon-node "^2.0.1"
891 | split-string "^3.0.2"
892 | to-regex "^3.0.1"
893 |
894 | brorand@^1.0.1:
895 | version "1.1.0"
896 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
897 |
898 | browserify-aes@^1.0.0, browserify-aes@^1.0.4:
899 | version "1.2.0"
900 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
901 | dependencies:
902 | buffer-xor "^1.0.3"
903 | cipher-base "^1.0.0"
904 | create-hash "^1.1.0"
905 | evp_bytestokey "^1.0.3"
906 | inherits "^2.0.1"
907 | safe-buffer "^5.0.1"
908 |
909 | browserify-cipher@^1.0.0:
910 | version "1.0.1"
911 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0"
912 | dependencies:
913 | browserify-aes "^1.0.4"
914 | browserify-des "^1.0.0"
915 | evp_bytestokey "^1.0.0"
916 |
917 | browserify-des@^1.0.0:
918 | version "1.0.1"
919 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.1.tgz#3343124db6d7ad53e26a8826318712bdc8450f9c"
920 | dependencies:
921 | cipher-base "^1.0.1"
922 | des.js "^1.0.0"
923 | inherits "^2.0.1"
924 |
925 | browserify-rsa@^4.0.0:
926 | version "4.0.1"
927 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
928 | dependencies:
929 | bn.js "^4.1.0"
930 | randombytes "^2.0.1"
931 |
932 | browserify-sign@^4.0.0:
933 | version "4.0.4"
934 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"
935 | dependencies:
936 | bn.js "^4.1.1"
937 | browserify-rsa "^4.0.0"
938 | create-hash "^1.1.0"
939 | create-hmac "^1.1.2"
940 | elliptic "^6.0.0"
941 | inherits "^2.0.1"
942 | parse-asn1 "^5.0.0"
943 |
944 | browserify-zlib@^0.2.0:
945 | version "0.2.0"
946 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"
947 | dependencies:
948 | pako "~1.0.5"
949 |
950 | browserslist@^2.1.2:
951 | version "2.11.3"
952 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.3.tgz#fe36167aed1bbcde4827ebfe71347a2cc70b99b2"
953 | dependencies:
954 | caniuse-lite "^1.0.30000792"
955 | electron-to-chromium "^1.3.30"
956 |
957 | buffer-from@^1.0.0:
958 | version "1.0.0"
959 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531"
960 |
961 | buffer-xor@^1.0.3:
962 | version "1.0.3"
963 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
964 |
965 | buffer@^4.3.0:
966 | version "4.9.1"
967 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
968 | dependencies:
969 | base64-js "^1.0.2"
970 | ieee754 "^1.1.4"
971 | isarray "^1.0.0"
972 |
973 | builtin-modules@^1.0.0:
974 | version "1.1.1"
975 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
976 |
977 | builtin-status-codes@^3.0.0:
978 | version "3.0.0"
979 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
980 |
981 | cacache@^10.0.4:
982 | version "10.0.4"
983 | resolved "https://registry.yarnpkg.com/cacache/-/cacache-10.0.4.tgz#6452367999eff9d4188aefd9a14e9d7c6a263460"
984 | dependencies:
985 | bluebird "^3.5.1"
986 | chownr "^1.0.1"
987 | glob "^7.1.2"
988 | graceful-fs "^4.1.11"
989 | lru-cache "^4.1.1"
990 | mississippi "^2.0.0"
991 | mkdirp "^0.5.1"
992 | move-concurrently "^1.0.1"
993 | promise-inflight "^1.0.1"
994 | rimraf "^2.6.2"
995 | ssri "^5.2.4"
996 | unique-filename "^1.1.0"
997 | y18n "^4.0.0"
998 |
999 | cache-base@^1.0.1:
1000 | version "1.0.1"
1001 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
1002 | dependencies:
1003 | collection-visit "^1.0.0"
1004 | component-emitter "^1.2.1"
1005 | get-value "^2.0.6"
1006 | has-value "^1.0.0"
1007 | isobject "^3.0.1"
1008 | set-value "^2.0.0"
1009 | to-object-path "^0.3.0"
1010 | union-value "^1.0.0"
1011 | unset-value "^1.0.0"
1012 |
1013 | cacheable-request@^2.1.1:
1014 | version "2.1.4"
1015 | resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-2.1.4.tgz#0d808801b6342ad33c91df9d0b44dc09b91e5c3d"
1016 | dependencies:
1017 | clone-response "1.0.2"
1018 | get-stream "3.0.0"
1019 | http-cache-semantics "3.8.1"
1020 | keyv "3.0.0"
1021 | lowercase-keys "1.0.0"
1022 | normalize-url "2.0.1"
1023 | responselike "1.0.2"
1024 |
1025 | call-me-maybe@^1.0.1:
1026 | version "1.0.1"
1027 | resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b"
1028 |
1029 | camelcase@^4.1.0:
1030 | version "4.1.0"
1031 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
1032 |
1033 | caniuse-lite@^1.0.30000792:
1034 | version "1.0.30000833"
1035 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000833.tgz#98e84fcdb4399c6fa0b0fd41490d3217ac7802b4"
1036 |
1037 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3:
1038 | version "1.1.3"
1039 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
1040 | dependencies:
1041 | ansi-styles "^2.2.1"
1042 | escape-string-regexp "^1.0.2"
1043 | has-ansi "^2.0.0"
1044 | strip-ansi "^3.0.0"
1045 | supports-color "^2.0.0"
1046 |
1047 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.3.2:
1048 | version "2.4.1"
1049 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e"
1050 | dependencies:
1051 | ansi-styles "^3.2.1"
1052 | escape-string-regexp "^1.0.5"
1053 | supports-color "^5.3.0"
1054 |
1055 | chalk@~0.4.0:
1056 | version "0.4.0"
1057 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f"
1058 | dependencies:
1059 | ansi-styles "~1.0.0"
1060 | has-color "~0.1.0"
1061 | strip-ansi "~0.1.0"
1062 |
1063 | chardet@^0.4.0:
1064 | version "0.4.2"
1065 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"
1066 |
1067 | chokidar@^2.0.2:
1068 | version "2.0.3"
1069 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.3.tgz#dcbd4f6cbb2a55b4799ba8a840ac527e5f4b1176"
1070 | dependencies:
1071 | anymatch "^2.0.0"
1072 | async-each "^1.0.0"
1073 | braces "^2.3.0"
1074 | glob-parent "^3.1.0"
1075 | inherits "^2.0.1"
1076 | is-binary-path "^1.0.0"
1077 | is-glob "^4.0.0"
1078 | normalize-path "^2.1.1"
1079 | path-is-absolute "^1.0.0"
1080 | readdirp "^2.0.0"
1081 | upath "^1.0.0"
1082 | optionalDependencies:
1083 | fsevents "^1.1.2"
1084 |
1085 | chownr@^1.0.1:
1086 | version "1.0.1"
1087 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181"
1088 |
1089 | chrome-trace-event@^0.1.1:
1090 | version "0.1.3"
1091 | resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-0.1.3.tgz#d395af2d31c87b90a716c831fe326f69768ec084"
1092 |
1093 | ci-info@^1.0.0:
1094 | version "1.1.3"
1095 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2"
1096 |
1097 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
1098 | version "1.0.4"
1099 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
1100 | dependencies:
1101 | inherits "^2.0.1"
1102 | safe-buffer "^5.0.1"
1103 |
1104 | class-utils@^0.3.5:
1105 | version "0.3.6"
1106 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
1107 | dependencies:
1108 | arr-union "^3.1.0"
1109 | define-property "^0.2.5"
1110 | isobject "^3.0.0"
1111 | static-extend "^0.1.1"
1112 |
1113 | cli-cursor@^1.0.2:
1114 | version "1.0.2"
1115 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
1116 | dependencies:
1117 | restore-cursor "^1.0.1"
1118 |
1119 | cli-cursor@^2.1.0:
1120 | version "2.1.0"
1121 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
1122 | dependencies:
1123 | restore-cursor "^2.0.0"
1124 |
1125 | cli-spinners@^0.1.2:
1126 | version "0.1.2"
1127 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c"
1128 |
1129 | cli-table@^0.3.1:
1130 | version "0.3.1"
1131 | resolved "https://registry.yarnpkg.com/cli-table/-/cli-table-0.3.1.tgz#f53b05266a8b1a0b934b3d0821e6e2dc5914ae23"
1132 | dependencies:
1133 | colors "1.0.3"
1134 |
1135 | cli-truncate@^0.2.1:
1136 | version "0.2.1"
1137 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574"
1138 | dependencies:
1139 | slice-ansi "0.0.4"
1140 | string-width "^1.0.1"
1141 |
1142 | cli-width@^2.0.0:
1143 | version "2.2.0"
1144 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
1145 |
1146 | cliui@^4.0.0:
1147 | version "4.1.0"
1148 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49"
1149 | dependencies:
1150 | string-width "^2.1.1"
1151 | strip-ansi "^4.0.0"
1152 | wrap-ansi "^2.0.0"
1153 |
1154 | clone-buffer@^1.0.0:
1155 | version "1.0.0"
1156 | resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58"
1157 |
1158 | clone-response@1.0.2:
1159 | version "1.0.2"
1160 | resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b"
1161 | dependencies:
1162 | mimic-response "^1.0.0"
1163 |
1164 | clone-stats@^0.0.1:
1165 | version "0.0.1"
1166 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1"
1167 |
1168 | clone-stats@^1.0.0:
1169 | version "1.0.0"
1170 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680"
1171 |
1172 | clone@^1.0.0:
1173 | version "1.0.4"
1174 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
1175 |
1176 | clone@^2.1.1:
1177 | version "2.1.1"
1178 | resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.1.tgz#d217d1e961118e3ac9a4b8bba3285553bf647cdb"
1179 |
1180 | cloneable-readable@^1.0.0:
1181 | version "1.1.2"
1182 | resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.1.2.tgz#d591dee4a8f8bc15da43ce97dceeba13d43e2a65"
1183 | dependencies:
1184 | inherits "^2.0.1"
1185 | process-nextick-args "^2.0.0"
1186 | readable-stream "^2.3.5"
1187 |
1188 | code-point-at@^1.0.0:
1189 | version "1.1.0"
1190 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
1191 |
1192 | collection-visit@^1.0.0:
1193 | version "1.0.0"
1194 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
1195 | dependencies:
1196 | map-visit "^1.0.0"
1197 | object-visit "^1.0.0"
1198 |
1199 | color-convert@^1.9.0:
1200 | version "1.9.1"
1201 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed"
1202 | dependencies:
1203 | color-name "^1.1.1"
1204 |
1205 | color-name@^1.1.1:
1206 | version "1.1.3"
1207 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
1208 |
1209 | colors@1.0.3:
1210 | version "1.0.3"
1211 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b"
1212 |
1213 | colors@^1.1.2:
1214 | version "1.2.4"
1215 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.2.4.tgz#e0cb41d3e4b20806b3bfc27f4559f01b94bc2f7c"
1216 |
1217 | commander@~2.13.0:
1218 | version "2.13.0"
1219 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c"
1220 |
1221 | commondir@^1.0.1:
1222 | version "1.0.1"
1223 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
1224 |
1225 | component-emitter@^1.2.1:
1226 | version "1.2.1"
1227 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
1228 |
1229 | concat-map@0.0.1:
1230 | version "0.0.1"
1231 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1232 |
1233 | concat-stream@^1.5.0:
1234 | version "1.6.2"
1235 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
1236 | dependencies:
1237 | buffer-from "^1.0.0"
1238 | inherits "^2.0.3"
1239 | readable-stream "^2.2.2"
1240 | typedarray "^0.0.6"
1241 |
1242 | console-browserify@^1.1.0:
1243 | version "1.1.0"
1244 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
1245 | dependencies:
1246 | date-now "^0.1.4"
1247 |
1248 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
1249 | version "1.1.0"
1250 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
1251 |
1252 | constants-browserify@^1.0.0:
1253 | version "1.0.0"
1254 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
1255 |
1256 | convert-source-map@^1.5.1:
1257 | version "1.5.1"
1258 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5"
1259 |
1260 | copy-concurrently@^1.0.0:
1261 | version "1.0.5"
1262 | resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0"
1263 | dependencies:
1264 | aproba "^1.1.1"
1265 | fs-write-stream-atomic "^1.0.8"
1266 | iferr "^0.1.5"
1267 | mkdirp "^0.5.1"
1268 | rimraf "^2.5.4"
1269 | run-queue "^1.0.0"
1270 |
1271 | copy-descriptor@^0.1.0:
1272 | version "0.1.1"
1273 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
1274 |
1275 | core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0:
1276 | version "2.5.5"
1277 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.5.tgz#b14dde936c640c0579a6b50cabcc132dd6127e3b"
1278 |
1279 | core-util-is@~1.0.0:
1280 | version "1.0.2"
1281 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1282 |
1283 | create-ecdh@^4.0.0:
1284 | version "4.0.1"
1285 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.1.tgz#44223dfed533193ba5ba54e0df5709b89acf1f82"
1286 | dependencies:
1287 | bn.js "^4.1.0"
1288 | elliptic "^6.0.0"
1289 |
1290 | create-hash@^1.1.0, create-hash@^1.1.2:
1291 | version "1.2.0"
1292 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
1293 | dependencies:
1294 | cipher-base "^1.0.1"
1295 | inherits "^2.0.1"
1296 | md5.js "^1.3.4"
1297 | ripemd160 "^2.0.1"
1298 | sha.js "^2.4.0"
1299 |
1300 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
1301 | version "1.1.7"
1302 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff"
1303 | dependencies:
1304 | cipher-base "^1.0.3"
1305 | create-hash "^1.1.0"
1306 | inherits "^2.0.1"
1307 | ripemd160 "^2.0.0"
1308 | safe-buffer "^5.0.1"
1309 | sha.js "^2.4.8"
1310 |
1311 | cross-spawn@^5.0.1:
1312 | version "5.1.0"
1313 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
1314 | dependencies:
1315 | lru-cache "^4.0.1"
1316 | shebang-command "^1.2.0"
1317 | which "^1.2.9"
1318 |
1319 | cross-spawn@^6.0.5:
1320 | version "6.0.5"
1321 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
1322 | dependencies:
1323 | nice-try "^1.0.4"
1324 | path-key "^2.0.1"
1325 | semver "^5.5.0"
1326 | shebang-command "^1.2.0"
1327 | which "^1.2.9"
1328 |
1329 | crypto-browserify@^3.11.0:
1330 | version "3.12.0"
1331 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
1332 | dependencies:
1333 | browserify-cipher "^1.0.0"
1334 | browserify-sign "^4.0.0"
1335 | create-ecdh "^4.0.0"
1336 | create-hash "^1.1.0"
1337 | create-hmac "^1.1.0"
1338 | diffie-hellman "^5.0.0"
1339 | inherits "^2.0.1"
1340 | pbkdf2 "^3.0.3"
1341 | public-encrypt "^4.0.0"
1342 | randombytes "^2.0.0"
1343 | randomfill "^1.0.3"
1344 |
1345 | cyclist@~0.2.2:
1346 | version "0.2.2"
1347 | resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640"
1348 |
1349 | dargs@^5.1.0:
1350 | version "5.1.0"
1351 | resolved "https://registry.yarnpkg.com/dargs/-/dargs-5.1.0.tgz#ec7ea50c78564cd36c9d5ec18f66329fade27829"
1352 |
1353 | date-fns@^1.27.2:
1354 | version "1.29.0"
1355 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.29.0.tgz#12e609cdcb935127311d04d33334e2960a2a54e6"
1356 |
1357 | date-now@^0.1.4:
1358 | version "0.1.4"
1359 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
1360 |
1361 | dateformat@^3.0.3:
1362 | version "3.0.3"
1363 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae"
1364 |
1365 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9:
1366 | version "2.6.9"
1367 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
1368 | dependencies:
1369 | ms "2.0.0"
1370 |
1371 | debug@^3.1.0:
1372 | version "3.1.0"
1373 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
1374 | dependencies:
1375 | ms "2.0.0"
1376 |
1377 | decamelize@^1.1.1:
1378 | version "1.2.0"
1379 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1380 |
1381 | decode-uri-component@^0.2.0:
1382 | version "0.2.0"
1383 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
1384 |
1385 | decompress-response@^3.2.0, decompress-response@^3.3.0:
1386 | version "3.3.0"
1387 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3"
1388 | dependencies:
1389 | mimic-response "^1.0.0"
1390 |
1391 | deep-extend@^0.5.1:
1392 | version "0.5.1"
1393 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.5.1.tgz#b894a9dd90d3023fbf1c55a394fb858eb2066f1f"
1394 |
1395 | define-property@^0.2.5:
1396 | version "0.2.5"
1397 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
1398 | dependencies:
1399 | is-descriptor "^0.1.0"
1400 |
1401 | define-property@^1.0.0:
1402 | version "1.0.0"
1403 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
1404 | dependencies:
1405 | is-descriptor "^1.0.0"
1406 |
1407 | define-property@^2.0.2:
1408 | version "2.0.2"
1409 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
1410 | dependencies:
1411 | is-descriptor "^1.0.2"
1412 | isobject "^3.0.1"
1413 |
1414 | delegates@^1.0.0:
1415 | version "1.0.0"
1416 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1417 |
1418 | des.js@^1.0.0:
1419 | version "1.0.0"
1420 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"
1421 | dependencies:
1422 | inherits "^2.0.1"
1423 | minimalistic-assert "^1.0.0"
1424 |
1425 | detect-conflict@^1.0.0:
1426 | version "1.0.1"
1427 | resolved "https://registry.yarnpkg.com/detect-conflict/-/detect-conflict-1.0.1.tgz#088657a66a961c05019db7c4230883b1c6b4176e"
1428 |
1429 | detect-indent@^4.0.0:
1430 | version "4.0.0"
1431 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1432 | dependencies:
1433 | repeating "^2.0.0"
1434 |
1435 | detect-libc@^1.0.2:
1436 | version "1.0.3"
1437 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
1438 |
1439 | diff@^3.3.1, diff@^3.5.0:
1440 | version "3.5.0"
1441 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
1442 |
1443 | diffie-hellman@^5.0.0:
1444 | version "5.0.3"
1445 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
1446 | dependencies:
1447 | bn.js "^4.1.0"
1448 | miller-rabin "^4.0.0"
1449 | randombytes "^2.0.0"
1450 |
1451 | dir-glob@^2.0.0:
1452 | version "2.0.0"
1453 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034"
1454 | dependencies:
1455 | arrify "^1.0.1"
1456 | path-type "^3.0.0"
1457 |
1458 | domain-browser@^1.1.1:
1459 | version "1.2.0"
1460 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
1461 |
1462 | duplexer3@^0.1.4:
1463 | version "0.1.4"
1464 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"
1465 |
1466 | duplexify@^3.4.2, duplexify@^3.6.0:
1467 | version "3.6.0"
1468 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.6.0.tgz#592903f5d80b38d037220541264d69a198fb3410"
1469 | dependencies:
1470 | end-of-stream "^1.0.0"
1471 | inherits "^2.0.1"
1472 | readable-stream "^2.0.0"
1473 | stream-shift "^1.0.0"
1474 |
1475 | editions@^1.3.3:
1476 | version "1.3.4"
1477 | resolved "https://registry.yarnpkg.com/editions/-/editions-1.3.4.tgz#3662cb592347c3168eb8e498a0ff73271d67f50b"
1478 |
1479 | ejs@^2.5.9:
1480 | version "2.6.1"
1481 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.6.1.tgz#498ec0d495655abc6f23cd61868d926464071aa0"
1482 |
1483 | electron-to-chromium@^1.3.30:
1484 | version "1.3.45"
1485 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.45.tgz#458ac1b1c5c760ce8811a16d2bfbd97ec30bafb8"
1486 |
1487 | elegant-spinner@^1.0.1:
1488 | version "1.0.1"
1489 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e"
1490 |
1491 | elliptic@^6.0.0:
1492 | version "6.4.0"
1493 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
1494 | dependencies:
1495 | bn.js "^4.4.0"
1496 | brorand "^1.0.1"
1497 | hash.js "^1.0.0"
1498 | hmac-drbg "^1.0.0"
1499 | inherits "^2.0.1"
1500 | minimalistic-assert "^1.0.0"
1501 | minimalistic-crypto-utils "^1.0.0"
1502 |
1503 | emojis-list@^2.0.0:
1504 | version "2.1.0"
1505 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
1506 |
1507 | end-of-stream@^1.0.0, end-of-stream@^1.1.0:
1508 | version "1.4.1"
1509 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43"
1510 | dependencies:
1511 | once "^1.4.0"
1512 |
1513 | enhanced-resolve@^4.0.0:
1514 | version "4.0.0"
1515 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.0.0.tgz#e34a6eaa790f62fccd71d93959f56b2b432db10a"
1516 | dependencies:
1517 | graceful-fs "^4.1.2"
1518 | memory-fs "^0.4.0"
1519 | tapable "^1.0.0"
1520 |
1521 | envinfo@^4.4.2:
1522 | version "4.4.2"
1523 | resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-4.4.2.tgz#472c49f3a8b9bca73962641ce7cb692bf623cd1c"
1524 |
1525 | errno@^0.1.3, errno@~0.1.7:
1526 | version "0.1.7"
1527 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618"
1528 | dependencies:
1529 | prr "~1.0.1"
1530 |
1531 | error-ex@^1.3.1:
1532 | version "1.3.1"
1533 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
1534 | dependencies:
1535 | is-arrayish "^0.2.1"
1536 |
1537 | error@^7.0.2:
1538 | version "7.0.2"
1539 | resolved "https://registry.yarnpkg.com/error/-/error-7.0.2.tgz#a5f75fff4d9926126ddac0ea5dc38e689153cb02"
1540 | dependencies:
1541 | string-template "~0.2.1"
1542 | xtend "~4.0.0"
1543 |
1544 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1545 | version "1.0.5"
1546 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1547 |
1548 | eslint-scope@^3.7.1:
1549 | version "3.7.1"
1550 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
1551 | dependencies:
1552 | esrecurse "^4.1.0"
1553 | estraverse "^4.1.1"
1554 |
1555 | esprima@~4.0.0:
1556 | version "4.0.0"
1557 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
1558 |
1559 | esrecurse@^4.1.0:
1560 | version "4.2.1"
1561 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
1562 | dependencies:
1563 | estraverse "^4.1.0"
1564 |
1565 | estraverse@^4.1.0, estraverse@^4.1.1:
1566 | version "4.2.0"
1567 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
1568 |
1569 | esutils@^2.0.2:
1570 | version "2.0.2"
1571 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1572 |
1573 | events@^1.0.0:
1574 | version "1.1.1"
1575 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
1576 |
1577 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
1578 | version "1.0.3"
1579 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
1580 | dependencies:
1581 | md5.js "^1.3.4"
1582 | safe-buffer "^5.1.1"
1583 |
1584 | execa@^0.7.0:
1585 | version "0.7.0"
1586 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
1587 | dependencies:
1588 | cross-spawn "^5.0.1"
1589 | get-stream "^3.0.0"
1590 | is-stream "^1.1.0"
1591 | npm-run-path "^2.0.0"
1592 | p-finally "^1.0.0"
1593 | signal-exit "^3.0.0"
1594 | strip-eof "^1.0.0"
1595 |
1596 | execa@^0.8.0:
1597 | version "0.8.0"
1598 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da"
1599 | dependencies:
1600 | cross-spawn "^5.0.1"
1601 | get-stream "^3.0.0"
1602 | is-stream "^1.1.0"
1603 | npm-run-path "^2.0.0"
1604 | p-finally "^1.0.0"
1605 | signal-exit "^3.0.0"
1606 | strip-eof "^1.0.0"
1607 |
1608 | exit-hook@^1.0.0:
1609 | version "1.1.1"
1610 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
1611 |
1612 | expand-brackets@^0.1.4:
1613 | version "0.1.5"
1614 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1615 | dependencies:
1616 | is-posix-bracket "^0.1.0"
1617 |
1618 | expand-brackets@^2.1.4:
1619 | version "2.1.4"
1620 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
1621 | dependencies:
1622 | debug "^2.3.3"
1623 | define-property "^0.2.5"
1624 | extend-shallow "^2.0.1"
1625 | posix-character-classes "^0.1.0"
1626 | regex-not "^1.0.0"
1627 | snapdragon "^0.8.1"
1628 | to-regex "^3.0.1"
1629 |
1630 | expand-range@^1.8.1:
1631 | version "1.8.2"
1632 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1633 | dependencies:
1634 | fill-range "^2.1.0"
1635 |
1636 | expand-tilde@^2.0.0, expand-tilde@^2.0.2:
1637 | version "2.0.2"
1638 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502"
1639 | dependencies:
1640 | homedir-polyfill "^1.0.1"
1641 |
1642 | extend-shallow@^2.0.1:
1643 | version "2.0.1"
1644 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
1645 | dependencies:
1646 | is-extendable "^0.1.0"
1647 |
1648 | extend-shallow@^3.0.0, extend-shallow@^3.0.2:
1649 | version "3.0.2"
1650 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
1651 | dependencies:
1652 | assign-symbols "^1.0.0"
1653 | is-extendable "^1.0.1"
1654 |
1655 | external-editor@^2.0.4, external-editor@^2.1.0:
1656 | version "2.2.0"
1657 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5"
1658 | dependencies:
1659 | chardet "^0.4.0"
1660 | iconv-lite "^0.4.17"
1661 | tmp "^0.0.33"
1662 |
1663 | extglob@^0.3.1:
1664 | version "0.3.2"
1665 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1666 | dependencies:
1667 | is-extglob "^1.0.0"
1668 |
1669 | extglob@^2.0.4:
1670 | version "2.0.4"
1671 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
1672 | dependencies:
1673 | array-unique "^0.3.2"
1674 | define-property "^1.0.0"
1675 | expand-brackets "^2.1.4"
1676 | extend-shallow "^2.0.1"
1677 | fragment-cache "^0.2.1"
1678 | regex-not "^1.0.0"
1679 | snapdragon "^0.8.1"
1680 | to-regex "^3.0.1"
1681 |
1682 | fast-deep-equal@^1.0.0:
1683 | version "1.1.0"
1684 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614"
1685 |
1686 | fast-glob@^2.0.2:
1687 | version "2.2.1"
1688 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.1.tgz#686c2345be88f3741e174add0be6f2e5b6078889"
1689 | dependencies:
1690 | "@mrmlnc/readdir-enhanced" "^2.2.1"
1691 | glob-parent "^3.1.0"
1692 | is-glob "^4.0.0"
1693 | merge2 "^1.2.1"
1694 | micromatch "^3.1.10"
1695 |
1696 | fast-json-stable-stringify@^2.0.0:
1697 | version "2.0.0"
1698 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
1699 |
1700 | figures@^1.7.0:
1701 | version "1.7.0"
1702 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
1703 | dependencies:
1704 | escape-string-regexp "^1.0.5"
1705 | object-assign "^4.1.0"
1706 |
1707 | figures@^2.0.0:
1708 | version "2.0.0"
1709 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
1710 | dependencies:
1711 | escape-string-regexp "^1.0.5"
1712 |
1713 | filename-regex@^2.0.0:
1714 | version "2.0.1"
1715 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1716 |
1717 | fill-range@^2.1.0:
1718 | version "2.2.3"
1719 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1720 | dependencies:
1721 | is-number "^2.1.0"
1722 | isobject "^2.0.0"
1723 | randomatic "^1.1.3"
1724 | repeat-element "^1.1.2"
1725 | repeat-string "^1.5.2"
1726 |
1727 | fill-range@^4.0.0:
1728 | version "4.0.0"
1729 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
1730 | dependencies:
1731 | extend-shallow "^2.0.1"
1732 | is-number "^3.0.0"
1733 | repeat-string "^1.6.1"
1734 | to-regex-range "^2.1.0"
1735 |
1736 | find-cache-dir@^1.0.0:
1737 | version "1.0.0"
1738 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f"
1739 | dependencies:
1740 | commondir "^1.0.1"
1741 | make-dir "^1.0.0"
1742 | pkg-dir "^2.0.0"
1743 |
1744 | find-up@^2.0.0, find-up@^2.1.0:
1745 | version "2.1.0"
1746 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1747 | dependencies:
1748 | locate-path "^2.0.0"
1749 |
1750 | first-chunk-stream@^2.0.0:
1751 | version "2.0.0"
1752 | resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz#1bdecdb8e083c0664b91945581577a43a9f31d70"
1753 | dependencies:
1754 | readable-stream "^2.0.2"
1755 |
1756 | flow-parser@^0.*:
1757 | version "0.71.0"
1758 | resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.71.0.tgz#da2479b83f9207905b4b17ab0c4e6d17bd505250"
1759 |
1760 | flush-write-stream@^1.0.0:
1761 | version "1.0.3"
1762 | resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.0.3.tgz#c5d586ef38af6097650b49bc41b55fabb19f35bd"
1763 | dependencies:
1764 | inherits "^2.0.1"
1765 | readable-stream "^2.0.4"
1766 |
1767 | for-in@^1.0.1, for-in@^1.0.2:
1768 | version "1.0.2"
1769 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1770 |
1771 | for-own@^0.1.4:
1772 | version "0.1.5"
1773 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1774 | dependencies:
1775 | for-in "^1.0.1"
1776 |
1777 | fragment-cache@^0.2.1:
1778 | version "0.2.1"
1779 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
1780 | dependencies:
1781 | map-cache "^0.2.2"
1782 |
1783 | from2@^2.1.0, from2@^2.1.1:
1784 | version "2.3.0"
1785 | resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
1786 | dependencies:
1787 | inherits "^2.0.1"
1788 | readable-stream "^2.0.0"
1789 |
1790 | fs-minipass@^1.2.5:
1791 | version "1.2.5"
1792 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d"
1793 | dependencies:
1794 | minipass "^2.2.1"
1795 |
1796 | fs-write-stream-atomic@^1.0.8:
1797 | version "1.0.10"
1798 | resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9"
1799 | dependencies:
1800 | graceful-fs "^4.1.2"
1801 | iferr "^0.1.5"
1802 | imurmurhash "^0.1.4"
1803 | readable-stream "1 || 2"
1804 |
1805 | fs.realpath@^1.0.0:
1806 | version "1.0.0"
1807 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1808 |
1809 | fsevents@^1.1.2:
1810 | version "1.2.3"
1811 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.3.tgz#08292982e7059f6674c93d8b829c1e8604979ac0"
1812 | dependencies:
1813 | nan "^2.9.2"
1814 | node-pre-gyp "^0.9.0"
1815 |
1816 | gauge@~2.7.3:
1817 | version "2.7.4"
1818 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1819 | dependencies:
1820 | aproba "^1.0.3"
1821 | console-control-strings "^1.0.0"
1822 | has-unicode "^2.0.0"
1823 | object-assign "^4.1.0"
1824 | signal-exit "^3.0.0"
1825 | string-width "^1.0.1"
1826 | strip-ansi "^3.0.1"
1827 | wide-align "^1.1.0"
1828 |
1829 | get-caller-file@^1.0.1:
1830 | version "1.0.2"
1831 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1832 |
1833 | get-stream@3.0.0, get-stream@^3.0.0:
1834 | version "3.0.0"
1835 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
1836 |
1837 | get-value@^2.0.3, get-value@^2.0.6:
1838 | version "2.0.6"
1839 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
1840 |
1841 | gh-got@^6.0.0:
1842 | version "6.0.0"
1843 | resolved "https://registry.yarnpkg.com/gh-got/-/gh-got-6.0.0.tgz#d74353004c6ec466647520a10bd46f7299d268d0"
1844 | dependencies:
1845 | got "^7.0.0"
1846 | is-plain-obj "^1.1.0"
1847 |
1848 | github-username@^4.0.0:
1849 | version "4.1.0"
1850 | resolved "https://registry.yarnpkg.com/github-username/-/github-username-4.1.0.tgz#cbe280041883206da4212ae9e4b5f169c30bf417"
1851 | dependencies:
1852 | gh-got "^6.0.0"
1853 |
1854 | glob-all@^3.1.0:
1855 | version "3.1.0"
1856 | resolved "https://registry.yarnpkg.com/glob-all/-/glob-all-3.1.0.tgz#8913ddfb5ee1ac7812656241b03d5217c64b02ab"
1857 | dependencies:
1858 | glob "^7.0.5"
1859 | yargs "~1.2.6"
1860 |
1861 | glob-base@^0.3.0:
1862 | version "0.3.0"
1863 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1864 | dependencies:
1865 | glob-parent "^2.0.0"
1866 | is-glob "^2.0.0"
1867 |
1868 | glob-parent@^2.0.0:
1869 | version "2.0.0"
1870 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1871 | dependencies:
1872 | is-glob "^2.0.0"
1873 |
1874 | glob-parent@^3.1.0:
1875 | version "3.1.0"
1876 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
1877 | dependencies:
1878 | is-glob "^3.1.0"
1879 | path-dirname "^1.0.0"
1880 |
1881 | glob-to-regexp@^0.3.0:
1882 | version "0.3.0"
1883 | resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab"
1884 |
1885 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.2:
1886 | version "7.1.2"
1887 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1888 | dependencies:
1889 | fs.realpath "^1.0.0"
1890 | inflight "^1.0.4"
1891 | inherits "2"
1892 | minimatch "^3.0.4"
1893 | once "^1.3.0"
1894 | path-is-absolute "^1.0.0"
1895 |
1896 | global-modules@^1.0.0:
1897 | version "1.0.0"
1898 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea"
1899 | dependencies:
1900 | global-prefix "^1.0.1"
1901 | is-windows "^1.0.1"
1902 | resolve-dir "^1.0.0"
1903 |
1904 | global-prefix@^1.0.1:
1905 | version "1.0.2"
1906 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe"
1907 | dependencies:
1908 | expand-tilde "^2.0.2"
1909 | homedir-polyfill "^1.0.1"
1910 | ini "^1.3.4"
1911 | is-windows "^1.0.1"
1912 | which "^1.2.14"
1913 |
1914 | globals@^9.18.0:
1915 | version "9.18.0"
1916 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
1917 |
1918 | globby@^6.1.0:
1919 | version "6.1.0"
1920 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
1921 | dependencies:
1922 | array-union "^1.0.1"
1923 | glob "^7.0.3"
1924 | object-assign "^4.0.1"
1925 | pify "^2.0.0"
1926 | pinkie-promise "^2.0.0"
1927 |
1928 | globby@^8.0.0:
1929 | version "8.0.1"
1930 | resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.1.tgz#b5ad48b8aa80b35b814fc1281ecc851f1d2b5b50"
1931 | dependencies:
1932 | array-union "^1.0.1"
1933 | dir-glob "^2.0.0"
1934 | fast-glob "^2.0.2"
1935 | glob "^7.1.2"
1936 | ignore "^3.3.5"
1937 | pify "^3.0.0"
1938 | slash "^1.0.0"
1939 |
1940 | got@^7.0.0:
1941 | version "7.1.0"
1942 | resolved "https://registry.yarnpkg.com/got/-/got-7.1.0.tgz#05450fd84094e6bbea56f451a43a9c289166385a"
1943 | dependencies:
1944 | decompress-response "^3.2.0"
1945 | duplexer3 "^0.1.4"
1946 | get-stream "^3.0.0"
1947 | is-plain-obj "^1.1.0"
1948 | is-retry-allowed "^1.0.0"
1949 | is-stream "^1.0.0"
1950 | isurl "^1.0.0-alpha5"
1951 | lowercase-keys "^1.0.0"
1952 | p-cancelable "^0.3.0"
1953 | p-timeout "^1.1.1"
1954 | safe-buffer "^5.0.1"
1955 | timed-out "^4.0.0"
1956 | url-parse-lax "^1.0.0"
1957 | url-to-options "^1.0.1"
1958 |
1959 | got@^8.2.0:
1960 | version "8.3.1"
1961 | resolved "https://registry.yarnpkg.com/got/-/got-8.3.1.tgz#093324403d4d955f5a16a7a8d39955d055ae10ed"
1962 | dependencies:
1963 | "@sindresorhus/is" "^0.7.0"
1964 | cacheable-request "^2.1.1"
1965 | decompress-response "^3.3.0"
1966 | duplexer3 "^0.1.4"
1967 | get-stream "^3.0.0"
1968 | into-stream "^3.1.0"
1969 | is-retry-allowed "^1.1.0"
1970 | isurl "^1.0.0-alpha5"
1971 | lowercase-keys "^1.0.0"
1972 | mimic-response "^1.0.0"
1973 | p-cancelable "^0.4.0"
1974 | p-timeout "^2.0.1"
1975 | pify "^3.0.0"
1976 | safe-buffer "^5.1.1"
1977 | timed-out "^4.0.1"
1978 | url-parse-lax "^3.0.0"
1979 | url-to-options "^1.0.1"
1980 |
1981 | graceful-fs@^4.1.11, graceful-fs@^4.1.2:
1982 | version "4.1.11"
1983 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1984 |
1985 | grouped-queue@^0.3.3:
1986 | version "0.3.3"
1987 | resolved "https://registry.yarnpkg.com/grouped-queue/-/grouped-queue-0.3.3.tgz#c167d2a5319c5a0e0964ef6a25b7c2df8996c85c"
1988 | dependencies:
1989 | lodash "^4.17.2"
1990 |
1991 | has-ansi@^2.0.0:
1992 | version "2.0.0"
1993 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1994 | dependencies:
1995 | ansi-regex "^2.0.0"
1996 |
1997 | has-color@~0.1.0:
1998 | version "0.1.7"
1999 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f"
2000 |
2001 | has-flag@^3.0.0:
2002 | version "3.0.0"
2003 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
2004 |
2005 | has-symbol-support-x@^1.4.1:
2006 | version "1.4.2"
2007 | resolved "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455"
2008 |
2009 | has-to-string-tag-x@^1.2.0:
2010 | version "1.4.1"
2011 | resolved "https://registry.yarnpkg.com/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz#a045ab383d7b4b2012a00148ab0aa5f290044d4d"
2012 | dependencies:
2013 | has-symbol-support-x "^1.4.1"
2014 |
2015 | has-unicode@^2.0.0:
2016 | version "2.0.1"
2017 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
2018 |
2019 | has-value@^0.3.1:
2020 | version "0.3.1"
2021 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
2022 | dependencies:
2023 | get-value "^2.0.3"
2024 | has-values "^0.1.4"
2025 | isobject "^2.0.0"
2026 |
2027 | has-value@^1.0.0:
2028 | version "1.0.0"
2029 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
2030 | dependencies:
2031 | get-value "^2.0.6"
2032 | has-values "^1.0.0"
2033 | isobject "^3.0.0"
2034 |
2035 | has-values@^0.1.4:
2036 | version "0.1.4"
2037 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
2038 |
2039 | has-values@^1.0.0:
2040 | version "1.0.0"
2041 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
2042 | dependencies:
2043 | is-number "^3.0.0"
2044 | kind-of "^4.0.0"
2045 |
2046 | hash-base@^3.0.0:
2047 | version "3.0.4"
2048 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918"
2049 | dependencies:
2050 | inherits "^2.0.1"
2051 | safe-buffer "^5.0.1"
2052 |
2053 | hash.js@^1.0.0, hash.js@^1.0.3:
2054 | version "1.1.3"
2055 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846"
2056 | dependencies:
2057 | inherits "^2.0.3"
2058 | minimalistic-assert "^1.0.0"
2059 |
2060 | hmac-drbg@^1.0.0:
2061 | version "1.0.1"
2062 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
2063 | dependencies:
2064 | hash.js "^1.0.3"
2065 | minimalistic-assert "^1.0.0"
2066 | minimalistic-crypto-utils "^1.0.1"
2067 |
2068 | home-or-tmp@^2.0.0:
2069 | version "2.0.0"
2070 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
2071 | dependencies:
2072 | os-homedir "^1.0.0"
2073 | os-tmpdir "^1.0.1"
2074 |
2075 | homedir-polyfill@^1.0.1:
2076 | version "1.0.1"
2077 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc"
2078 | dependencies:
2079 | parse-passwd "^1.0.0"
2080 |
2081 | hosted-git-info@^2.1.4:
2082 | version "2.6.0"
2083 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222"
2084 |
2085 | http-cache-semantics@3.8.1:
2086 | version "3.8.1"
2087 | resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2"
2088 |
2089 | https-browserify@^1.0.0:
2090 | version "1.0.0"
2091 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
2092 |
2093 | husky@^0.14.3:
2094 | version "0.14.3"
2095 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.14.3.tgz#c69ed74e2d2779769a17ba8399b54ce0b63c12c3"
2096 | dependencies:
2097 | is-ci "^1.0.10"
2098 | normalize-path "^1.0.0"
2099 | strip-indent "^2.0.0"
2100 |
2101 | iconv-lite@^0.4.17, iconv-lite@^0.4.4:
2102 | version "0.4.21"
2103 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.21.tgz#c47f8733d02171189ebc4a400f3218d348094798"
2104 | dependencies:
2105 | safer-buffer "^2.1.0"
2106 |
2107 | ieee754@^1.1.4:
2108 | version "1.1.11"
2109 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.11.tgz#c16384ffe00f5b7835824e67b6f2bd44a5229455"
2110 |
2111 | iferr@^0.1.5:
2112 | version "0.1.5"
2113 | resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"
2114 |
2115 | ignore-walk@^3.0.1:
2116 | version "3.0.1"
2117 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8"
2118 | dependencies:
2119 | minimatch "^3.0.4"
2120 |
2121 | ignore@^3.3.5, ignore@^3.3.7:
2122 | version "3.3.8"
2123 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.8.tgz#3f8e9c35d38708a3a7e0e9abb6c73e7ee7707b2b"
2124 |
2125 | import-local@^1.0.0:
2126 | version "1.0.0"
2127 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc"
2128 | dependencies:
2129 | pkg-dir "^2.0.0"
2130 | resolve-cwd "^2.0.0"
2131 |
2132 | imurmurhash@^0.1.4:
2133 | version "0.1.4"
2134 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
2135 |
2136 | indent-string@^2.1.0:
2137 | version "2.1.0"
2138 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
2139 | dependencies:
2140 | repeating "^2.0.0"
2141 |
2142 | indent-string@^3.0.0:
2143 | version "3.2.0"
2144 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
2145 |
2146 | indexof@0.0.1:
2147 | version "0.0.1"
2148 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
2149 |
2150 | inflight@^1.0.4:
2151 | version "1.0.6"
2152 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
2153 | dependencies:
2154 | once "^1.3.0"
2155 | wrappy "1"
2156 |
2157 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3:
2158 | version "2.0.3"
2159 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
2160 |
2161 | inherits@2.0.1:
2162 | version "2.0.1"
2163 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
2164 |
2165 | ini@^1.3.4, ini@~1.3.0:
2166 | version "1.3.5"
2167 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
2168 |
2169 | inquirer@^3.3.0:
2170 | version "3.3.0"
2171 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9"
2172 | dependencies:
2173 | ansi-escapes "^3.0.0"
2174 | chalk "^2.0.0"
2175 | cli-cursor "^2.1.0"
2176 | cli-width "^2.0.0"
2177 | external-editor "^2.0.4"
2178 | figures "^2.0.0"
2179 | lodash "^4.3.0"
2180 | mute-stream "0.0.7"
2181 | run-async "^2.2.0"
2182 | rx-lite "^4.0.8"
2183 | rx-lite-aggregates "^4.0.8"
2184 | string-width "^2.1.0"
2185 | strip-ansi "^4.0.0"
2186 | through "^2.3.6"
2187 |
2188 | inquirer@^5.1.0:
2189 | version "5.2.0"
2190 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-5.2.0.tgz#db350c2b73daca77ff1243962e9f22f099685726"
2191 | dependencies:
2192 | ansi-escapes "^3.0.0"
2193 | chalk "^2.0.0"
2194 | cli-cursor "^2.1.0"
2195 | cli-width "^2.0.0"
2196 | external-editor "^2.1.0"
2197 | figures "^2.0.0"
2198 | lodash "^4.3.0"
2199 | mute-stream "0.0.7"
2200 | run-async "^2.2.0"
2201 | rxjs "^5.5.2"
2202 | string-width "^2.1.0"
2203 | strip-ansi "^4.0.0"
2204 | through "^2.3.6"
2205 |
2206 | interpret@^1.0.0, interpret@^1.0.4:
2207 | version "1.1.0"
2208 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614"
2209 |
2210 | into-stream@^3.1.0:
2211 | version "3.1.0"
2212 | resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-3.1.0.tgz#96fb0a936c12babd6ff1752a17d05616abd094c6"
2213 | dependencies:
2214 | from2 "^2.1.1"
2215 | p-is-promise "^1.1.0"
2216 |
2217 | invariant@^2.2.2:
2218 | version "2.2.4"
2219 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
2220 | dependencies:
2221 | loose-envify "^1.0.0"
2222 |
2223 | invert-kv@^1.0.0:
2224 | version "1.0.0"
2225 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
2226 |
2227 | is-accessor-descriptor@^0.1.6:
2228 | version "0.1.6"
2229 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
2230 | dependencies:
2231 | kind-of "^3.0.2"
2232 |
2233 | is-accessor-descriptor@^1.0.0:
2234 | version "1.0.0"
2235 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
2236 | dependencies:
2237 | kind-of "^6.0.0"
2238 |
2239 | is-arrayish@^0.2.1:
2240 | version "0.2.1"
2241 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
2242 |
2243 | is-binary-path@^1.0.0:
2244 | version "1.0.1"
2245 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
2246 | dependencies:
2247 | binary-extensions "^1.0.0"
2248 |
2249 | is-buffer@^1.1.5:
2250 | version "1.1.6"
2251 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
2252 |
2253 | is-builtin-module@^1.0.0:
2254 | version "1.0.0"
2255 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
2256 | dependencies:
2257 | builtin-modules "^1.0.0"
2258 |
2259 | is-ci@^1.0.10:
2260 | version "1.1.0"
2261 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5"
2262 | dependencies:
2263 | ci-info "^1.0.0"
2264 |
2265 | is-data-descriptor@^0.1.4:
2266 | version "0.1.4"
2267 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
2268 | dependencies:
2269 | kind-of "^3.0.2"
2270 |
2271 | is-data-descriptor@^1.0.0:
2272 | version "1.0.0"
2273 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
2274 | dependencies:
2275 | kind-of "^6.0.0"
2276 |
2277 | is-descriptor@^0.1.0:
2278 | version "0.1.6"
2279 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
2280 | dependencies:
2281 | is-accessor-descriptor "^0.1.6"
2282 | is-data-descriptor "^0.1.4"
2283 | kind-of "^5.0.0"
2284 |
2285 | is-descriptor@^1.0.0, is-descriptor@^1.0.2:
2286 | version "1.0.2"
2287 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
2288 | dependencies:
2289 | is-accessor-descriptor "^1.0.0"
2290 | is-data-descriptor "^1.0.0"
2291 | kind-of "^6.0.2"
2292 |
2293 | is-dotfile@^1.0.0:
2294 | version "1.0.3"
2295 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
2296 |
2297 | is-equal-shallow@^0.1.3:
2298 | version "0.1.3"
2299 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
2300 | dependencies:
2301 | is-primitive "^2.0.0"
2302 |
2303 | is-extendable@^0.1.0, is-extendable@^0.1.1:
2304 | version "0.1.1"
2305 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
2306 |
2307 | is-extendable@^1.0.1:
2308 | version "1.0.1"
2309 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
2310 | dependencies:
2311 | is-plain-object "^2.0.4"
2312 |
2313 | is-extglob@^1.0.0:
2314 | version "1.0.0"
2315 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
2316 |
2317 | is-extglob@^2.1.0, is-extglob@^2.1.1:
2318 | version "2.1.1"
2319 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
2320 |
2321 | is-finite@^1.0.0:
2322 | version "1.0.2"
2323 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
2324 | dependencies:
2325 | number-is-nan "^1.0.0"
2326 |
2327 | is-fullwidth-code-point@^1.0.0:
2328 | version "1.0.0"
2329 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
2330 | dependencies:
2331 | number-is-nan "^1.0.0"
2332 |
2333 | is-fullwidth-code-point@^2.0.0:
2334 | version "2.0.0"
2335 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
2336 |
2337 | is-glob@^2.0.0, is-glob@^2.0.1:
2338 | version "2.0.1"
2339 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
2340 | dependencies:
2341 | is-extglob "^1.0.0"
2342 |
2343 | is-glob@^3.1.0:
2344 | version "3.1.0"
2345 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
2346 | dependencies:
2347 | is-extglob "^2.1.0"
2348 |
2349 | is-glob@^4.0.0:
2350 | version "4.0.0"
2351 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0"
2352 | dependencies:
2353 | is-extglob "^2.1.1"
2354 |
2355 | is-number@^2.1.0:
2356 | version "2.1.0"
2357 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
2358 | dependencies:
2359 | kind-of "^3.0.2"
2360 |
2361 | is-number@^3.0.0:
2362 | version "3.0.0"
2363 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
2364 | dependencies:
2365 | kind-of "^3.0.2"
2366 |
2367 | is-number@^4.0.0:
2368 | version "4.0.0"
2369 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff"
2370 |
2371 | is-object@^1.0.1:
2372 | version "1.0.1"
2373 | resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470"
2374 |
2375 | is-observable@^0.2.0:
2376 | version "0.2.0"
2377 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2"
2378 | dependencies:
2379 | symbol-observable "^0.2.2"
2380 |
2381 | is-odd@^2.0.0:
2382 | version "2.0.0"
2383 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24"
2384 | dependencies:
2385 | is-number "^4.0.0"
2386 |
2387 | is-plain-obj@^1.0.0, is-plain-obj@^1.1.0:
2388 | version "1.1.0"
2389 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
2390 |
2391 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
2392 | version "2.0.4"
2393 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
2394 | dependencies:
2395 | isobject "^3.0.1"
2396 |
2397 | is-posix-bracket@^0.1.0:
2398 | version "0.1.1"
2399 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
2400 |
2401 | is-primitive@^2.0.0:
2402 | version "2.0.0"
2403 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
2404 |
2405 | is-promise@^2.1.0:
2406 | version "2.1.0"
2407 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
2408 |
2409 | is-retry-allowed@^1.0.0, is-retry-allowed@^1.1.0:
2410 | version "1.1.0"
2411 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34"
2412 |
2413 | is-scoped@^1.0.0:
2414 | version "1.0.0"
2415 | resolved "https://registry.yarnpkg.com/is-scoped/-/is-scoped-1.0.0.tgz#449ca98299e713038256289ecb2b540dc437cb30"
2416 | dependencies:
2417 | scoped-regex "^1.0.0"
2418 |
2419 | is-stream@^1.0.0, is-stream@^1.1.0:
2420 | version "1.1.0"
2421 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
2422 |
2423 | is-utf8@^0.2.0:
2424 | version "0.2.1"
2425 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
2426 |
2427 | is-windows@^1.0.1, is-windows@^1.0.2:
2428 | version "1.0.2"
2429 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
2430 |
2431 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
2432 | version "1.0.0"
2433 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
2434 |
2435 | isbinaryfile@^3.0.2:
2436 | version "3.0.2"
2437 | resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.2.tgz#4a3e974ec0cba9004d3fc6cde7209ea69368a621"
2438 |
2439 | isexe@^2.0.0:
2440 | version "2.0.0"
2441 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
2442 |
2443 | isobject@^2.0.0:
2444 | version "2.1.0"
2445 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
2446 | dependencies:
2447 | isarray "1.0.0"
2448 |
2449 | isobject@^3.0.0, isobject@^3.0.1:
2450 | version "3.0.1"
2451 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
2452 |
2453 | istextorbinary@^2.2.1:
2454 | version "2.2.1"
2455 | resolved "https://registry.yarnpkg.com/istextorbinary/-/istextorbinary-2.2.1.tgz#a5231a08ef6dd22b268d0895084cf8d58b5bec53"
2456 | dependencies:
2457 | binaryextensions "2"
2458 | editions "^1.3.3"
2459 | textextensions "2"
2460 |
2461 | isurl@^1.0.0-alpha5:
2462 | version "1.0.0"
2463 | resolved "https://registry.yarnpkg.com/isurl/-/isurl-1.0.0.tgz#b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67"
2464 | dependencies:
2465 | has-to-string-tag-x "^1.2.0"
2466 | is-object "^1.0.1"
2467 |
2468 | js-tokens@^3.0.0, js-tokens@^3.0.2:
2469 | version "3.0.2"
2470 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
2471 |
2472 | jscodeshift@^0.4.0:
2473 | version "0.4.1"
2474 | resolved "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.4.1.tgz#da91a1c2eccfa03a3387a21d39948e251ced444a"
2475 | dependencies:
2476 | async "^1.5.0"
2477 | babel-plugin-transform-flow-strip-types "^6.8.0"
2478 | babel-preset-es2015 "^6.9.0"
2479 | babel-preset-stage-1 "^6.5.0"
2480 | babel-register "^6.9.0"
2481 | babylon "^6.17.3"
2482 | colors "^1.1.2"
2483 | flow-parser "^0.*"
2484 | lodash "^4.13.1"
2485 | micromatch "^2.3.7"
2486 | node-dir "0.1.8"
2487 | nomnom "^1.8.1"
2488 | recast "^0.12.5"
2489 | temp "^0.8.1"
2490 | write-file-atomic "^1.2.0"
2491 |
2492 | jscodeshift@^0.5.0:
2493 | version "0.5.0"
2494 | resolved "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.5.0.tgz#bdb7b6cc20dd62c16aa728c3fa2d2fe66ca7c748"
2495 | dependencies:
2496 | babel-plugin-transform-flow-strip-types "^6.8.0"
2497 | babel-preset-es2015 "^6.9.0"
2498 | babel-preset-stage-1 "^6.5.0"
2499 | babel-register "^6.9.0"
2500 | babylon "^7.0.0-beta.30"
2501 | colors "^1.1.2"
2502 | flow-parser "^0.*"
2503 | lodash "^4.13.1"
2504 | micromatch "^2.3.7"
2505 | neo-async "^2.5.0"
2506 | node-dir "0.1.8"
2507 | nomnom "^1.8.1"
2508 | recast "^0.14.1"
2509 | temp "^0.8.1"
2510 | write-file-atomic "^1.2.0"
2511 |
2512 | jsesc@^1.3.0:
2513 | version "1.3.0"
2514 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
2515 |
2516 | jsesc@~0.5.0:
2517 | version "0.5.0"
2518 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2519 |
2520 | json-buffer@3.0.0:
2521 | version "3.0.0"
2522 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898"
2523 |
2524 | json-parse-better-errors@^1.0.1:
2525 | version "1.0.2"
2526 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
2527 |
2528 | json-schema-traverse@^0.3.0:
2529 | version "0.3.1"
2530 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
2531 |
2532 | json5@^0.5.0, json5@^0.5.1:
2533 | version "0.5.1"
2534 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
2535 |
2536 | keyv@3.0.0:
2537 | version "3.0.0"
2538 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.0.0.tgz#44923ba39e68b12a7cec7df6c3268c031f2ef373"
2539 | dependencies:
2540 | json-buffer "3.0.0"
2541 |
2542 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
2543 | version "3.2.2"
2544 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
2545 | dependencies:
2546 | is-buffer "^1.1.5"
2547 |
2548 | kind-of@^4.0.0:
2549 | version "4.0.0"
2550 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
2551 | dependencies:
2552 | is-buffer "^1.1.5"
2553 |
2554 | kind-of@^5.0.0:
2555 | version "5.1.0"
2556 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
2557 |
2558 | kind-of@^6.0.0, kind-of@^6.0.2:
2559 | version "6.0.2"
2560 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
2561 |
2562 | lcid@^1.0.0:
2563 | version "1.0.0"
2564 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
2565 | dependencies:
2566 | invert-kv "^1.0.0"
2567 |
2568 | listr-silent-renderer@^1.1.1:
2569 | version "1.1.1"
2570 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e"
2571 |
2572 | listr-update-renderer@^0.4.0:
2573 | version "0.4.0"
2574 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.4.0.tgz#344d980da2ca2e8b145ba305908f32ae3f4cc8a7"
2575 | dependencies:
2576 | chalk "^1.1.3"
2577 | cli-truncate "^0.2.1"
2578 | elegant-spinner "^1.0.1"
2579 | figures "^1.7.0"
2580 | indent-string "^3.0.0"
2581 | log-symbols "^1.0.2"
2582 | log-update "^1.0.2"
2583 | strip-ansi "^3.0.1"
2584 |
2585 | listr-verbose-renderer@^0.4.0:
2586 | version "0.4.1"
2587 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#8206f4cf6d52ddc5827e5fd14989e0e965933a35"
2588 | dependencies:
2589 | chalk "^1.1.3"
2590 | cli-cursor "^1.0.2"
2591 | date-fns "^1.27.2"
2592 | figures "^1.7.0"
2593 |
2594 | listr@^0.13.0:
2595 | version "0.13.0"
2596 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.13.0.tgz#20bb0ba30bae660ee84cc0503df4be3d5623887d"
2597 | dependencies:
2598 | chalk "^1.1.3"
2599 | cli-truncate "^0.2.1"
2600 | figures "^1.7.0"
2601 | indent-string "^2.1.0"
2602 | is-observable "^0.2.0"
2603 | is-promise "^2.1.0"
2604 | is-stream "^1.1.0"
2605 | listr-silent-renderer "^1.1.1"
2606 | listr-update-renderer "^0.4.0"
2607 | listr-verbose-renderer "^0.4.0"
2608 | log-symbols "^1.0.2"
2609 | log-update "^1.0.2"
2610 | ora "^0.2.3"
2611 | p-map "^1.1.1"
2612 | rxjs "^5.4.2"
2613 | stream-to-observable "^0.2.0"
2614 | strip-ansi "^3.0.1"
2615 |
2616 | load-json-file@^4.0.0:
2617 | version "4.0.0"
2618 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
2619 | dependencies:
2620 | graceful-fs "^4.1.2"
2621 | parse-json "^4.0.0"
2622 | pify "^3.0.0"
2623 | strip-bom "^3.0.0"
2624 |
2625 | loader-runner@^2.3.0:
2626 | version "2.3.0"
2627 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2"
2628 |
2629 | loader-utils@^1.0.2, loader-utils@^1.1.0:
2630 | version "1.1.0"
2631 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd"
2632 | dependencies:
2633 | big.js "^3.1.3"
2634 | emojis-list "^2.0.0"
2635 | json5 "^0.5.0"
2636 |
2637 | locate-path@^2.0.0:
2638 | version "2.0.0"
2639 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
2640 | dependencies:
2641 | p-locate "^2.0.0"
2642 | path-exists "^3.0.0"
2643 |
2644 | lodash@^4.13.1, lodash@^4.14.0, lodash@^4.17.10, lodash@^4.17.2, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0:
2645 | version "4.17.10"
2646 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"
2647 |
2648 | log-symbols@^1.0.2:
2649 | version "1.0.2"
2650 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18"
2651 | dependencies:
2652 | chalk "^1.0.0"
2653 |
2654 | log-symbols@^2.1.0, log-symbols@^2.2.0:
2655 | version "2.2.0"
2656 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a"
2657 | dependencies:
2658 | chalk "^2.0.1"
2659 |
2660 | log-update@^1.0.2:
2661 | version "1.0.2"
2662 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1"
2663 | dependencies:
2664 | ansi-escapes "^1.0.0"
2665 | cli-cursor "^1.0.2"
2666 |
2667 | loose-envify@^1.0.0:
2668 | version "1.3.1"
2669 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
2670 | dependencies:
2671 | js-tokens "^3.0.0"
2672 |
2673 | lowercase-keys@1.0.0:
2674 | version "1.0.0"
2675 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306"
2676 |
2677 | lowercase-keys@^1.0.0:
2678 | version "1.0.1"
2679 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f"
2680 |
2681 | lru-cache@^4.0.1, lru-cache@^4.1.1:
2682 | version "4.1.2"
2683 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f"
2684 | dependencies:
2685 | pseudomap "^1.0.2"
2686 | yallist "^2.1.2"
2687 |
2688 | make-dir@^1.0.0, make-dir@^1.1.0:
2689 | version "1.2.0"
2690 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.2.0.tgz#6d6a49eead4aae296c53bbf3a1a008bd6c89469b"
2691 | dependencies:
2692 | pify "^3.0.0"
2693 |
2694 | map-cache@^0.2.2:
2695 | version "0.2.2"
2696 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
2697 |
2698 | map-visit@^1.0.0:
2699 | version "1.0.0"
2700 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
2701 | dependencies:
2702 | object-visit "^1.0.0"
2703 |
2704 | md5.js@^1.3.4:
2705 | version "1.3.4"
2706 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d"
2707 | dependencies:
2708 | hash-base "^3.0.0"
2709 | inherits "^2.0.1"
2710 |
2711 | mem-fs-editor@^4.0.0:
2712 | version "4.0.1"
2713 | resolved "https://registry.yarnpkg.com/mem-fs-editor/-/mem-fs-editor-4.0.1.tgz#27e6b59df91b37248e9be2145b1bea84695103ed"
2714 | dependencies:
2715 | commondir "^1.0.1"
2716 | deep-extend "^0.5.1"
2717 | ejs "^2.5.9"
2718 | glob "^7.0.3"
2719 | globby "^8.0.0"
2720 | isbinaryfile "^3.0.2"
2721 | mkdirp "^0.5.0"
2722 | multimatch "^2.0.0"
2723 | rimraf "^2.2.8"
2724 | through2 "^2.0.0"
2725 | vinyl "^2.0.1"
2726 |
2727 | mem-fs@^1.1.0:
2728 | version "1.1.3"
2729 | resolved "https://registry.yarnpkg.com/mem-fs/-/mem-fs-1.1.3.tgz#b8ae8d2e3fcb6f5d3f9165c12d4551a065d989cc"
2730 | dependencies:
2731 | through2 "^2.0.0"
2732 | vinyl "^1.1.0"
2733 | vinyl-file "^2.0.0"
2734 |
2735 | mem@^1.1.0:
2736 | version "1.1.0"
2737 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
2738 | dependencies:
2739 | mimic-fn "^1.0.0"
2740 |
2741 | memory-fs@^0.4.0, memory-fs@~0.4.1:
2742 | version "0.4.1"
2743 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
2744 | dependencies:
2745 | errno "^0.1.3"
2746 | readable-stream "^2.0.1"
2747 |
2748 | merge2@^1.2.1:
2749 | version "1.2.2"
2750 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.2.2.tgz#03212e3da8d86c4d8523cebd6318193414f94e34"
2751 |
2752 | micromatch@^2.3.7:
2753 | version "2.3.11"
2754 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2755 | dependencies:
2756 | arr-diff "^2.0.0"
2757 | array-unique "^0.2.1"
2758 | braces "^1.8.2"
2759 | expand-brackets "^0.1.4"
2760 | extglob "^0.3.1"
2761 | filename-regex "^2.0.0"
2762 | is-extglob "^1.0.0"
2763 | is-glob "^2.0.1"
2764 | kind-of "^3.0.2"
2765 | normalize-path "^2.0.1"
2766 | object.omit "^2.0.0"
2767 | parse-glob "^3.0.4"
2768 | regex-cache "^0.4.2"
2769 |
2770 | micromatch@^3.1.10, micromatch@^3.1.4, micromatch@^3.1.8:
2771 | version "3.1.10"
2772 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
2773 | dependencies:
2774 | arr-diff "^4.0.0"
2775 | array-unique "^0.3.2"
2776 | braces "^2.3.1"
2777 | define-property "^2.0.2"
2778 | extend-shallow "^3.0.2"
2779 | extglob "^2.0.4"
2780 | fragment-cache "^0.2.1"
2781 | kind-of "^6.0.2"
2782 | nanomatch "^1.2.9"
2783 | object.pick "^1.3.0"
2784 | regex-not "^1.0.0"
2785 | snapdragon "^0.8.1"
2786 | to-regex "^3.0.2"
2787 |
2788 | miller-rabin@^4.0.0:
2789 | version "4.0.1"
2790 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
2791 | dependencies:
2792 | bn.js "^4.0.0"
2793 | brorand "^1.0.1"
2794 |
2795 | mimic-fn@^1.0.0:
2796 | version "1.2.0"
2797 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
2798 |
2799 | mimic-response@^1.0.0:
2800 | version "1.0.0"
2801 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.0.tgz#df3d3652a73fded6b9b0b24146e6fd052353458e"
2802 |
2803 | minimalistic-assert@^1.0.0:
2804 | version "1.0.1"
2805 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
2806 |
2807 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
2808 | version "1.0.1"
2809 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
2810 |
2811 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4:
2812 | version "3.0.4"
2813 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2814 | dependencies:
2815 | brace-expansion "^1.1.7"
2816 |
2817 | minimist@0.0.8:
2818 | version "0.0.8"
2819 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2820 |
2821 | minimist@^0.1.0:
2822 | version "0.1.0"
2823 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.1.0.tgz#99df657a52574c21c9057497df742790b2b4c0de"
2824 |
2825 | minimist@^1.2.0:
2826 | version "1.2.0"
2827 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2828 |
2829 | minipass@^2.2.1, minipass@^2.2.4:
2830 | version "2.2.4"
2831 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.2.4.tgz#03c824d84551ec38a8d1bb5bc350a5a30a354a40"
2832 | dependencies:
2833 | safe-buffer "^5.1.1"
2834 | yallist "^3.0.0"
2835 |
2836 | minizlib@^1.1.0:
2837 | version "1.1.0"
2838 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb"
2839 | dependencies:
2840 | minipass "^2.2.1"
2841 |
2842 | mississippi@^2.0.0:
2843 | version "2.0.0"
2844 | resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-2.0.0.tgz#3442a508fafc28500486feea99409676e4ee5a6f"
2845 | dependencies:
2846 | concat-stream "^1.5.0"
2847 | duplexify "^3.4.2"
2848 | end-of-stream "^1.1.0"
2849 | flush-write-stream "^1.0.0"
2850 | from2 "^2.1.0"
2851 | parallel-transform "^1.1.0"
2852 | pump "^2.0.1"
2853 | pumpify "^1.3.3"
2854 | stream-each "^1.1.0"
2855 | through2 "^2.0.0"
2856 |
2857 | mixin-deep@^1.2.0:
2858 | version "1.3.1"
2859 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe"
2860 | dependencies:
2861 | for-in "^1.0.2"
2862 | is-extendable "^1.0.1"
2863 |
2864 | mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0:
2865 | version "0.5.1"
2866 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2867 | dependencies:
2868 | minimist "0.0.8"
2869 |
2870 | move-concurrently@^1.0.1:
2871 | version "1.0.1"
2872 | resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
2873 | dependencies:
2874 | aproba "^1.1.1"
2875 | copy-concurrently "^1.0.0"
2876 | fs-write-stream-atomic "^1.0.8"
2877 | mkdirp "^0.5.1"
2878 | rimraf "^2.5.4"
2879 | run-queue "^1.0.3"
2880 |
2881 | mri@^1.1.0:
2882 | version "1.1.0"
2883 | resolved "https://registry.yarnpkg.com/mri/-/mri-1.1.0.tgz#5c0a3f29c8ccffbbb1ec941dcec09d71fa32f36a"
2884 |
2885 | ms@2.0.0:
2886 | version "2.0.0"
2887 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2888 |
2889 | multimatch@^2.0.0:
2890 | version "2.1.0"
2891 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b"
2892 | dependencies:
2893 | array-differ "^1.0.0"
2894 | array-union "^1.0.1"
2895 | arrify "^1.0.0"
2896 | minimatch "^3.0.0"
2897 |
2898 | mute-stream@0.0.7:
2899 | version "0.0.7"
2900 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
2901 |
2902 | nan@^2.9.2:
2903 | version "2.10.0"
2904 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f"
2905 |
2906 | nanomatch@^1.2.9:
2907 | version "1.2.9"
2908 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2"
2909 | dependencies:
2910 | arr-diff "^4.0.0"
2911 | array-unique "^0.3.2"
2912 | define-property "^2.0.2"
2913 | extend-shallow "^3.0.2"
2914 | fragment-cache "^0.2.1"
2915 | is-odd "^2.0.0"
2916 | is-windows "^1.0.2"
2917 | kind-of "^6.0.2"
2918 | object.pick "^1.3.0"
2919 | regex-not "^1.0.0"
2920 | snapdragon "^0.8.1"
2921 | to-regex "^3.0.1"
2922 |
2923 | needle@^2.2.0:
2924 | version "2.2.1"
2925 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d"
2926 | dependencies:
2927 | debug "^2.1.2"
2928 | iconv-lite "^0.4.4"
2929 | sax "^1.2.4"
2930 |
2931 | neo-async@^2.5.0:
2932 | version "2.5.1"
2933 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.5.1.tgz#acb909e327b1e87ec9ef15f41b8a269512ad41ee"
2934 |
2935 | nice-try@^1.0.4:
2936 | version "1.0.4"
2937 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.4.tgz#d93962f6c52f2c1558c0fbda6d512819f1efe1c4"
2938 |
2939 | node-dir@0.1.8:
2940 | version "0.1.8"
2941 | resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.8.tgz#55fb8deb699070707fb67f91a460f0448294c77d"
2942 |
2943 | node-libs-browser@^2.0.0:
2944 | version "2.1.0"
2945 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df"
2946 | dependencies:
2947 | assert "^1.1.1"
2948 | browserify-zlib "^0.2.0"
2949 | buffer "^4.3.0"
2950 | console-browserify "^1.1.0"
2951 | constants-browserify "^1.0.0"
2952 | crypto-browserify "^3.11.0"
2953 | domain-browser "^1.1.1"
2954 | events "^1.0.0"
2955 | https-browserify "^1.0.0"
2956 | os-browserify "^0.3.0"
2957 | path-browserify "0.0.0"
2958 | process "^0.11.10"
2959 | punycode "^1.2.4"
2960 | querystring-es3 "^0.2.0"
2961 | readable-stream "^2.3.3"
2962 | stream-browserify "^2.0.1"
2963 | stream-http "^2.7.2"
2964 | string_decoder "^1.0.0"
2965 | timers-browserify "^2.0.4"
2966 | tty-browserify "0.0.0"
2967 | url "^0.11.0"
2968 | util "^0.10.3"
2969 | vm-browserify "0.0.4"
2970 |
2971 | node-pre-gyp@^0.9.0:
2972 | version "0.9.1"
2973 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.9.1.tgz#f11c07516dd92f87199dbc7e1838eab7cd56c9e0"
2974 | dependencies:
2975 | detect-libc "^1.0.2"
2976 | mkdirp "^0.5.1"
2977 | needle "^2.2.0"
2978 | nopt "^4.0.1"
2979 | npm-packlist "^1.1.6"
2980 | npmlog "^4.0.2"
2981 | rc "^1.1.7"
2982 | rimraf "^2.6.1"
2983 | semver "^5.3.0"
2984 | tar "^4"
2985 |
2986 | nomnom@^1.8.1:
2987 | version "1.8.1"
2988 | resolved "https://registry.yarnpkg.com/nomnom/-/nomnom-1.8.1.tgz#2151f722472ba79e50a76fc125bb8c8f2e4dc2a7"
2989 | dependencies:
2990 | chalk "~0.4.0"
2991 | underscore "~1.6.0"
2992 |
2993 | nopt@^4.0.1:
2994 | version "4.0.1"
2995 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
2996 | dependencies:
2997 | abbrev "1"
2998 | osenv "^0.1.4"
2999 |
3000 | normalize-package-data@^2.3.2:
3001 | version "2.4.0"
3002 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
3003 | dependencies:
3004 | hosted-git-info "^2.1.4"
3005 | is-builtin-module "^1.0.0"
3006 | semver "2 || 3 || 4 || 5"
3007 | validate-npm-package-license "^3.0.1"
3008 |
3009 | normalize-path@^1.0.0:
3010 | version "1.0.0"
3011 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379"
3012 |
3013 | normalize-path@^2.0.1, normalize-path@^2.1.1:
3014 | version "2.1.1"
3015 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
3016 | dependencies:
3017 | remove-trailing-separator "^1.0.1"
3018 |
3019 | normalize-url@2.0.1:
3020 | version "2.0.1"
3021 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-2.0.1.tgz#835a9da1551fa26f70e92329069a23aa6574d7e6"
3022 | dependencies:
3023 | prepend-http "^2.0.0"
3024 | query-string "^5.0.1"
3025 | sort-keys "^2.0.0"
3026 |
3027 | npm-bundled@^1.0.1:
3028 | version "1.0.3"
3029 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308"
3030 |
3031 | npm-packlist@^1.1.6:
3032 | version "1.1.10"
3033 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a"
3034 | dependencies:
3035 | ignore-walk "^3.0.1"
3036 | npm-bundled "^1.0.1"
3037 |
3038 | npm-run-path@^2.0.0:
3039 | version "2.0.2"
3040 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
3041 | dependencies:
3042 | path-key "^2.0.0"
3043 |
3044 | npmlog@^4.0.2:
3045 | version "4.1.2"
3046 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
3047 | dependencies:
3048 | are-we-there-yet "~1.1.2"
3049 | console-control-strings "~1.1.0"
3050 | gauge "~2.7.3"
3051 | set-blocking "~2.0.0"
3052 |
3053 | number-is-nan@^1.0.0:
3054 | version "1.0.1"
3055 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
3056 |
3057 | object-assign@^4.0.1, object-assign@^4.1.0:
3058 | version "4.1.1"
3059 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
3060 |
3061 | object-copy@^0.1.0:
3062 | version "0.1.0"
3063 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
3064 | dependencies:
3065 | copy-descriptor "^0.1.0"
3066 | define-property "^0.2.5"
3067 | kind-of "^3.0.3"
3068 |
3069 | object-visit@^1.0.0:
3070 | version "1.0.1"
3071 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
3072 | dependencies:
3073 | isobject "^3.0.0"
3074 |
3075 | object.omit@^2.0.0:
3076 | version "2.0.1"
3077 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
3078 | dependencies:
3079 | for-own "^0.1.4"
3080 | is-extendable "^0.1.1"
3081 |
3082 | object.pick@^1.3.0:
3083 | version "1.3.0"
3084 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
3085 | dependencies:
3086 | isobject "^3.0.1"
3087 |
3088 | once@^1.3.0, once@^1.3.1, once@^1.4.0:
3089 | version "1.4.0"
3090 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
3091 | dependencies:
3092 | wrappy "1"
3093 |
3094 | onetime@^1.0.0:
3095 | version "1.1.0"
3096 | resolved "http://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
3097 |
3098 | onetime@^2.0.0:
3099 | version "2.0.1"
3100 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
3101 | dependencies:
3102 | mimic-fn "^1.0.0"
3103 |
3104 | ora@^0.2.3:
3105 | version "0.2.3"
3106 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4"
3107 | dependencies:
3108 | chalk "^1.1.1"
3109 | cli-cursor "^1.0.2"
3110 | cli-spinners "^0.1.2"
3111 | object-assign "^4.0.1"
3112 |
3113 | os-browserify@^0.3.0:
3114 | version "0.3.0"
3115 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
3116 |
3117 | os-homedir@^1.0.0:
3118 | version "1.0.2"
3119 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
3120 |
3121 | os-locale@^2.0.0:
3122 | version "2.1.0"
3123 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
3124 | dependencies:
3125 | execa "^0.7.0"
3126 | lcid "^1.0.0"
3127 | mem "^1.1.0"
3128 |
3129 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2:
3130 | version "1.0.2"
3131 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
3132 |
3133 | osenv@^0.1.4:
3134 | version "0.1.5"
3135 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
3136 | dependencies:
3137 | os-homedir "^1.0.0"
3138 | os-tmpdir "^1.0.0"
3139 |
3140 | p-cancelable@^0.3.0:
3141 | version "0.3.0"
3142 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa"
3143 |
3144 | p-cancelable@^0.4.0:
3145 | version "0.4.1"
3146 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.4.1.tgz#35f363d67d52081c8d9585e37bcceb7e0bbcb2a0"
3147 |
3148 | p-each-series@^1.0.0:
3149 | version "1.0.0"
3150 | resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-1.0.0.tgz#930f3d12dd1f50e7434457a22cd6f04ac6ad7f71"
3151 | dependencies:
3152 | p-reduce "^1.0.0"
3153 |
3154 | p-finally@^1.0.0:
3155 | version "1.0.0"
3156 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
3157 |
3158 | p-is-promise@^1.1.0:
3159 | version "1.1.0"
3160 | resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e"
3161 |
3162 | p-lazy@^1.0.0:
3163 | version "1.0.0"
3164 | resolved "https://registry.yarnpkg.com/p-lazy/-/p-lazy-1.0.0.tgz#ec53c802f2ee3ac28f166cc82d0b2b02de27a835"
3165 |
3166 | p-limit@^1.1.0:
3167 | version "1.2.0"
3168 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c"
3169 | dependencies:
3170 | p-try "^1.0.0"
3171 |
3172 | p-locate@^2.0.0:
3173 | version "2.0.0"
3174 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
3175 | dependencies:
3176 | p-limit "^1.1.0"
3177 |
3178 | p-map@^1.1.1:
3179 | version "1.2.0"
3180 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b"
3181 |
3182 | p-reduce@^1.0.0:
3183 | version "1.0.0"
3184 | resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa"
3185 |
3186 | p-timeout@^1.1.1:
3187 | version "1.2.1"
3188 | resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-1.2.1.tgz#5eb3b353b7fce99f101a1038880bb054ebbea386"
3189 | dependencies:
3190 | p-finally "^1.0.0"
3191 |
3192 | p-timeout@^2.0.1:
3193 | version "2.0.1"
3194 | resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-2.0.1.tgz#d8dd1979595d2dc0139e1fe46b8b646cb3cdf038"
3195 | dependencies:
3196 | p-finally "^1.0.0"
3197 |
3198 | p-try@^1.0.0:
3199 | version "1.0.0"
3200 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
3201 |
3202 | pako@~1.0.5:
3203 | version "1.0.6"
3204 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258"
3205 |
3206 | parallel-transform@^1.1.0:
3207 | version "1.1.0"
3208 | resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.1.0.tgz#d410f065b05da23081fcd10f28854c29bda33b06"
3209 | dependencies:
3210 | cyclist "~0.2.2"
3211 | inherits "^2.0.3"
3212 | readable-stream "^2.1.5"
3213 |
3214 | parse-asn1@^5.0.0:
3215 | version "5.1.1"
3216 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.1.tgz#f6bf293818332bd0dab54efb16087724745e6ca8"
3217 | dependencies:
3218 | asn1.js "^4.0.0"
3219 | browserify-aes "^1.0.0"
3220 | create-hash "^1.1.0"
3221 | evp_bytestokey "^1.0.0"
3222 | pbkdf2 "^3.0.3"
3223 |
3224 | parse-glob@^3.0.4:
3225 | version "3.0.4"
3226 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
3227 | dependencies:
3228 | glob-base "^0.3.0"
3229 | is-dotfile "^1.0.0"
3230 | is-extglob "^1.0.0"
3231 | is-glob "^2.0.0"
3232 |
3233 | parse-json@^4.0.0:
3234 | version "4.0.0"
3235 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
3236 | dependencies:
3237 | error-ex "^1.3.1"
3238 | json-parse-better-errors "^1.0.1"
3239 |
3240 | parse-passwd@^1.0.0:
3241 | version "1.0.0"
3242 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
3243 |
3244 | pascalcase@^0.1.1:
3245 | version "0.1.1"
3246 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
3247 |
3248 | path-browserify@0.0.0:
3249 | version "0.0.0"
3250 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
3251 |
3252 | path-dirname@^1.0.0:
3253 | version "1.0.2"
3254 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
3255 |
3256 | path-exists@^3.0.0:
3257 | version "3.0.0"
3258 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
3259 |
3260 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
3261 | version "1.0.1"
3262 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
3263 |
3264 | path-key@^2.0.0, path-key@^2.0.1:
3265 | version "2.0.1"
3266 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
3267 |
3268 | path-parse@^1.0.5:
3269 | version "1.0.5"
3270 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
3271 |
3272 | path-type@^3.0.0:
3273 | version "3.0.0"
3274 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
3275 | dependencies:
3276 | pify "^3.0.0"
3277 |
3278 | pbkdf2@^3.0.3:
3279 | version "3.0.16"
3280 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.16.tgz#7404208ec6b01b62d85bf83853a8064f8d9c2a5c"
3281 | dependencies:
3282 | create-hash "^1.1.2"
3283 | create-hmac "^1.1.4"
3284 | ripemd160 "^2.0.1"
3285 | safe-buffer "^5.0.1"
3286 | sha.js "^2.4.8"
3287 |
3288 | pify@^2.0.0, pify@^2.3.0:
3289 | version "2.3.0"
3290 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
3291 |
3292 | pify@^3.0.0:
3293 | version "3.0.0"
3294 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
3295 |
3296 | pinkie-promise@^2.0.0:
3297 | version "2.0.1"
3298 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
3299 | dependencies:
3300 | pinkie "^2.0.0"
3301 |
3302 | pinkie@^2.0.0:
3303 | version "2.0.4"
3304 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
3305 |
3306 | pkg-dir@^2.0.0:
3307 | version "2.0.0"
3308 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
3309 | dependencies:
3310 | find-up "^2.1.0"
3311 |
3312 | posix-character-classes@^0.1.0:
3313 | version "0.1.1"
3314 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
3315 |
3316 | prepend-http@^1.0.1:
3317 | version "1.0.4"
3318 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
3319 |
3320 | prepend-http@^2.0.0:
3321 | version "2.0.0"
3322 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
3323 |
3324 | preserve@^0.2.0:
3325 | version "0.2.0"
3326 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
3327 |
3328 | prettier@1.12.1, prettier@^1.5.3:
3329 | version "1.12.1"
3330 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.12.1.tgz#c1ad20e803e7749faf905a409d2367e06bbe7325"
3331 |
3332 | pretty-bytes@^4.0.2:
3333 | version "4.0.2"
3334 | resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-4.0.2.tgz#b2bf82e7350d65c6c33aa95aaa5a4f6327f61cd9"
3335 |
3336 | pretty-quick@^1.4.1:
3337 | version "1.4.1"
3338 | resolved "https://registry.yarnpkg.com/pretty-quick/-/pretty-quick-1.4.1.tgz#9d41f778d2d4d940ec603d1293a0998e84c4722c"
3339 | dependencies:
3340 | chalk "^2.3.0"
3341 | execa "^0.8.0"
3342 | find-up "^2.1.0"
3343 | ignore "^3.3.7"
3344 | mri "^1.1.0"
3345 |
3346 | private@^0.1.6, private@^0.1.8, private@~0.1.5:
3347 | version "0.1.8"
3348 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
3349 |
3350 | process-nextick-args@^2.0.0, process-nextick-args@~2.0.0:
3351 | version "2.0.0"
3352 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
3353 |
3354 | process@^0.11.10:
3355 | version "0.11.10"
3356 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
3357 |
3358 | promise-inflight@^1.0.1:
3359 | version "1.0.1"
3360 | resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
3361 |
3362 | prr@~1.0.1:
3363 | version "1.0.1"
3364 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
3365 |
3366 | pseudomap@^1.0.2:
3367 | version "1.0.2"
3368 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
3369 |
3370 | public-encrypt@^4.0.0:
3371 | version "4.0.2"
3372 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.2.tgz#46eb9107206bf73489f8b85b69d91334c6610994"
3373 | dependencies:
3374 | bn.js "^4.1.0"
3375 | browserify-rsa "^4.0.0"
3376 | create-hash "^1.1.0"
3377 | parse-asn1 "^5.0.0"
3378 | randombytes "^2.0.1"
3379 |
3380 | pump@^2.0.0, pump@^2.0.1:
3381 | version "2.0.1"
3382 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909"
3383 | dependencies:
3384 | end-of-stream "^1.1.0"
3385 | once "^1.3.1"
3386 |
3387 | pumpify@^1.3.3:
3388 | version "1.5.0"
3389 | resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.0.tgz#30c905a26c88fa0074927af07256672b474b1c15"
3390 | dependencies:
3391 | duplexify "^3.6.0"
3392 | inherits "^2.0.3"
3393 | pump "^2.0.0"
3394 |
3395 | punycode@1.3.2:
3396 | version "1.3.2"
3397 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
3398 |
3399 | punycode@^1.2.4:
3400 | version "1.4.1"
3401 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
3402 |
3403 | punycode@^2.1.0:
3404 | version "2.1.0"
3405 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d"
3406 |
3407 | query-string@^5.0.1:
3408 | version "5.1.1"
3409 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-5.1.1.tgz#a78c012b71c17e05f2e3fa2319dd330682efb3cb"
3410 | dependencies:
3411 | decode-uri-component "^0.2.0"
3412 | object-assign "^4.1.0"
3413 | strict-uri-encode "^1.0.0"
3414 |
3415 | querystring-es3@^0.2.0:
3416 | version "0.2.1"
3417 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
3418 |
3419 | querystring@0.2.0:
3420 | version "0.2.0"
3421 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
3422 |
3423 | randomatic@^1.1.3:
3424 | version "1.1.7"
3425 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
3426 | dependencies:
3427 | is-number "^3.0.0"
3428 | kind-of "^4.0.0"
3429 |
3430 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5:
3431 | version "2.0.6"
3432 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80"
3433 | dependencies:
3434 | safe-buffer "^5.1.0"
3435 |
3436 | randomfill@^1.0.3:
3437 | version "1.0.4"
3438 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458"
3439 | dependencies:
3440 | randombytes "^2.0.5"
3441 | safe-buffer "^5.1.0"
3442 |
3443 | rc@^1.1.7:
3444 | version "1.2.7"
3445 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.7.tgz#8a10ca30d588d00464360372b890d06dacd02297"
3446 | dependencies:
3447 | deep-extend "^0.5.1"
3448 | ini "~1.3.0"
3449 | minimist "^1.2.0"
3450 | strip-json-comments "~2.0.1"
3451 |
3452 | read-chunk@^2.1.0:
3453 | version "2.1.0"
3454 | resolved "https://registry.yarnpkg.com/read-chunk/-/read-chunk-2.1.0.tgz#6a04c0928005ed9d42e1a6ac5600e19cbc7ff655"
3455 | dependencies:
3456 | pify "^3.0.0"
3457 | safe-buffer "^5.1.1"
3458 |
3459 | read-pkg-up@^3.0.0:
3460 | version "3.0.0"
3461 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07"
3462 | dependencies:
3463 | find-up "^2.0.0"
3464 | read-pkg "^3.0.0"
3465 |
3466 | read-pkg@^3.0.0:
3467 | version "3.0.0"
3468 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
3469 | dependencies:
3470 | load-json-file "^4.0.0"
3471 | normalize-package-data "^2.3.2"
3472 | path-type "^3.0.0"
3473 |
3474 | "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.5:
3475 | version "2.3.6"
3476 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
3477 | dependencies:
3478 | core-util-is "~1.0.0"
3479 | inherits "~2.0.3"
3480 | isarray "~1.0.0"
3481 | process-nextick-args "~2.0.0"
3482 | safe-buffer "~5.1.1"
3483 | string_decoder "~1.1.1"
3484 | util-deprecate "~1.0.1"
3485 |
3486 | readdirp@^2.0.0:
3487 | version "2.1.0"
3488 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
3489 | dependencies:
3490 | graceful-fs "^4.1.2"
3491 | minimatch "^3.0.2"
3492 | readable-stream "^2.0.2"
3493 | set-immediate-shim "^1.0.1"
3494 |
3495 | recast@^0.12.5:
3496 | version "0.12.9"
3497 | resolved "https://registry.yarnpkg.com/recast/-/recast-0.12.9.tgz#e8e52bdb9691af462ccbd7c15d5a5113647a15f1"
3498 | dependencies:
3499 | ast-types "0.10.1"
3500 | core-js "^2.4.1"
3501 | esprima "~4.0.0"
3502 | private "~0.1.5"
3503 | source-map "~0.6.1"
3504 |
3505 | recast@^0.14.1:
3506 | version "0.14.7"
3507 | resolved "https://registry.yarnpkg.com/recast/-/recast-0.14.7.tgz#4f1497c2b5826d42a66e8e3c9d80c512983ff61d"
3508 | dependencies:
3509 | ast-types "0.11.3"
3510 | esprima "~4.0.0"
3511 | private "~0.1.5"
3512 | source-map "~0.6.1"
3513 |
3514 | rechoir@^0.6.2:
3515 | version "0.6.2"
3516 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
3517 | dependencies:
3518 | resolve "^1.1.6"
3519 |
3520 | regenerate@^1.2.1:
3521 | version "1.3.3"
3522 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f"
3523 |
3524 | regenerator-runtime@^0.11.0:
3525 | version "0.11.1"
3526 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
3527 |
3528 | regenerator-transform@^0.10.0:
3529 | version "0.10.1"
3530 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
3531 | dependencies:
3532 | babel-runtime "^6.18.0"
3533 | babel-types "^6.19.0"
3534 | private "^0.1.6"
3535 |
3536 | regex-cache@^0.4.2:
3537 | version "0.4.4"
3538 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
3539 | dependencies:
3540 | is-equal-shallow "^0.1.3"
3541 |
3542 | regex-not@^1.0.0, regex-not@^1.0.2:
3543 | version "1.0.2"
3544 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
3545 | dependencies:
3546 | extend-shallow "^3.0.2"
3547 | safe-regex "^1.1.0"
3548 |
3549 | regexpu-core@^2.0.0:
3550 | version "2.0.0"
3551 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
3552 | dependencies:
3553 | regenerate "^1.2.1"
3554 | regjsgen "^0.2.0"
3555 | regjsparser "^0.1.4"
3556 |
3557 | regjsgen@^0.2.0:
3558 | version "0.2.0"
3559 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
3560 |
3561 | regjsparser@^0.1.4:
3562 | version "0.1.5"
3563 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
3564 | dependencies:
3565 | jsesc "~0.5.0"
3566 |
3567 | remove-trailing-separator@^1.0.1:
3568 | version "1.1.0"
3569 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
3570 |
3571 | repeat-element@^1.1.2:
3572 | version "1.1.2"
3573 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
3574 |
3575 | repeat-string@^1.5.2, repeat-string@^1.6.1:
3576 | version "1.6.1"
3577 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
3578 |
3579 | repeating@^2.0.0:
3580 | version "2.0.1"
3581 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
3582 | dependencies:
3583 | is-finite "^1.0.0"
3584 |
3585 | replace-ext@0.0.1:
3586 | version "0.0.1"
3587 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924"
3588 |
3589 | replace-ext@^1.0.0:
3590 | version "1.0.0"
3591 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb"
3592 |
3593 | require-directory@^2.1.1:
3594 | version "2.1.1"
3595 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
3596 |
3597 | require-main-filename@^1.0.1:
3598 | version "1.0.1"
3599 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
3600 |
3601 | resolve-cwd@^2.0.0:
3602 | version "2.0.0"
3603 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
3604 | dependencies:
3605 | resolve-from "^3.0.0"
3606 |
3607 | resolve-dir@^1.0.0:
3608 | version "1.0.1"
3609 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43"
3610 | dependencies:
3611 | expand-tilde "^2.0.0"
3612 | global-modules "^1.0.0"
3613 |
3614 | resolve-from@^3.0.0:
3615 | version "3.0.0"
3616 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
3617 |
3618 | resolve-url@^0.2.1:
3619 | version "0.2.1"
3620 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
3621 |
3622 | resolve@^1.1.6:
3623 | version "1.7.1"
3624 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.7.1.tgz#aadd656374fd298aee895bc026b8297418677fd3"
3625 | dependencies:
3626 | path-parse "^1.0.5"
3627 |
3628 | responselike@1.0.2:
3629 | version "1.0.2"
3630 | resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7"
3631 | dependencies:
3632 | lowercase-keys "^1.0.0"
3633 |
3634 | restore-cursor@^1.0.1:
3635 | version "1.0.1"
3636 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
3637 | dependencies:
3638 | exit-hook "^1.0.0"
3639 | onetime "^1.0.0"
3640 |
3641 | restore-cursor@^2.0.0:
3642 | version "2.0.0"
3643 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
3644 | dependencies:
3645 | onetime "^2.0.0"
3646 | signal-exit "^3.0.2"
3647 |
3648 | ret@~0.1.10:
3649 | version "0.1.15"
3650 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
3651 |
3652 | rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2:
3653 | version "2.6.2"
3654 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
3655 | dependencies:
3656 | glob "^7.0.5"
3657 |
3658 | rimraf@~2.2.6:
3659 | version "2.2.8"
3660 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582"
3661 |
3662 | ripemd160@^2.0.0, ripemd160@^2.0.1:
3663 | version "2.0.2"
3664 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
3665 | dependencies:
3666 | hash-base "^3.0.0"
3667 | inherits "^2.0.1"
3668 |
3669 | run-async@^2.0.0, run-async@^2.2.0:
3670 | version "2.3.0"
3671 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
3672 | dependencies:
3673 | is-promise "^2.1.0"
3674 |
3675 | run-queue@^1.0.0, run-queue@^1.0.3:
3676 | version "1.0.3"
3677 | resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47"
3678 | dependencies:
3679 | aproba "^1.1.1"
3680 |
3681 | rx-lite-aggregates@^4.0.8:
3682 | version "4.0.8"
3683 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be"
3684 | dependencies:
3685 | rx-lite "*"
3686 |
3687 | rx-lite@*, rx-lite@^4.0.8:
3688 | version "4.0.8"
3689 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
3690 |
3691 | rxjs@^5.4.2, rxjs@^5.5.2:
3692 | version "5.5.10"
3693 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.10.tgz#fde02d7a614f6c8683d0d1957827f492e09db045"
3694 | dependencies:
3695 | symbol-observable "1.0.1"
3696 |
3697 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
3698 | version "5.1.2"
3699 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
3700 |
3701 | safe-regex@^1.1.0:
3702 | version "1.1.0"
3703 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
3704 | dependencies:
3705 | ret "~0.1.10"
3706 |
3707 | safer-buffer@^2.1.0:
3708 | version "2.1.2"
3709 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
3710 |
3711 | sax@^1.2.4:
3712 | version "1.2.4"
3713 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
3714 |
3715 | schema-utils@^0.4.4, schema-utils@^0.4.5:
3716 | version "0.4.5"
3717 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.5.tgz#21836f0608aac17b78f9e3e24daff14a5ca13a3e"
3718 | dependencies:
3719 | ajv "^6.1.0"
3720 | ajv-keywords "^3.1.0"
3721 |
3722 | scoped-regex@^1.0.0:
3723 | version "1.0.0"
3724 | resolved "https://registry.yarnpkg.com/scoped-regex/-/scoped-regex-1.0.0.tgz#a346bb1acd4207ae70bd7c0c7ca9e566b6baddb8"
3725 |
3726 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.5.0:
3727 | version "5.5.0"
3728 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
3729 |
3730 | serialize-javascript@^1.4.0:
3731 | version "1.5.0"
3732 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.5.0.tgz#1aa336162c88a890ddad5384baebc93a655161fe"
3733 |
3734 | set-blocking@^2.0.0, set-blocking@~2.0.0:
3735 | version "2.0.0"
3736 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
3737 |
3738 | set-immediate-shim@^1.0.1:
3739 | version "1.0.1"
3740 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
3741 |
3742 | set-value@^0.4.3:
3743 | version "0.4.3"
3744 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"
3745 | dependencies:
3746 | extend-shallow "^2.0.1"
3747 | is-extendable "^0.1.1"
3748 | is-plain-object "^2.0.1"
3749 | to-object-path "^0.3.0"
3750 |
3751 | set-value@^2.0.0:
3752 | version "2.0.0"
3753 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"
3754 | dependencies:
3755 | extend-shallow "^2.0.1"
3756 | is-extendable "^0.1.1"
3757 | is-plain-object "^2.0.3"
3758 | split-string "^3.0.1"
3759 |
3760 | setimmediate@^1.0.4:
3761 | version "1.0.5"
3762 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
3763 |
3764 | sha.js@^2.4.0, sha.js@^2.4.8:
3765 | version "2.4.11"
3766 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7"
3767 | dependencies:
3768 | inherits "^2.0.1"
3769 | safe-buffer "^5.0.1"
3770 |
3771 | shebang-command@^1.2.0:
3772 | version "1.2.0"
3773 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
3774 | dependencies:
3775 | shebang-regex "^1.0.0"
3776 |
3777 | shebang-regex@^1.0.0:
3778 | version "1.0.0"
3779 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
3780 |
3781 | shelljs@^0.8.0:
3782 | version "0.8.1"
3783 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.1.tgz#729e038c413a2254c4078b95ed46e0397154a9f1"
3784 | dependencies:
3785 | glob "^7.0.0"
3786 | interpret "^1.0.0"
3787 | rechoir "^0.6.2"
3788 |
3789 | signal-exit@^3.0.0, signal-exit@^3.0.2:
3790 | version "3.0.2"
3791 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
3792 |
3793 | slash@^1.0.0:
3794 | version "1.0.0"
3795 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
3796 |
3797 | slice-ansi@0.0.4:
3798 | version "0.0.4"
3799 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
3800 |
3801 | slide@^1.1.5:
3802 | version "1.1.6"
3803 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"
3804 |
3805 | snapdragon-node@^2.0.1:
3806 | version "2.1.1"
3807 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
3808 | dependencies:
3809 | define-property "^1.0.0"
3810 | isobject "^3.0.0"
3811 | snapdragon-util "^3.0.1"
3812 |
3813 | snapdragon-util@^3.0.1:
3814 | version "3.0.1"
3815 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
3816 | dependencies:
3817 | kind-of "^3.2.0"
3818 |
3819 | snapdragon@^0.8.1:
3820 | version "0.8.2"
3821 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
3822 | dependencies:
3823 | base "^0.11.1"
3824 | debug "^2.2.0"
3825 | define-property "^0.2.5"
3826 | extend-shallow "^2.0.1"
3827 | map-cache "^0.2.2"
3828 | source-map "^0.5.6"
3829 | source-map-resolve "^0.5.0"
3830 | use "^3.1.0"
3831 |
3832 | sort-keys@^2.0.0:
3833 | version "2.0.0"
3834 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128"
3835 | dependencies:
3836 | is-plain-obj "^1.0.0"
3837 |
3838 | source-list-map@^2.0.0:
3839 | version "2.0.0"
3840 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085"
3841 |
3842 | source-map-resolve@^0.5.0:
3843 | version "0.5.1"
3844 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a"
3845 | dependencies:
3846 | atob "^2.0.0"
3847 | decode-uri-component "^0.2.0"
3848 | resolve-url "^0.2.1"
3849 | source-map-url "^0.4.0"
3850 | urix "^0.1.0"
3851 |
3852 | source-map-support@^0.4.15:
3853 | version "0.4.18"
3854 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
3855 | dependencies:
3856 | source-map "^0.5.6"
3857 |
3858 | source-map-url@^0.4.0:
3859 | version "0.4.0"
3860 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
3861 |
3862 | source-map@^0.5.6, source-map@^0.5.7:
3863 | version "0.5.7"
3864 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
3865 |
3866 | source-map@^0.6.1, source-map@~0.6.1:
3867 | version "0.6.1"
3868 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
3869 |
3870 | spdx-correct@^3.0.0:
3871 | version "3.0.0"
3872 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82"
3873 | dependencies:
3874 | spdx-expression-parse "^3.0.0"
3875 | spdx-license-ids "^3.0.0"
3876 |
3877 | spdx-exceptions@^2.1.0:
3878 | version "2.1.0"
3879 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9"
3880 |
3881 | spdx-expression-parse@^3.0.0:
3882 | version "3.0.0"
3883 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0"
3884 | dependencies:
3885 | spdx-exceptions "^2.1.0"
3886 | spdx-license-ids "^3.0.0"
3887 |
3888 | spdx-license-ids@^3.0.0:
3889 | version "3.0.0"
3890 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87"
3891 |
3892 | split-string@^3.0.1, split-string@^3.0.2:
3893 | version "3.1.0"
3894 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
3895 | dependencies:
3896 | extend-shallow "^3.0.0"
3897 |
3898 | ssri@^5.2.4:
3899 | version "5.3.0"
3900 | resolved "https://registry.yarnpkg.com/ssri/-/ssri-5.3.0.tgz#ba3872c9c6d33a0704a7d71ff045e5ec48999d06"
3901 | dependencies:
3902 | safe-buffer "^5.1.1"
3903 |
3904 | static-extend@^0.1.1:
3905 | version "0.1.2"
3906 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
3907 | dependencies:
3908 | define-property "^0.2.5"
3909 | object-copy "^0.1.0"
3910 |
3911 | stream-browserify@^2.0.1:
3912 | version "2.0.1"
3913 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"
3914 | dependencies:
3915 | inherits "~2.0.1"
3916 | readable-stream "^2.0.2"
3917 |
3918 | stream-each@^1.1.0:
3919 | version "1.2.2"
3920 | resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.2.tgz#8e8c463f91da8991778765873fe4d960d8f616bd"
3921 | dependencies:
3922 | end-of-stream "^1.1.0"
3923 | stream-shift "^1.0.0"
3924 |
3925 | stream-http@^2.7.2:
3926 | version "2.8.1"
3927 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.1.tgz#d0441be1a457a73a733a8a7b53570bebd9ef66a4"
3928 | dependencies:
3929 | builtin-status-codes "^3.0.0"
3930 | inherits "^2.0.1"
3931 | readable-stream "^2.3.3"
3932 | to-arraybuffer "^1.0.0"
3933 | xtend "^4.0.0"
3934 |
3935 | stream-shift@^1.0.0:
3936 | version "1.0.0"
3937 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952"
3938 |
3939 | stream-to-observable@^0.2.0:
3940 | version "0.2.0"
3941 | resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.2.0.tgz#59d6ea393d87c2c0ddac10aa0d561bc6ba6f0e10"
3942 | dependencies:
3943 | any-observable "^0.2.0"
3944 |
3945 | strict-uri-encode@^1.0.0:
3946 | version "1.1.0"
3947 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
3948 |
3949 | string-template@~0.2.1:
3950 | version "0.2.1"
3951 | resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add"
3952 |
3953 | string-width@^1.0.1, string-width@^1.0.2:
3954 | version "1.0.2"
3955 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3956 | dependencies:
3957 | code-point-at "^1.0.0"
3958 | is-fullwidth-code-point "^1.0.0"
3959 | strip-ansi "^3.0.0"
3960 |
3961 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
3962 | version "2.1.1"
3963 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
3964 | dependencies:
3965 | is-fullwidth-code-point "^2.0.0"
3966 | strip-ansi "^4.0.0"
3967 |
3968 | string_decoder@^1.0.0, string_decoder@~1.1.1:
3969 | version "1.1.1"
3970 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
3971 | dependencies:
3972 | safe-buffer "~5.1.0"
3973 |
3974 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3975 | version "3.0.1"
3976 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3977 | dependencies:
3978 | ansi-regex "^2.0.0"
3979 |
3980 | strip-ansi@^4.0.0:
3981 | version "4.0.0"
3982 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
3983 | dependencies:
3984 | ansi-regex "^3.0.0"
3985 |
3986 | strip-ansi@~0.1.0:
3987 | version "0.1.1"
3988 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991"
3989 |
3990 | strip-bom-stream@^2.0.0:
3991 | version "2.0.0"
3992 | resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-2.0.0.tgz#f87db5ef2613f6968aa545abfe1ec728b6a829ca"
3993 | dependencies:
3994 | first-chunk-stream "^2.0.0"
3995 | strip-bom "^2.0.0"
3996 |
3997 | strip-bom@^2.0.0:
3998 | version "2.0.0"
3999 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
4000 | dependencies:
4001 | is-utf8 "^0.2.0"
4002 |
4003 | strip-bom@^3.0.0:
4004 | version "3.0.0"
4005 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
4006 |
4007 | strip-eof@^1.0.0:
4008 | version "1.0.0"
4009 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
4010 |
4011 | strip-indent@^2.0.0:
4012 | version "2.0.0"
4013 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68"
4014 |
4015 | strip-json-comments@~2.0.1:
4016 | version "2.0.1"
4017 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
4018 |
4019 | supports-color@^2.0.0:
4020 | version "2.0.0"
4021 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
4022 |
4023 | supports-color@^5.3.0:
4024 | version "5.4.0"
4025 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54"
4026 | dependencies:
4027 | has-flag "^3.0.0"
4028 |
4029 | symbol-observable@1.0.1:
4030 | version "1.0.1"
4031 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4"
4032 |
4033 | symbol-observable@^0.2.2:
4034 | version "0.2.4"
4035 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40"
4036 |
4037 | tapable@^1.0.0:
4038 | version "1.0.0"
4039 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.0.0.tgz#cbb639d9002eed9c6b5975eb20598d7936f1f9f2"
4040 |
4041 | tar@^4:
4042 | version "4.4.2"
4043 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.2.tgz#60685211ba46b38847b1ae7ee1a24d744a2cd462"
4044 | dependencies:
4045 | chownr "^1.0.1"
4046 | fs-minipass "^1.2.5"
4047 | minipass "^2.2.4"
4048 | minizlib "^1.1.0"
4049 | mkdirp "^0.5.0"
4050 | safe-buffer "^5.1.2"
4051 | yallist "^3.0.2"
4052 |
4053 | temp@^0.8.1:
4054 | version "0.8.3"
4055 | resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59"
4056 | dependencies:
4057 | os-tmpdir "^1.0.0"
4058 | rimraf "~2.2.6"
4059 |
4060 | text-table@^0.2.0:
4061 | version "0.2.0"
4062 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
4063 |
4064 | textextensions@2:
4065 | version "2.2.0"
4066 | resolved "https://registry.yarnpkg.com/textextensions/-/textextensions-2.2.0.tgz#38ac676151285b658654581987a0ce1a4490d286"
4067 |
4068 | through2@^2.0.0:
4069 | version "2.0.3"
4070 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be"
4071 | dependencies:
4072 | readable-stream "^2.1.5"
4073 | xtend "~4.0.1"
4074 |
4075 | through@^2.3.6:
4076 | version "2.3.8"
4077 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
4078 |
4079 | timed-out@^4.0.0, timed-out@^4.0.1:
4080 | version "4.0.1"
4081 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f"
4082 |
4083 | timers-browserify@^2.0.4:
4084 | version "2.0.10"
4085 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae"
4086 | dependencies:
4087 | setimmediate "^1.0.4"
4088 |
4089 | tmp@^0.0.33:
4090 | version "0.0.33"
4091 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
4092 | dependencies:
4093 | os-tmpdir "~1.0.2"
4094 |
4095 | to-arraybuffer@^1.0.0:
4096 | version "1.0.1"
4097 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
4098 |
4099 | to-fast-properties@^1.0.3:
4100 | version "1.0.3"
4101 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
4102 |
4103 | to-object-path@^0.3.0:
4104 | version "0.3.0"
4105 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
4106 | dependencies:
4107 | kind-of "^3.0.2"
4108 |
4109 | to-regex-range@^2.1.0:
4110 | version "2.1.1"
4111 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
4112 | dependencies:
4113 | is-number "^3.0.0"
4114 | repeat-string "^1.6.1"
4115 |
4116 | to-regex@^3.0.1, to-regex@^3.0.2:
4117 | version "3.0.2"
4118 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
4119 | dependencies:
4120 | define-property "^2.0.2"
4121 | extend-shallow "^3.0.2"
4122 | regex-not "^1.0.2"
4123 | safe-regex "^1.1.0"
4124 |
4125 | trim-right@^1.0.1:
4126 | version "1.0.1"
4127 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
4128 |
4129 | tty-browserify@0.0.0:
4130 | version "0.0.0"
4131 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
4132 |
4133 | typedarray@^0.0.6:
4134 | version "0.0.6"
4135 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
4136 |
4137 | uglify-es@^3.3.4:
4138 | version "3.3.9"
4139 | resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.9.tgz#0c1c4f0700bed8dbc124cdb304d2592ca203e677"
4140 | dependencies:
4141 | commander "~2.13.0"
4142 | source-map "~0.6.1"
4143 |
4144 | uglifyjs-webpack-plugin@^1.2.4:
4145 | version "1.2.5"
4146 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.5.tgz#2ef8387c8f1a903ec5e44fa36f9f3cbdcea67641"
4147 | dependencies:
4148 | cacache "^10.0.4"
4149 | find-cache-dir "^1.0.0"
4150 | schema-utils "^0.4.5"
4151 | serialize-javascript "^1.4.0"
4152 | source-map "^0.6.1"
4153 | uglify-es "^3.3.4"
4154 | webpack-sources "^1.1.0"
4155 | worker-farm "^1.5.2"
4156 |
4157 | underscore@~1.6.0:
4158 | version "1.6.0"
4159 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.6.0.tgz#8b38b10cacdef63337b8b24e4ff86d45aea529a8"
4160 |
4161 | union-value@^1.0.0:
4162 | version "1.0.0"
4163 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"
4164 | dependencies:
4165 | arr-union "^3.1.0"
4166 | get-value "^2.0.6"
4167 | is-extendable "^0.1.1"
4168 | set-value "^0.4.3"
4169 |
4170 | unique-filename@^1.1.0:
4171 | version "1.1.0"
4172 | resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.0.tgz#d05f2fe4032560871f30e93cbe735eea201514f3"
4173 | dependencies:
4174 | unique-slug "^2.0.0"
4175 |
4176 | unique-slug@^2.0.0:
4177 | version "2.0.0"
4178 | resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.0.tgz#db6676e7c7cc0629878ff196097c78855ae9f4ab"
4179 | dependencies:
4180 | imurmurhash "^0.1.4"
4181 |
4182 | unset-value@^1.0.0:
4183 | version "1.0.0"
4184 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
4185 | dependencies:
4186 | has-value "^0.3.1"
4187 | isobject "^3.0.0"
4188 |
4189 | untildify@^3.0.2:
4190 | version "3.0.2"
4191 | resolved "https://registry.yarnpkg.com/untildify/-/untildify-3.0.2.tgz#7f1f302055b3fea0f3e81dc78eb36766cb65e3f1"
4192 |
4193 | upath@^1.0.0:
4194 | version "1.0.5"
4195 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.0.5.tgz#02cab9ecebe95bbec6d5fc2566325725ab6d1a73"
4196 |
4197 | uri-js@^3.0.2:
4198 | version "3.0.2"
4199 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-3.0.2.tgz#f90b858507f81dea4dcfbb3c4c3dbfa2b557faaa"
4200 | dependencies:
4201 | punycode "^2.1.0"
4202 |
4203 | urix@^0.1.0:
4204 | version "0.1.0"
4205 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
4206 |
4207 | url-parse-lax@^1.0.0:
4208 | version "1.0.0"
4209 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73"
4210 | dependencies:
4211 | prepend-http "^1.0.1"
4212 |
4213 | url-parse-lax@^3.0.0:
4214 | version "3.0.0"
4215 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c"
4216 | dependencies:
4217 | prepend-http "^2.0.0"
4218 |
4219 | url-to-options@^1.0.1:
4220 | version "1.0.1"
4221 | resolved "https://registry.yarnpkg.com/url-to-options/-/url-to-options-1.0.1.tgz#1505a03a289a48cbd7a434efbaeec5055f5633a9"
4222 |
4223 | url@^0.11.0:
4224 | version "0.11.0"
4225 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
4226 | dependencies:
4227 | punycode "1.3.2"
4228 | querystring "0.2.0"
4229 |
4230 | use@^3.1.0:
4231 | version "3.1.0"
4232 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544"
4233 | dependencies:
4234 | kind-of "^6.0.2"
4235 |
4236 | util-deprecate@~1.0.1:
4237 | version "1.0.2"
4238 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
4239 |
4240 | util@0.10.3, util@^0.10.3:
4241 | version "0.10.3"
4242 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
4243 | dependencies:
4244 | inherits "2.0.1"
4245 |
4246 | v8-compile-cache@^1.1.2:
4247 | version "1.1.2"
4248 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-1.1.2.tgz#8d32e4f16974654657e676e0e467a348e89b0dc4"
4249 |
4250 | validate-npm-package-license@^3.0.1:
4251 | version "3.0.3"
4252 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338"
4253 | dependencies:
4254 | spdx-correct "^3.0.0"
4255 | spdx-expression-parse "^3.0.0"
4256 |
4257 | vinyl-file@^2.0.0:
4258 | version "2.0.0"
4259 | resolved "https://registry.yarnpkg.com/vinyl-file/-/vinyl-file-2.0.0.tgz#a7ebf5ffbefda1b7d18d140fcb07b223efb6751a"
4260 | dependencies:
4261 | graceful-fs "^4.1.2"
4262 | pify "^2.3.0"
4263 | pinkie-promise "^2.0.0"
4264 | strip-bom "^2.0.0"
4265 | strip-bom-stream "^2.0.0"
4266 | vinyl "^1.1.0"
4267 |
4268 | vinyl@^1.1.0:
4269 | version "1.2.0"
4270 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884"
4271 | dependencies:
4272 | clone "^1.0.0"
4273 | clone-stats "^0.0.1"
4274 | replace-ext "0.0.1"
4275 |
4276 | vinyl@^2.0.1:
4277 | version "2.1.0"
4278 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.1.0.tgz#021f9c2cf951d6b939943c89eb5ee5add4fd924c"
4279 | dependencies:
4280 | clone "^2.1.1"
4281 | clone-buffer "^1.0.0"
4282 | clone-stats "^1.0.0"
4283 | cloneable-readable "^1.0.0"
4284 | remove-trailing-separator "^1.0.1"
4285 | replace-ext "^1.0.0"
4286 |
4287 | vm-browserify@0.0.4:
4288 | version "0.0.4"
4289 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
4290 | dependencies:
4291 | indexof "0.0.1"
4292 |
4293 | watchpack@^1.5.0:
4294 | version "1.6.0"
4295 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00"
4296 | dependencies:
4297 | chokidar "^2.0.2"
4298 | graceful-fs "^4.1.2"
4299 | neo-async "^2.5.0"
4300 |
4301 | webpack-addons@^1.1.5:
4302 | version "1.1.5"
4303 | resolved "https://registry.yarnpkg.com/webpack-addons/-/webpack-addons-1.1.5.tgz#2b178dfe873fb6e75e40a819fa5c26e4a9bc837a"
4304 | dependencies:
4305 | jscodeshift "^0.4.0"
4306 |
4307 | webpack-cli@^2.1.2:
4308 | version "2.1.2"
4309 | resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-2.1.2.tgz#9c9a4b90584f7b8acaf591238ef0667e04c817f6"
4310 | dependencies:
4311 | chalk "^2.3.2"
4312 | cross-spawn "^6.0.5"
4313 | diff "^3.5.0"
4314 | enhanced-resolve "^4.0.0"
4315 | envinfo "^4.4.2"
4316 | glob-all "^3.1.0"
4317 | global-modules "^1.0.0"
4318 | got "^8.2.0"
4319 | import-local "^1.0.0"
4320 | inquirer "^5.1.0"
4321 | interpret "^1.0.4"
4322 | jscodeshift "^0.5.0"
4323 | listr "^0.13.0"
4324 | loader-utils "^1.1.0"
4325 | lodash "^4.17.5"
4326 | log-symbols "^2.2.0"
4327 | mkdirp "^0.5.1"
4328 | p-each-series "^1.0.0"
4329 | p-lazy "^1.0.0"
4330 | prettier "^1.5.3"
4331 | supports-color "^5.3.0"
4332 | v8-compile-cache "^1.1.2"
4333 | webpack-addons "^1.1.5"
4334 | yargs "^11.1.0"
4335 | yeoman-environment "^2.0.0"
4336 | yeoman-generator "^2.0.4"
4337 |
4338 | webpack-sources@^1.0.1, webpack-sources@^1.1.0:
4339 | version "1.1.0"
4340 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54"
4341 | dependencies:
4342 | source-list-map "^2.0.0"
4343 | source-map "~0.6.1"
4344 |
4345 | webpack@^4.7.0:
4346 | version "4.7.0"
4347 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.7.0.tgz#a04f68dab86d5545fd0277d07ffc44e4078154c9"
4348 | dependencies:
4349 | acorn "^5.0.0"
4350 | acorn-dynamic-import "^3.0.0"
4351 | ajv "^6.1.0"
4352 | ajv-keywords "^3.1.0"
4353 | chrome-trace-event "^0.1.1"
4354 | enhanced-resolve "^4.0.0"
4355 | eslint-scope "^3.7.1"
4356 | loader-runner "^2.3.0"
4357 | loader-utils "^1.1.0"
4358 | memory-fs "~0.4.1"
4359 | micromatch "^3.1.8"
4360 | mkdirp "~0.5.0"
4361 | neo-async "^2.5.0"
4362 | node-libs-browser "^2.0.0"
4363 | schema-utils "^0.4.4"
4364 | tapable "^1.0.0"
4365 | uglifyjs-webpack-plugin "^1.2.4"
4366 | watchpack "^1.5.0"
4367 | webpack-sources "^1.0.1"
4368 |
4369 | which-module@^2.0.0:
4370 | version "2.0.0"
4371 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
4372 |
4373 | which@^1.2.14, which@^1.2.9:
4374 | version "1.3.0"
4375 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
4376 | dependencies:
4377 | isexe "^2.0.0"
4378 |
4379 | wide-align@^1.1.0:
4380 | version "1.1.2"
4381 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
4382 | dependencies:
4383 | string-width "^1.0.2"
4384 |
4385 | worker-farm@^1.5.2:
4386 | version "1.6.0"
4387 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.6.0.tgz#aecc405976fab5a95526180846f0dba288f3a4a0"
4388 | dependencies:
4389 | errno "~0.1.7"
4390 |
4391 | wrap-ansi@^2.0.0:
4392 | version "2.1.0"
4393 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
4394 | dependencies:
4395 | string-width "^1.0.1"
4396 | strip-ansi "^3.0.1"
4397 |
4398 | wrappy@1:
4399 | version "1.0.2"
4400 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
4401 |
4402 | write-file-atomic@^1.2.0:
4403 | version "1.3.4"
4404 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f"
4405 | dependencies:
4406 | graceful-fs "^4.1.11"
4407 | imurmurhash "^0.1.4"
4408 | slide "^1.1.5"
4409 |
4410 | xtend@^4.0.0, xtend@~4.0.0, xtend@~4.0.1:
4411 | version "4.0.1"
4412 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
4413 |
4414 | y18n@^3.2.1:
4415 | version "3.2.1"
4416 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
4417 |
4418 | y18n@^4.0.0:
4419 | version "4.0.0"
4420 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b"
4421 |
4422 | yallist@^2.1.2:
4423 | version "2.1.2"
4424 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
4425 |
4426 | yallist@^3.0.0, yallist@^3.0.2:
4427 | version "3.0.2"
4428 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9"
4429 |
4430 | yargs-parser@^9.0.2:
4431 | version "9.0.2"
4432 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077"
4433 | dependencies:
4434 | camelcase "^4.1.0"
4435 |
4436 | yargs@^11.1.0:
4437 | version "11.1.0"
4438 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.1.0.tgz#90b869934ed6e871115ea2ff58b03f4724ed2d77"
4439 | dependencies:
4440 | cliui "^4.0.0"
4441 | decamelize "^1.1.1"
4442 | find-up "^2.1.0"
4443 | get-caller-file "^1.0.1"
4444 | os-locale "^2.0.0"
4445 | require-directory "^2.1.1"
4446 | require-main-filename "^1.0.1"
4447 | set-blocking "^2.0.0"
4448 | string-width "^2.0.0"
4449 | which-module "^2.0.0"
4450 | y18n "^3.2.1"
4451 | yargs-parser "^9.0.2"
4452 |
4453 | yargs@~1.2.6:
4454 | version "1.2.6"
4455 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-1.2.6.tgz#9c7b4a82fd5d595b2bf17ab6dcc43135432fe34b"
4456 | dependencies:
4457 | minimist "^0.1.0"
4458 |
4459 | yeoman-environment@^2.0.0, yeoman-environment@^2.0.5:
4460 | version "2.0.6"
4461 | resolved "https://registry.yarnpkg.com/yeoman-environment/-/yeoman-environment-2.0.6.tgz#ae1b21d826b363f3d637f88a7fc9ea7414cb5377"
4462 | dependencies:
4463 | chalk "^2.1.0"
4464 | debug "^3.1.0"
4465 | diff "^3.3.1"
4466 | escape-string-regexp "^1.0.2"
4467 | globby "^6.1.0"
4468 | grouped-queue "^0.3.3"
4469 | inquirer "^3.3.0"
4470 | is-scoped "^1.0.0"
4471 | lodash "^4.17.4"
4472 | log-symbols "^2.1.0"
4473 | mem-fs "^1.1.0"
4474 | text-table "^0.2.0"
4475 | untildify "^3.0.2"
4476 |
4477 | yeoman-generator@^2.0.4:
4478 | version "2.0.5"
4479 | resolved "https://registry.yarnpkg.com/yeoman-generator/-/yeoman-generator-2.0.5.tgz#57b0b3474701293cc9ec965288f3400b00887c81"
4480 | dependencies:
4481 | async "^2.6.0"
4482 | chalk "^2.3.0"
4483 | cli-table "^0.3.1"
4484 | cross-spawn "^6.0.5"
4485 | dargs "^5.1.0"
4486 | dateformat "^3.0.3"
4487 | debug "^3.1.0"
4488 | detect-conflict "^1.0.0"
4489 | error "^7.0.2"
4490 | find-up "^2.1.0"
4491 | github-username "^4.0.0"
4492 | istextorbinary "^2.2.1"
4493 | lodash "^4.17.10"
4494 | make-dir "^1.1.0"
4495 | mem-fs-editor "^4.0.0"
4496 | minimist "^1.2.0"
4497 | pretty-bytes "^4.0.2"
4498 | read-chunk "^2.1.0"
4499 | read-pkg-up "^3.0.0"
4500 | rimraf "^2.6.2"
4501 | run-async "^2.0.0"
4502 | shelljs "^0.8.0"
4503 | text-table "^0.2.0"
4504 | through2 "^2.0.0"
4505 | yeoman-environment "^2.0.5"
4506 |
--------------------------------------------------------------------------------