├── .eslintignore
├── .eslintrc.js
├── .firebaserc
├── .gitignore
├── LICENSE
├── README.md
├── firebase.json
├── functions
├── index.js
├── package.json
└── yarn.lock
├── package.json
├── public
└── index.html
└── yarn.lock
/.eslintignore:
--------------------------------------------------------------------------------
1 | **/node_modules/*
2 | functions-dist/*
3 |
--------------------------------------------------------------------------------
/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | // start with google standard style
3 | // https://github.com/google/eslint-config-google/blob/master/index.js
4 | "extends": ["eslint:recommended", "google"],
5 | "env": {
6 | "node": true,
7 | "es6": true
8 | },
9 | "parserOptions": {
10 | "ecmaVersion": 8,
11 | "ecmaFeatures": {
12 | "jsx": false,
13 | "experimentalObjectRestSpread": false
14 | },
15 | "sourceType": "script"
16 | },
17 | "rules": {
18 | // 2 == error, 1 == warning, 0 == off
19 | "indent": [2, 2, {
20 | "SwitchCase": 1,
21 | "VariableDeclarator": 2,
22 | "MemberExpression": 1,
23 | // "outerIIFEBody": 0
24 | }],
25 | "max-len": [2, 100, {
26 | "ignoreComments": true,
27 | "ignoreUrls": true,
28 | "tabWidth": 2
29 | }],
30 | "no-var": 2,
31 | "no-console": 1,
32 | "prefer-const": 2,
33 |
34 | // Disable rules
35 | "comma-dangle": 0,
36 | "arrow-parens": 0,
37 | "require-jsdoc": 0
38 | }
39 | }
--------------------------------------------------------------------------------
/.firebaserc:
--------------------------------------------------------------------------------
1 | {
2 | "projects": {
3 | "default": "pptr-functions"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | bower_components
3 | *-debug.log
4 | *-error.log
5 | *dist
6 | functions/.runtimeconfig.json
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "[]"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright [yyyy] [name of copyright owner]
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ### puppeteer-functions
2 |
3 | [Puppeteer](https://github.com/GoogleChrome/puppeteer) is a Node library for controlling headless Chrome.
4 |
5 | [Firebase Cloud Functions](https://firebase.google.com/docs/functions/) allow you to run "serverless" code in Google's cloud, triggered by HTTP requests.
6 |
7 | ...when put together => Magic! 🎩
8 |
--------------------------------------------------------------------------------
/firebase.json:
--------------------------------------------------------------------------------
1 | {
2 | "hosting": {
3 | "public": "public",
4 | "cleanUrls": true,
5 | "rewrites": [{
6 | "source": "/render",
7 | "function": "render"
8 | }, {
9 | "source": "/version",
10 | "function": "version"
11 | }, {
12 | "source": "/screenshot",
13 | "function": "screenshot"
14 | }, {
15 | "source": "/test",
16 | "function": "test"
17 | }],
18 | "ignore": [
19 | "firebase.json",
20 | "**/.md",
21 | "**/node_modules/**"
22 | ]
23 | },
24 | "functions": {
25 | "source": "functions"
26 | }
27 | }
--------------------------------------------------------------------------------
/functions/index.js:
--------------------------------------------------------------------------------
1 | /* global document */
2 |
3 | const express = require('express');
4 | const functions = require('firebase-functions');
5 | // const mime = require('mime');
6 | const puppeteer = require('puppeteer');
7 |
8 | const app = express();
9 | app.use(function cors(req, res, next) {
10 | res.header('Access-Control-Allow-Origin', '*');
11 | // res.header('Content-Type', 'application/json;charset=utf-8');
12 | // res.header('Cache-Control', 'private, max-age=300');
13 | next();
14 | });
15 |
16 | // const beforeMB = process.memoryUsage().heapUsed / 1e6;
17 | // puppeteer.launch().then(browser => {
18 | // app.locals.browser = browser;
19 | // const afterMB = process.memoryUsage().heapUsed / 1e6;
20 | // console.log('used', beforeMB - afterMB + 'MB');
21 | // })
22 |
23 | app.get('/test', (req, res) => {
24 | res.status(200).send('test');
25 | });
26 |
27 | // Init code that gets run before all request handlers.
28 | app.all('*', async (req, res, next) => {
29 | res.locals.browser = await puppeteer.launch({args: ['--no-sandbox']});
30 | next(); // pass control on to router.
31 | });
32 |
33 | app.get('/render', async function renderHandler(req, res) {
34 | const url = req.query.url;
35 | if (!url) {
36 | return res.status(400).send(
37 | 'Please provide a URL. Example: ?url=https://example.com');
38 | }
39 |
40 | const browser = res.locals.browser;
41 |
42 | try {
43 | const page = await browser.newPage();
44 | const response = await page.goto(url, {waitUntil: 'networkidle2'});
45 |
46 | // Inject on page to relative resources load properly.
47 | await page.evaluate(url => {
48 | const base = document.createElement('base');
49 | base.href = url;
50 | document.head.prepend(base); // Add to top of head, before all other resources.
51 | }, url);
52 |
53 | // Remove scripts and html imports. They've already executed.
54 | await page.evaluate(() => {
55 | const elements = document.querySelectorAll('script, link[rel="import"]');
56 | elements.forEach(e => e.remove());
57 | });
58 |
59 | const html = await page.content();
60 | // await page.close();
61 |
62 | res.status(response.status).send(html);
63 | } catch (e) {
64 | res.status(500).send(e.toString());
65 | }
66 |
67 | await browser.close();
68 | });
69 |
70 | app.get('/screenshot', async function screenshotHandler(req, res) {
71 | const url = req.query.url;
72 | if (!url) {
73 | return res.status(400).send(
74 | 'Please provide a URL. Example: ?url=https://example.com');
75 | }
76 |
77 | const viewport = {
78 | width: 1280,
79 | height: 1024,
80 | deviceScaleFactor: 1
81 | };
82 |
83 | let fullPage = false;
84 | const size = req.query.size;
85 | if (size) {
86 | const [width, height] = size.split(',').map(item => Number(item));
87 | if (!(isFinite(width) && isFinite(height))) {
88 | return res.status(400).send('Malformed size parameter. Example: ?size=800,600');
89 | }
90 | viewport.width = width;
91 | viewport.height = height;
92 | } else {
93 | fullPage = true;
94 | }
95 |
96 | // res.writeHead(200, {
97 | // // 'Content-Type': 'text/event-stream',
98 | // 'Cache-Control': 'no-cache',
99 | // 'Connection': 'keep-alive',
100 | // 'Access-Control-Allow-Origin': '*',
101 | // 'X-Accel-Buffering': 'no' // Forces Flex App Engine to keep connection open for SSE.
102 | // });
103 | // res.write('Test');
104 | // res.status(200).end();
105 |
106 | const browser = res.locals.browser;
107 |
108 | try {
109 | const page = await browser.newPage();
110 |
111 | // // TODO: client hints don't appear to work.
112 | // await page.setExtraHTTPHeaders(new Map(Object.entries({
113 | // 'Accept-CH': 'DPR, Viewport-Width, Width',
114 | // })));
115 |
116 | // page.on('request', req => {
117 | // console.log(req.headers.get('Accept-CH'));
118 | // });
119 | // page.on('response', res => {
120 | // const type = res.headers.get('Content-Type');
121 | // if (type && type.startsWith('image') || type.includes('text/css')) {
122 | // console.log(res.headers)
123 | // }
124 | // });
125 |
126 | // const devices = require('puppeteer/DeviceDescriptors');
127 | // const iPhone = devices['iPhone 6'];
128 | // await page.emulate(iPhone);
129 |
130 | // const metrics = await page._client.send('Page.getLayoutMetrics');
131 | // const width = Math.ceil(metrics.contentSize.width);
132 | // const height = Math.ceil(metrics.contentSize.height);
133 |
134 | // await page.setViewport({width, height});
135 |
136 | // await page.setViewport(viewport);
137 |
138 | // // Fetch viewport of page.
139 | // const viewport = await page.evaluate(() => {
140 | // return {
141 | // width: document.documentElement.clientWidth,
142 | // height: document.documentElement.clientHeight,
143 | // deviceScaleFactor: window.devicePixelRatio
144 | // };
145 | // });
146 |
147 | await page.goto(url, {waitUntil: 'networkidle2'});
148 |
149 | const opts = {
150 | fullPage,
151 | clip: {
152 | x: 0,
153 | y: 0,
154 | width: viewport.width,
155 | height: viewport.height
156 | },
157 | // omitBackground: true
158 | };
159 | if (fullPage) {
160 | delete opts.clip;
161 | }
162 |
163 | const buffer = await page.screenshot(opts);
164 | // const mimeType = mime.lookup('screenshot.png');
165 | // await page.close();
166 |
167 | res.type('image/png').send(buffer);
168 | } catch (e) {
169 | res.status(500).send(e.toString());
170 | }
171 |
172 | await browser.close();
173 | });
174 |
175 | app.get('/version', async function versionHandler(req, res) {
176 | const browser = res.locals.browser;
177 | res.status(200).send(await browser.version());
178 | await browser.close();
179 | });
180 |
181 | const beefyOpts = {memory: '2GB', timeoutSeconds: 60};
182 | exports.screenshot = functions.runWith(beefyOpts).https.onRequest(app);
183 | exports.render = functions.runWith(beefyOpts).https.onRequest(app);
184 | exports.version = functions.https.onRequest(app);
185 | exports.test = functions.https.onRequest(app);
186 |
187 | // exports.test = functions.https.onRequest(async (req, res) => {
188 | // const {exec} = require('child_process');
189 | // const os = require('os');
190 |
191 | // exec('uname -a', (error, stdout, stderr) => {
192 | // if (error) {
193 | // console.error(`exec error: ${error}`);
194 | // }
195 | // const str = stdout;
196 | // res.status(200).send(str + '\n' + `${process.platform}, ${String(os.release())}, ${os.arch()}`);
197 | // });
198 |
199 | // // res.status(200).send(`${process.platform}, ${String(os.release())}, ${os.arch()}`);
200 | // });
201 |
--------------------------------------------------------------------------------
/functions/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "puppeteer-firebase",
3 | "description": "Useful Puppeteer Firebase Cloud Functions",
4 | "engines": {
5 | "node": "8"
6 | },
7 | "dependencies": {
8 | "express": "^4.16.3",
9 | "firebase-admin": "^5.13.1",
10 | "firebase-functions": "^2.0.2",
11 | "puppeteer": "^1.6.2"
12 | },
13 | "private": true
14 | }
15 |
--------------------------------------------------------------------------------
/functions/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@firebase/app-types@0.3.2":
6 | version "0.3.2"
7 | resolved "https://registry.yarnpkg.com/@firebase/app-types/-/app-types-0.3.2.tgz#a92dc544290e2893bd8c02a81e684dae3d8e7c85"
8 |
9 | "@firebase/app@^0.3.1":
10 | version "0.3.3"
11 | resolved "https://registry.yarnpkg.com/@firebase/app/-/app-0.3.3.tgz#cb8df89495e4409e92ab30c0068b9e0641a6db81"
12 | dependencies:
13 | "@firebase/app-types" "0.3.2"
14 | "@firebase/util" "0.2.1"
15 | dom-storage "2.1.0"
16 | tslib "1.9.0"
17 | xmlhttprequest "1.8.0"
18 |
19 | "@firebase/database-types@0.3.2":
20 | version "0.3.2"
21 | resolved "https://registry.yarnpkg.com/@firebase/database-types/-/database-types-0.3.2.tgz#70611a64dd460e0e253c7427f860d56a1afd86fe"
22 |
23 | "@firebase/database@^0.3.1":
24 | version "0.3.4"
25 | resolved "https://registry.yarnpkg.com/@firebase/database/-/database-0.3.4.tgz#67fd48ed6d8fffc81c6c6f8e68bde70b99ba8ca9"
26 | dependencies:
27 | "@firebase/database-types" "0.3.2"
28 | "@firebase/logger" "0.1.1"
29 | "@firebase/util" "0.2.1"
30 | faye-websocket "0.11.1"
31 | tslib "1.9.0"
32 |
33 | "@firebase/logger@0.1.1":
34 | version "0.1.1"
35 | resolved "https://registry.yarnpkg.com/@firebase/logger/-/logger-0.1.1.tgz#af5df54253286993f4b367c3dabe569c848860d3"
36 |
37 | "@firebase/util@0.2.1":
38 | version "0.2.1"
39 | resolved "https://registry.yarnpkg.com/@firebase/util/-/util-0.2.1.tgz#b59a2fbf14fce21401cbebf776a3e0260b591380"
40 | dependencies:
41 | tslib "1.9.0"
42 |
43 | "@google-cloud/common@^0.17.0":
44 | version "0.17.0"
45 | resolved "https://registry.yarnpkg.com/@google-cloud/common/-/common-0.17.0.tgz#8ef558750db481fc10a13757a49479ab9a1c8c07"
46 | dependencies:
47 | array-uniq "^1.0.3"
48 | arrify "^1.0.1"
49 | concat-stream "^1.6.0"
50 | create-error-class "^3.0.2"
51 | duplexify "^3.5.0"
52 | ent "^2.2.0"
53 | extend "^3.0.1"
54 | google-auto-auth "^0.10.0"
55 | is "^3.2.0"
56 | log-driver "1.2.7"
57 | methmeth "^1.1.0"
58 | modelo "^4.2.0"
59 | request "^2.79.0"
60 | retry-request "^3.0.0"
61 | split-array-stream "^1.0.0"
62 | stream-events "^1.0.1"
63 | string-format-obj "^1.1.0"
64 | through2 "^2.0.3"
65 |
66 | "@google-cloud/common@^0.20.3":
67 | version "0.20.3"
68 | resolved "https://registry.yarnpkg.com/@google-cloud/common/-/common-0.20.3.tgz#639fb9ed07b0e20bdcfa84ebb0838b8cb2068e3b"
69 | dependencies:
70 | "@types/duplexify" "^3.5.0"
71 | "@types/request" "^2.47.0"
72 | arrify "^1.0.1"
73 | axios "^0.18.0"
74 | duplexify "^3.6.0"
75 | ent "^2.2.0"
76 | extend "^3.0.1"
77 | google-auth-library "^1.6.0"
78 | is "^3.2.1"
79 | pify "^3.0.0"
80 | request "^2.87.0"
81 | retry-request "^4.0.0"
82 | split-array-stream "^2.0.0"
83 | stream-events "^1.0.4"
84 | through2 "^2.0.3"
85 |
86 | "@google-cloud/firestore@^0.15.4":
87 | version "0.15.4"
88 | resolved "https://registry.yarnpkg.com/@google-cloud/firestore/-/firestore-0.15.4.tgz#5a23cc7d0c516d0e019e0a8554749b518a0f6723"
89 | dependencies:
90 | "@google-cloud/common" "^0.20.3"
91 | bun "^0.0.12"
92 | deep-equal "^1.0.1"
93 | extend "^3.0.1"
94 | functional-red-black-tree "^1.0.1"
95 | google-gax "^0.17.1"
96 | google-proto-files "^0.16.1"
97 | is "^3.2.1"
98 | lodash.merge "^4.6.1"
99 | pkg-up "^2.0.0"
100 | through2 "^2.0.3"
101 |
102 | "@google-cloud/storage@^1.6.0":
103 | version "1.7.0"
104 | resolved "https://registry.yarnpkg.com/@google-cloud/storage/-/storage-1.7.0.tgz#07bff573d92d5c294db6a04af246688875a8f74b"
105 | dependencies:
106 | "@google-cloud/common" "^0.17.0"
107 | arrify "^1.0.0"
108 | async "^2.0.1"
109 | compressible "^2.0.12"
110 | concat-stream "^1.5.0"
111 | create-error-class "^3.0.2"
112 | duplexify "^3.5.0"
113 | extend "^3.0.0"
114 | gcs-resumable-upload "^0.10.2"
115 | hash-stream-validation "^0.2.1"
116 | is "^3.0.1"
117 | mime "^2.2.0"
118 | mime-types "^2.0.8"
119 | once "^1.3.1"
120 | pumpify "^1.5.1"
121 | request "^2.85.0"
122 | safe-buffer "^5.1.1"
123 | snakeize "^0.1.0"
124 | stream-events "^1.0.1"
125 | through2 "^2.0.0"
126 | xdg-basedir "^3.0.0"
127 |
128 | "@mrmlnc/readdir-enhanced@^2.2.1":
129 | version "2.2.1"
130 | resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde"
131 | dependencies:
132 | call-me-maybe "^1.0.1"
133 | glob-to-regexp "^0.3.0"
134 |
135 | "@nodelib/fs.stat@^1.0.1":
136 | version "1.1.0"
137 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.0.tgz#50c1e2260ac0ed9439a181de3725a0168d59c48a"
138 |
139 | "@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2":
140 | version "1.1.2"
141 | resolved "https://registry.yarnpkg.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf"
142 |
143 | "@protobufjs/base64@^1.1.2":
144 | version "1.1.2"
145 | resolved "https://registry.yarnpkg.com/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735"
146 |
147 | "@protobufjs/codegen@^2.0.4":
148 | version "2.0.4"
149 | resolved "https://registry.yarnpkg.com/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb"
150 |
151 | "@protobufjs/eventemitter@^1.1.0":
152 | version "1.1.0"
153 | resolved "https://registry.yarnpkg.com/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70"
154 |
155 | "@protobufjs/fetch@^1.1.0":
156 | version "1.1.0"
157 | resolved "https://registry.yarnpkg.com/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45"
158 | dependencies:
159 | "@protobufjs/aspromise" "^1.1.1"
160 | "@protobufjs/inquire" "^1.1.0"
161 |
162 | "@protobufjs/float@^1.0.2":
163 | version "1.0.2"
164 | resolved "https://registry.yarnpkg.com/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1"
165 |
166 | "@protobufjs/inquire@^1.1.0":
167 | version "1.1.0"
168 | resolved "https://registry.yarnpkg.com/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089"
169 |
170 | "@protobufjs/path@^1.1.2":
171 | version "1.1.2"
172 | resolved "https://registry.yarnpkg.com/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d"
173 |
174 | "@protobufjs/pool@^1.1.0":
175 | version "1.1.0"
176 | resolved "https://registry.yarnpkg.com/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54"
177 |
178 | "@protobufjs/utf8@^1.1.0":
179 | version "1.1.0"
180 | resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
181 |
182 | "@types/body-parser@*":
183 | version "1.17.0"
184 | resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.17.0.tgz#9f5c9d9bd04bb54be32d5eb9fc0d8c974e6cf58c"
185 | dependencies:
186 | "@types/connect" "*"
187 | "@types/node" "*"
188 |
189 | "@types/caseless@*":
190 | version "0.12.1"
191 | resolved "https://registry.yarnpkg.com/@types/caseless/-/caseless-0.12.1.tgz#9794c69c8385d0192acc471a540d1f8e0d16218a"
192 |
193 | "@types/connect@*":
194 | version "3.4.32"
195 | resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.32.tgz#aa0e9616b9435ccad02bc52b5b454ffc2c70ba28"
196 | dependencies:
197 | "@types/node" "*"
198 |
199 | "@types/cors@^2.8.1":
200 | version "2.8.4"
201 | resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.4.tgz#50991a759a29c0b89492751008c6af7a7c8267b0"
202 | dependencies:
203 | "@types/express" "*"
204 |
205 | "@types/duplexify@^3.5.0":
206 | version "3.5.0"
207 | resolved "https://registry.yarnpkg.com/@types/duplexify/-/duplexify-3.5.0.tgz#c1e8a2c4e05f2a5545c61c31283b76f92d48b007"
208 | dependencies:
209 | "@types/node" "*"
210 |
211 | "@types/express-serve-static-core@*":
212 | version "4.0.49"
213 | resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.0.49.tgz#3438d68d26e39db934ba941f18e3862a1beeb722"
214 | dependencies:
215 | "@types/node" "*"
216 |
217 | "@types/express@*", "@types/express@^4.11.1":
218 | version "4.16.0"
219 | resolved "https://registry.yarnpkg.com/@types/express/-/express-4.16.0.tgz#6d8bc42ccaa6f35cf29a2b7c3333cb47b5a32a19"
220 | dependencies:
221 | "@types/body-parser" "*"
222 | "@types/express-serve-static-core" "*"
223 | "@types/serve-static" "*"
224 |
225 | "@types/form-data@*":
226 | version "2.2.1"
227 | resolved "https://registry.yarnpkg.com/@types/form-data/-/form-data-2.2.1.tgz#ee2b3b8eaa11c0938289953606b745b738c54b1e"
228 | dependencies:
229 | "@types/node" "*"
230 |
231 | "@types/google-cloud__storage@^1.1.7":
232 | version "1.7.0"
233 | resolved "https://registry.yarnpkg.com/@types/google-cloud__storage/-/google-cloud__storage-1.7.0.tgz#60abb5669f78ed07abb625f556d1f396ee84724e"
234 | dependencies:
235 | "@types/node" "*"
236 | "@types/request" "*"
237 |
238 | "@types/jsonwebtoken@^7.2.6":
239 | version "7.2.8"
240 | resolved "https://registry.yarnpkg.com/@types/jsonwebtoken/-/jsonwebtoken-7.2.8.tgz#8d199dab4ddb5bba3234f8311b804d2027af2b3a"
241 | dependencies:
242 | "@types/node" "*"
243 |
244 | "@types/lodash@^4.14.34":
245 | version "4.14.73"
246 | resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.73.tgz#9837e47db8643ba5bcef2c7921f37d90f9c24213"
247 |
248 | "@types/long@^4.0.0":
249 | version "4.0.0"
250 | resolved "https://registry.yarnpkg.com/@types/long/-/long-4.0.0.tgz#719551d2352d301ac8b81db732acb6bdc28dbdef"
251 |
252 | "@types/mime@*":
253 | version "1.3.1"
254 | resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.1.tgz#2cf42972d0931c1060c7d5fa6627fce6bd876f2f"
255 |
256 | "@types/node@*":
257 | version "8.0.22"
258 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.0.22.tgz#9c6bfee1f45f5e9952ff6b487e657ecca48c7777"
259 |
260 | "@types/node@^10.1.0":
261 | version "10.5.6"
262 | resolved "https://registry.yarnpkg.com/@types/node/-/node-10.5.6.tgz#1640f021dd0eaf12e731e54198c12ad2e020dc8e"
263 |
264 | "@types/node@^8.0.53":
265 | version "8.10.23"
266 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.10.23.tgz#e5ccfdafff42af5397c29669b6d7d65f7d629a00"
267 |
268 | "@types/request@*", "@types/request@^2.47.0":
269 | version "2.47.1"
270 | resolved "https://registry.yarnpkg.com/@types/request/-/request-2.47.1.tgz#25410d3afbdac04c91a94ad9efc9824100735824"
271 | dependencies:
272 | "@types/caseless" "*"
273 | "@types/form-data" "*"
274 | "@types/node" "*"
275 | "@types/tough-cookie" "*"
276 |
277 | "@types/serve-static@*":
278 | version "1.7.31"
279 | resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.7.31.tgz#15456de8d98d6b4cff31be6c6af7492ae63f521a"
280 | dependencies:
281 | "@types/express-serve-static-core" "*"
282 | "@types/mime" "*"
283 |
284 | "@types/tough-cookie@*":
285 | version "2.3.3"
286 | resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-2.3.3.tgz#7f226d67d654ec9070e755f46daebf014628e9d9"
287 |
288 | abbrev@1:
289 | version "1.1.1"
290 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
291 |
292 | accepts@~1.3.5:
293 | version "1.3.5"
294 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2"
295 | dependencies:
296 | mime-types "~2.1.18"
297 | negotiator "0.6.1"
298 |
299 | acorn-es7-plugin@^1.0.12:
300 | version "1.1.7"
301 | resolved "https://registry.yarnpkg.com/acorn-es7-plugin/-/acorn-es7-plugin-1.1.7.tgz#f2ee1f3228a90eead1245f9ab1922eb2e71d336b"
302 |
303 | acorn@^5.0.0:
304 | version "5.7.1"
305 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8"
306 |
307 | agent-base@^4.1.0:
308 | version "4.1.1"
309 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.1.1.tgz#92d8a4fc2524a3b09b3666a33b6c97960f23d6a4"
310 | dependencies:
311 | es6-promisify "^5.0.0"
312 |
313 | ajv@^4.9.1:
314 | version "4.11.8"
315 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
316 | dependencies:
317 | co "^4.6.0"
318 | json-stable-stringify "^1.0.1"
319 |
320 | ajv@^5.1.0:
321 | version "5.5.2"
322 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
323 | dependencies:
324 | co "^4.6.0"
325 | fast-deep-equal "^1.0.0"
326 | fast-json-stable-stringify "^2.0.0"
327 | json-schema-traverse "^0.3.0"
328 |
329 | ansi-regex@^2.0.0:
330 | version "2.1.1"
331 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
332 |
333 | ansi-regex@^3.0.0:
334 | version "3.0.0"
335 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
336 |
337 | aproba@^1.0.3:
338 | version "1.2.0"
339 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
340 |
341 | are-we-there-yet@~1.1.2:
342 | version "1.1.5"
343 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
344 | dependencies:
345 | delegates "^1.0.0"
346 | readable-stream "^2.0.6"
347 |
348 | arr-diff@^4.0.0:
349 | version "4.0.0"
350 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
351 |
352 | arr-flatten@^1.1.0:
353 | version "1.1.0"
354 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
355 |
356 | arr-union@^3.1.0:
357 | version "3.1.0"
358 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
359 |
360 | array-filter@^1.0.0:
361 | version "1.0.0"
362 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-1.0.0.tgz#baf79e62e6ef4c2a4c0b831232daffec251f9d83"
363 |
364 | array-flatten@1.1.1:
365 | version "1.1.1"
366 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
367 |
368 | array-union@^1.0.1:
369 | version "1.0.2"
370 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
371 | dependencies:
372 | array-uniq "^1.0.1"
373 |
374 | array-uniq@^1.0.1, array-uniq@^1.0.3:
375 | version "1.0.3"
376 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
377 |
378 | array-unique@^0.3.2:
379 | version "0.3.2"
380 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
381 |
382 | arrify@^1.0.0, arrify@^1.0.1:
383 | version "1.0.1"
384 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
385 |
386 | ascli@~1:
387 | version "1.0.1"
388 | resolved "https://registry.yarnpkg.com/ascli/-/ascli-1.0.1.tgz#bcfa5974a62f18e81cabaeb49732ab4a88f906bc"
389 | dependencies:
390 | colour "~0.7.1"
391 | optjs "~3.2.2"
392 |
393 | asn1@~0.2.3:
394 | version "0.2.3"
395 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
396 |
397 | assert-plus@1.0.0, assert-plus@^1.0.0:
398 | version "1.0.0"
399 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
400 |
401 | assert-plus@^0.2.0:
402 | version "0.2.0"
403 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
404 |
405 | assign-symbols@^1.0.0:
406 | version "1.0.0"
407 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
408 |
409 | async-limiter@~1.0.0:
410 | version "1.0.0"
411 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8"
412 |
413 | async@^2.0.1, async@^2.3.0, async@^2.4.0:
414 | version "2.5.0"
415 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d"
416 | dependencies:
417 | lodash "^4.14.0"
418 |
419 | asynckit@^0.4.0:
420 | version "0.4.0"
421 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
422 |
423 | atob@^2.1.1:
424 | version "2.1.1"
425 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a"
426 |
427 | aws-sign2@~0.6.0:
428 | version "0.6.0"
429 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
430 |
431 | aws-sign2@~0.7.0:
432 | version "0.7.0"
433 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
434 |
435 | aws4@^1.2.1:
436 | version "1.6.0"
437 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
438 |
439 | aws4@^1.6.0:
440 | version "1.8.0"
441 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f"
442 |
443 | axios@^0.18.0:
444 | version "0.18.0"
445 | resolved "https://registry.yarnpkg.com/axios/-/axios-0.18.0.tgz#32d53e4851efdc0a11993b6cd000789d70c05102"
446 | dependencies:
447 | follow-redirects "^1.3.0"
448 | is-buffer "^1.1.5"
449 |
450 | balanced-match@^1.0.0:
451 | version "1.0.0"
452 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
453 |
454 | base64url@2.0.0, base64url@^2.0.0:
455 | version "2.0.0"
456 | resolved "https://registry.yarnpkg.com/base64url/-/base64url-2.0.0.tgz#eac16e03ea1438eff9423d69baa36262ed1f70bb"
457 |
458 | base@^0.11.1:
459 | version "0.11.2"
460 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
461 | dependencies:
462 | cache-base "^1.0.1"
463 | class-utils "^0.3.5"
464 | component-emitter "^1.2.1"
465 | define-property "^1.0.0"
466 | isobject "^3.0.1"
467 | mixin-deep "^1.2.0"
468 | pascalcase "^0.1.1"
469 |
470 | bcrypt-pbkdf@^1.0.0:
471 | version "1.0.1"
472 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
473 | dependencies:
474 | tweetnacl "^0.14.3"
475 |
476 | body-parser@1.18.2:
477 | version "1.18.2"
478 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454"
479 | dependencies:
480 | bytes "3.0.0"
481 | content-type "~1.0.4"
482 | debug "2.6.9"
483 | depd "~1.1.1"
484 | http-errors "~1.6.2"
485 | iconv-lite "0.4.19"
486 | on-finished "~2.3.0"
487 | qs "6.5.1"
488 | raw-body "2.3.2"
489 | type-is "~1.6.15"
490 |
491 | boom@2.x.x:
492 | version "2.10.1"
493 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
494 | dependencies:
495 | hoek "2.x.x"
496 |
497 | brace-expansion@^1.1.7:
498 | version "1.1.8"
499 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
500 | dependencies:
501 | balanced-match "^1.0.0"
502 | concat-map "0.0.1"
503 |
504 | braces@^2.3.1:
505 | version "2.3.2"
506 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
507 | dependencies:
508 | arr-flatten "^1.1.0"
509 | array-unique "^0.3.2"
510 | extend-shallow "^2.0.1"
511 | fill-range "^4.0.0"
512 | isobject "^3.0.1"
513 | repeat-element "^1.1.2"
514 | snapdragon "^0.8.1"
515 | snapdragon-node "^2.0.1"
516 | split-string "^3.0.2"
517 | to-regex "^3.0.1"
518 |
519 | buffer-equal-constant-time@1.0.1:
520 | version "1.0.1"
521 | resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819"
522 |
523 | buffer-from@^1.0.0:
524 | version "1.1.1"
525 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
526 |
527 | bun@^0.0.12:
528 | version "0.0.12"
529 | resolved "https://registry.yarnpkg.com/bun/-/bun-0.0.12.tgz#d54fae69f895557f275423bc14b404030b20a5fc"
530 | dependencies:
531 | readable-stream "~1.0.32"
532 |
533 | bytebuffer@~5:
534 | version "5.0.1"
535 | resolved "https://registry.yarnpkg.com/bytebuffer/-/bytebuffer-5.0.1.tgz#582eea4b1a873b6d020a48d58df85f0bba6cfddd"
536 | dependencies:
537 | long "~3"
538 |
539 | bytes@3.0.0:
540 | version "3.0.0"
541 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
542 |
543 | cache-base@^1.0.1:
544 | version "1.0.1"
545 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
546 | dependencies:
547 | collection-visit "^1.0.0"
548 | component-emitter "^1.2.1"
549 | get-value "^2.0.6"
550 | has-value "^1.0.0"
551 | isobject "^3.0.1"
552 | set-value "^2.0.0"
553 | to-object-path "^0.3.0"
554 | union-value "^1.0.0"
555 | unset-value "^1.0.0"
556 |
557 | call-me-maybe@^1.0.1:
558 | version "1.0.1"
559 | resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b"
560 |
561 | call-signature@0.0.2:
562 | version "0.0.2"
563 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996"
564 |
565 | camelcase@^2.0.1:
566 | version "2.1.1"
567 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
568 |
569 | capture-stack-trace@^1.0.0:
570 | version "1.0.0"
571 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d"
572 |
573 | caseless@~0.12.0:
574 | version "0.12.0"
575 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
576 |
577 | chownr@^1.0.1:
578 | version "1.0.1"
579 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181"
580 |
581 | class-utils@^0.3.5:
582 | version "0.3.6"
583 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
584 | dependencies:
585 | arr-union "^3.1.0"
586 | define-property "^0.2.5"
587 | isobject "^3.0.0"
588 | static-extend "^0.1.1"
589 |
590 | cliui@^3.0.3:
591 | version "3.2.0"
592 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
593 | dependencies:
594 | string-width "^1.0.1"
595 | strip-ansi "^3.0.1"
596 | wrap-ansi "^2.0.0"
597 |
598 | co@^4.6.0:
599 | version "4.6.0"
600 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
601 |
602 | code-point-at@^1.0.0:
603 | version "1.1.0"
604 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
605 |
606 | collection-visit@^1.0.0:
607 | version "1.0.0"
608 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
609 | dependencies:
610 | map-visit "^1.0.0"
611 | object-visit "^1.0.0"
612 |
613 | colour@~0.7.1:
614 | version "0.7.1"
615 | resolved "https://registry.yarnpkg.com/colour/-/colour-0.7.1.tgz#9cb169917ec5d12c0736d3e8685746df1cadf778"
616 |
617 | combined-stream@1.0.6:
618 | version "1.0.6"
619 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818"
620 | dependencies:
621 | delayed-stream "~1.0.0"
622 |
623 | combined-stream@^1.0.5, combined-stream@~1.0.5:
624 | version "1.0.5"
625 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
626 | dependencies:
627 | delayed-stream "~1.0.0"
628 |
629 | component-emitter@^1.2.1:
630 | version "1.2.1"
631 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
632 |
633 | compressible@^2.0.12:
634 | version "2.0.14"
635 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.14.tgz#326c5f507fbb055f54116782b969a81b67a29da7"
636 | dependencies:
637 | mime-db ">= 1.34.0 < 2"
638 |
639 | concat-map@0.0.1:
640 | version "0.0.1"
641 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
642 |
643 | concat-stream@1.6.2:
644 | version "1.6.2"
645 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
646 | dependencies:
647 | buffer-from "^1.0.0"
648 | inherits "^2.0.3"
649 | readable-stream "^2.2.2"
650 | typedarray "^0.0.6"
651 |
652 | concat-stream@^1.5.0, concat-stream@^1.6.0:
653 | version "1.6.0"
654 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
655 | dependencies:
656 | inherits "^2.0.3"
657 | readable-stream "^2.2.2"
658 | typedarray "^0.0.6"
659 |
660 | configstore@^3.1.2:
661 | version "3.1.2"
662 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f"
663 | dependencies:
664 | dot-prop "^4.1.0"
665 | graceful-fs "^4.1.2"
666 | make-dir "^1.0.0"
667 | unique-string "^1.0.0"
668 | write-file-atomic "^2.0.0"
669 | xdg-basedir "^3.0.0"
670 |
671 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
672 | version "1.1.0"
673 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
674 |
675 | content-disposition@0.5.2:
676 | version "0.5.2"
677 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
678 |
679 | content-type@~1.0.4:
680 | version "1.0.4"
681 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
682 |
683 | cookie-signature@1.0.6:
684 | version "1.0.6"
685 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
686 |
687 | cookie@0.3.1:
688 | version "0.3.1"
689 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
690 |
691 | copy-descriptor@^0.1.0:
692 | version "0.1.1"
693 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
694 |
695 | core-js@^2.0.0:
696 | version "2.5.7"
697 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e"
698 |
699 | core-util-is@1.0.2, core-util-is@~1.0.0:
700 | version "1.0.2"
701 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
702 |
703 | cors@^2.8.4:
704 | version "2.8.4"
705 | resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.4.tgz#2bd381f2eb201020105cd50ea59da63090694686"
706 | dependencies:
707 | object-assign "^4"
708 | vary "^1"
709 |
710 | create-error-class@^3.0.2:
711 | version "3.0.2"
712 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6"
713 | dependencies:
714 | capture-stack-trace "^1.0.0"
715 |
716 | cryptiles@2.x.x:
717 | version "2.0.5"
718 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
719 | dependencies:
720 | boom "2.x.x"
721 |
722 | crypto-random-string@^1.0.0:
723 | version "1.0.0"
724 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e"
725 |
726 | dashdash@^1.12.0:
727 | version "1.14.1"
728 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
729 | dependencies:
730 | assert-plus "^1.0.0"
731 |
732 | debug@2.6.9, debug@^2.1.2, debug@^2.2.0, debug@^2.3.3:
733 | version "2.6.9"
734 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
735 | dependencies:
736 | ms "2.0.0"
737 |
738 | debug@^3.1.0:
739 | version "3.1.0"
740 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
741 | dependencies:
742 | ms "2.0.0"
743 |
744 | decamelize@^1.1.1:
745 | version "1.2.0"
746 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
747 |
748 | decode-uri-component@^0.2.0:
749 | version "0.2.0"
750 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
751 |
752 | deep-equal@^1.0.1:
753 | version "1.0.1"
754 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5"
755 |
756 | deep-extend@^0.6.0:
757 | version "0.6.0"
758 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
759 |
760 | define-properties@^1.1.2:
761 | version "1.1.2"
762 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
763 | dependencies:
764 | foreach "^2.0.5"
765 | object-keys "^1.0.8"
766 |
767 | define-property@^0.2.5:
768 | version "0.2.5"
769 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
770 | dependencies:
771 | is-descriptor "^0.1.0"
772 |
773 | define-property@^1.0.0:
774 | version "1.0.0"
775 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
776 | dependencies:
777 | is-descriptor "^1.0.0"
778 |
779 | define-property@^2.0.2:
780 | version "2.0.2"
781 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
782 | dependencies:
783 | is-descriptor "^1.0.2"
784 | isobject "^3.0.1"
785 |
786 | delayed-stream@~1.0.0:
787 | version "1.0.0"
788 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
789 |
790 | delegates@^1.0.0:
791 | version "1.0.0"
792 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
793 |
794 | depd@1.1.1, depd@~1.1.1:
795 | version "1.1.1"
796 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359"
797 |
798 | depd@~1.1.2:
799 | version "1.1.2"
800 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
801 |
802 | destroy@~1.0.4:
803 | version "1.0.4"
804 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
805 |
806 | detect-libc@^1.0.2:
807 | version "1.0.3"
808 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
809 |
810 | diff-match-patch@^1.0.0:
811 | version "1.0.1"
812 | resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.1.tgz#d5f880213d82fbc124d2b95111fb3c033dbad7fa"
813 |
814 | dir-glob@^2.0.0:
815 | version "2.0.0"
816 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034"
817 | dependencies:
818 | arrify "^1.0.1"
819 | path-type "^3.0.0"
820 |
821 | dom-storage@2.1.0:
822 | version "2.1.0"
823 | resolved "https://registry.yarnpkg.com/dom-storage/-/dom-storage-2.1.0.tgz#00fb868bc9201357ea243c7bcfd3304c1e34ea39"
824 |
825 | dot-prop@^4.1.0:
826 | version "4.2.0"
827 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57"
828 | dependencies:
829 | is-obj "^1.0.0"
830 |
831 | duplexify@^3.5.0:
832 | version "3.5.1"
833 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.1.tgz#4e1516be68838bc90a49994f0b39a6e5960befcd"
834 | dependencies:
835 | end-of-stream "^1.0.0"
836 | inherits "^2.0.1"
837 | readable-stream "^2.0.0"
838 | stream-shift "^1.0.0"
839 |
840 | duplexify@^3.6.0:
841 | version "3.6.0"
842 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.6.0.tgz#592903f5d80b38d037220541264d69a198fb3410"
843 | dependencies:
844 | end-of-stream "^1.0.0"
845 | inherits "^2.0.1"
846 | readable-stream "^2.0.0"
847 | stream-shift "^1.0.0"
848 |
849 | eastasianwidth@^0.2.0:
850 | version "0.2.0"
851 | resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb"
852 |
853 | ecc-jsbn@~0.1.1:
854 | version "0.1.1"
855 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
856 | dependencies:
857 | jsbn "~0.1.0"
858 |
859 | ecdsa-sig-formatter@1.0.10:
860 | version "1.0.10"
861 | resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.10.tgz#1c595000f04a8897dfb85000892a0f4c33af86c3"
862 | dependencies:
863 | safe-buffer "^5.0.1"
864 |
865 | ecdsa-sig-formatter@1.0.9:
866 | version "1.0.9"
867 | resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.9.tgz#4bc926274ec3b5abb5016e7e1d60921ac262b2a1"
868 | dependencies:
869 | base64url "^2.0.0"
870 | safe-buffer "^5.0.1"
871 |
872 | ee-first@1.1.1:
873 | version "1.1.1"
874 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
875 |
876 | empower-core@^1.2.0:
877 | version "1.2.0"
878 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-1.2.0.tgz#ce3fb2484d5187fa29c23fba8344b0b2fdf5601c"
879 | dependencies:
880 | call-signature "0.0.2"
881 | core-js "^2.0.0"
882 |
883 | empower@^1.3.0:
884 | version "1.3.0"
885 | resolved "https://registry.yarnpkg.com/empower/-/empower-1.3.0.tgz#6b05e77625e77dc44945c4328562c3020b01fa4b"
886 | dependencies:
887 | core-js "^2.0.0"
888 | empower-core "^1.2.0"
889 |
890 | encodeurl@~1.0.2:
891 | version "1.0.2"
892 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
893 |
894 | end-of-stream@^1.0.0, end-of-stream@^1.1.0:
895 | version "1.4.0"
896 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.0.tgz#7a90d833efda6cfa6eac0f4949dbb0fad3a63206"
897 | dependencies:
898 | once "^1.4.0"
899 |
900 | ent@^2.2.0:
901 | version "2.2.0"
902 | resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d"
903 |
904 | es6-promise@^4.0.3:
905 | version "4.1.1"
906 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.1.1.tgz#8811e90915d9a0dba36274f0b242dbda78f9c92a"
907 |
908 | es6-promisify@^5.0.0:
909 | version "5.0.0"
910 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203"
911 | dependencies:
912 | es6-promise "^4.0.3"
913 |
914 | escape-html@~1.0.3:
915 | version "1.0.3"
916 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
917 |
918 | espurify@^1.6.0:
919 | version "1.8.1"
920 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.8.1.tgz#5746c6c1ab42d302de10bd1d5bf7f0e8c0515056"
921 | dependencies:
922 | core-js "^2.0.0"
923 |
924 | estraverse@^4.1.0, estraverse@^4.2.0:
925 | version "4.2.0"
926 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
927 |
928 | etag@~1.8.1:
929 | version "1.8.1"
930 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
931 |
932 | expand-brackets@^2.1.4:
933 | version "2.1.4"
934 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
935 | dependencies:
936 | debug "^2.3.3"
937 | define-property "^0.2.5"
938 | extend-shallow "^2.0.1"
939 | posix-character-classes "^0.1.0"
940 | regex-not "^1.0.0"
941 | snapdragon "^0.8.1"
942 | to-regex "^3.0.1"
943 |
944 | express@^4.16.2, express@^4.16.3:
945 | version "4.16.3"
946 | resolved "https://registry.yarnpkg.com/express/-/express-4.16.3.tgz#6af8a502350db3246ecc4becf6b5a34d22f7ed53"
947 | dependencies:
948 | accepts "~1.3.5"
949 | array-flatten "1.1.1"
950 | body-parser "1.18.2"
951 | content-disposition "0.5.2"
952 | content-type "~1.0.4"
953 | cookie "0.3.1"
954 | cookie-signature "1.0.6"
955 | debug "2.6.9"
956 | depd "~1.1.2"
957 | encodeurl "~1.0.2"
958 | escape-html "~1.0.3"
959 | etag "~1.8.1"
960 | finalhandler "1.1.1"
961 | fresh "0.5.2"
962 | merge-descriptors "1.0.1"
963 | methods "~1.1.2"
964 | on-finished "~2.3.0"
965 | parseurl "~1.3.2"
966 | path-to-regexp "0.1.7"
967 | proxy-addr "~2.0.3"
968 | qs "6.5.1"
969 | range-parser "~1.2.0"
970 | safe-buffer "5.1.1"
971 | send "0.16.2"
972 | serve-static "1.13.2"
973 | setprototypeof "1.1.0"
974 | statuses "~1.4.0"
975 | type-is "~1.6.16"
976 | utils-merge "1.0.1"
977 | vary "~1.1.2"
978 |
979 | extend-shallow@^2.0.1:
980 | version "2.0.1"
981 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
982 | dependencies:
983 | is-extendable "^0.1.0"
984 |
985 | extend-shallow@^3.0.0, extend-shallow@^3.0.2:
986 | version "3.0.2"
987 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
988 | dependencies:
989 | assign-symbols "^1.0.0"
990 | is-extendable "^1.0.1"
991 |
992 | extend@^3.0.0, extend@~3.0.0:
993 | version "3.0.1"
994 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
995 |
996 | extend@^3.0.1, extend@~3.0.1:
997 | version "3.0.2"
998 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
999 |
1000 | extglob@^2.0.4:
1001 | version "2.0.4"
1002 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
1003 | dependencies:
1004 | array-unique "^0.3.2"
1005 | define-property "^1.0.0"
1006 | expand-brackets "^2.1.4"
1007 | extend-shallow "^2.0.1"
1008 | fragment-cache "^0.2.1"
1009 | regex-not "^1.0.0"
1010 | snapdragon "^0.8.1"
1011 | to-regex "^3.0.1"
1012 |
1013 | extract-zip@^1.6.6:
1014 | version "1.6.7"
1015 | resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.6.7.tgz#a840b4b8af6403264c8db57f4f1a74333ef81fe9"
1016 | dependencies:
1017 | concat-stream "1.6.2"
1018 | debug "2.6.9"
1019 | mkdirp "0.5.1"
1020 | yauzl "2.4.1"
1021 |
1022 | extsprintf@1.3.0, extsprintf@^1.2.0:
1023 | version "1.3.0"
1024 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
1025 |
1026 | fast-deep-equal@^1.0.0:
1027 | version "1.1.0"
1028 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614"
1029 |
1030 | fast-glob@^2.0.2:
1031 | version "2.2.2"
1032 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.2.tgz#71723338ac9b4e0e2fff1d6748a2a13d5ed352bf"
1033 | dependencies:
1034 | "@mrmlnc/readdir-enhanced" "^2.2.1"
1035 | "@nodelib/fs.stat" "^1.0.1"
1036 | glob-parent "^3.1.0"
1037 | is-glob "^4.0.0"
1038 | merge2 "^1.2.1"
1039 | micromatch "^3.1.10"
1040 |
1041 | fast-json-stable-stringify@^2.0.0:
1042 | version "2.0.0"
1043 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
1044 |
1045 | faye-websocket@0.11.1:
1046 | version "0.11.1"
1047 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38"
1048 | dependencies:
1049 | websocket-driver ">=0.5.1"
1050 |
1051 | fd-slicer@~1.0.1:
1052 | version "1.0.1"
1053 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65"
1054 | dependencies:
1055 | pend "~1.2.0"
1056 |
1057 | fill-range@^4.0.0:
1058 | version "4.0.0"
1059 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
1060 | dependencies:
1061 | extend-shallow "^2.0.1"
1062 | is-number "^3.0.0"
1063 | repeat-string "^1.6.1"
1064 | to-regex-range "^2.1.0"
1065 |
1066 | finalhandler@1.1.1:
1067 | version "1.1.1"
1068 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.1.tgz#eebf4ed840079c83f4249038c9d703008301b105"
1069 | dependencies:
1070 | debug "2.6.9"
1071 | encodeurl "~1.0.2"
1072 | escape-html "~1.0.3"
1073 | on-finished "~2.3.0"
1074 | parseurl "~1.3.2"
1075 | statuses "~1.4.0"
1076 | unpipe "~1.0.0"
1077 |
1078 | find-up@^2.1.0:
1079 | version "2.1.0"
1080 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1081 | dependencies:
1082 | locate-path "^2.0.0"
1083 |
1084 | firebase-admin@^5.13.1:
1085 | version "5.13.1"
1086 | resolved "https://registry.yarnpkg.com/firebase-admin/-/firebase-admin-5.13.1.tgz#79cfa2ce20c90061ae09176e33b7767c1eb02f96"
1087 | dependencies:
1088 | "@firebase/app" "^0.3.1"
1089 | "@firebase/database" "^0.3.1"
1090 | "@google-cloud/firestore" "^0.15.4"
1091 | "@google-cloud/storage" "^1.6.0"
1092 | "@types/google-cloud__storage" "^1.1.7"
1093 | "@types/node" "^8.0.53"
1094 | jsonwebtoken "8.1.0"
1095 | node-forge "0.7.4"
1096 |
1097 | firebase-functions@^2.0.2:
1098 | version "2.0.2"
1099 | resolved "https://registry.yarnpkg.com/firebase-functions/-/firebase-functions-2.0.2.tgz#49666f13da9b29d2ff98861ba611add6b8424d6f"
1100 | dependencies:
1101 | "@types/cors" "^2.8.1"
1102 | "@types/express" "^4.11.1"
1103 | "@types/jsonwebtoken" "^7.2.6"
1104 | "@types/lodash" "^4.14.34"
1105 | cors "^2.8.4"
1106 | express "^4.16.2"
1107 | jsonwebtoken "^8.2.1"
1108 | lodash "^4.6.1"
1109 |
1110 | follow-redirects@^1.3.0:
1111 | version "1.5.2"
1112 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.2.tgz#5a9d80e0165957e5ef0c1210678fc5c4acb9fb03"
1113 | dependencies:
1114 | debug "^3.1.0"
1115 |
1116 | for-in@^1.0.2:
1117 | version "1.0.2"
1118 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1119 |
1120 | foreach@^2.0.5:
1121 | version "2.0.5"
1122 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
1123 |
1124 | forever-agent@~0.6.1:
1125 | version "0.6.1"
1126 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1127 |
1128 | form-data@~2.1.1:
1129 | version "2.1.4"
1130 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
1131 | dependencies:
1132 | asynckit "^0.4.0"
1133 | combined-stream "^1.0.5"
1134 | mime-types "^2.1.12"
1135 |
1136 | form-data@~2.3.1:
1137 | version "2.3.2"
1138 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099"
1139 | dependencies:
1140 | asynckit "^0.4.0"
1141 | combined-stream "1.0.6"
1142 | mime-types "^2.1.12"
1143 |
1144 | forwarded@~0.1.2:
1145 | version "0.1.2"
1146 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
1147 |
1148 | fragment-cache@^0.2.1:
1149 | version "0.2.1"
1150 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
1151 | dependencies:
1152 | map-cache "^0.2.2"
1153 |
1154 | fresh@0.5.2:
1155 | version "0.5.2"
1156 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
1157 |
1158 | fs-minipass@^1.2.5:
1159 | version "1.2.5"
1160 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d"
1161 | dependencies:
1162 | minipass "^2.2.1"
1163 |
1164 | fs.realpath@^1.0.0:
1165 | version "1.0.0"
1166 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1167 |
1168 | functional-red-black-tree@^1.0.1:
1169 | version "1.0.1"
1170 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
1171 |
1172 | gauge@~2.7.3:
1173 | version "2.7.4"
1174 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1175 | dependencies:
1176 | aproba "^1.0.3"
1177 | console-control-strings "^1.0.0"
1178 | has-unicode "^2.0.0"
1179 | object-assign "^4.1.0"
1180 | signal-exit "^3.0.0"
1181 | string-width "^1.0.1"
1182 | strip-ansi "^3.0.1"
1183 | wide-align "^1.1.0"
1184 |
1185 | gcp-metadata@^0.6.1, gcp-metadata@^0.6.3:
1186 | version "0.6.3"
1187 | resolved "https://registry.yarnpkg.com/gcp-metadata/-/gcp-metadata-0.6.3.tgz#4550c08859c528b370459bd77a7187ea0bdbc4ab"
1188 | dependencies:
1189 | axios "^0.18.0"
1190 | extend "^3.0.1"
1191 | retry-axios "0.3.2"
1192 |
1193 | gcs-resumable-upload@^0.10.2:
1194 | version "0.10.2"
1195 | resolved "https://registry.yarnpkg.com/gcs-resumable-upload/-/gcs-resumable-upload-0.10.2.tgz#7f29b3ee23dcec4170367c0711418249c660545f"
1196 | dependencies:
1197 | configstore "^3.1.2"
1198 | google-auto-auth "^0.10.0"
1199 | pumpify "^1.4.0"
1200 | request "^2.85.0"
1201 | stream-events "^1.0.3"
1202 |
1203 | get-value@^2.0.3, get-value@^2.0.6:
1204 | version "2.0.6"
1205 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
1206 |
1207 | getpass@^0.1.1:
1208 | version "0.1.7"
1209 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
1210 | dependencies:
1211 | assert-plus "^1.0.0"
1212 |
1213 | glob-parent@^3.1.0:
1214 | version "3.1.0"
1215 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
1216 | dependencies:
1217 | is-glob "^3.1.0"
1218 | path-dirname "^1.0.0"
1219 |
1220 | glob-to-regexp@^0.3.0:
1221 | version "0.3.0"
1222 | resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab"
1223 |
1224 | glob@^7.0.5, glob@^7.1.2:
1225 | version "7.1.2"
1226 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1227 | dependencies:
1228 | fs.realpath "^1.0.0"
1229 | inflight "^1.0.4"
1230 | inherits "2"
1231 | minimatch "^3.0.4"
1232 | once "^1.3.0"
1233 | path-is-absolute "^1.0.0"
1234 |
1235 | globby@^8.0.0, globby@^8.0.1:
1236 | version "8.0.1"
1237 | resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.1.tgz#b5ad48b8aa80b35b814fc1281ecc851f1d2b5b50"
1238 | dependencies:
1239 | array-union "^1.0.1"
1240 | dir-glob "^2.0.0"
1241 | fast-glob "^2.0.2"
1242 | glob "^7.1.2"
1243 | ignore "^3.3.5"
1244 | pify "^3.0.0"
1245 | slash "^1.0.0"
1246 |
1247 | google-auth-library@^1.3.1, google-auth-library@^1.6.0, google-auth-library@^1.6.1:
1248 | version "1.6.1"
1249 | resolved "https://registry.yarnpkg.com/google-auth-library/-/google-auth-library-1.6.1.tgz#9c73d831ad720c0c3048ab89d0ffdec714d07dd2"
1250 | dependencies:
1251 | axios "^0.18.0"
1252 | gcp-metadata "^0.6.3"
1253 | gtoken "^2.3.0"
1254 | jws "^3.1.5"
1255 | lodash.isstring "^4.0.1"
1256 | lru-cache "^4.1.3"
1257 | retry-axios "^0.3.2"
1258 |
1259 | google-auto-auth@^0.10.0:
1260 | version "0.10.1"
1261 | resolved "https://registry.yarnpkg.com/google-auto-auth/-/google-auto-auth-0.10.1.tgz#68834a6f3da59a6cb27fce56f76e3d99ee49d0a2"
1262 | dependencies:
1263 | async "^2.3.0"
1264 | gcp-metadata "^0.6.1"
1265 | google-auth-library "^1.3.1"
1266 | request "^2.79.0"
1267 |
1268 | google-gax@^0.17.1:
1269 | version "0.17.1"
1270 | resolved "https://registry.yarnpkg.com/google-gax/-/google-gax-0.17.1.tgz#825ead4ab68f1cb3a702ed0a6c64d7ac9b882747"
1271 | dependencies:
1272 | duplexify "^3.6.0"
1273 | extend "^3.0.1"
1274 | globby "^8.0.1"
1275 | google-auth-library "^1.6.1"
1276 | google-proto-files "^0.16.0"
1277 | grpc "^1.12.2"
1278 | is-stream-ended "^0.1.4"
1279 | lodash "^4.17.10"
1280 | protobufjs "^6.8.6"
1281 | retry-request "^4.0.0"
1282 | through2 "^2.0.3"
1283 |
1284 | google-p12-pem@^1.0.0:
1285 | version "1.0.2"
1286 | resolved "https://registry.yarnpkg.com/google-p12-pem/-/google-p12-pem-1.0.2.tgz#c8a3843504012283a0dbffc7430b7c753ecd4b07"
1287 | dependencies:
1288 | node-forge "^0.7.4"
1289 | pify "^3.0.0"
1290 |
1291 | google-proto-files@^0.16.0, google-proto-files@^0.16.1:
1292 | version "0.16.1"
1293 | resolved "https://registry.yarnpkg.com/google-proto-files/-/google-proto-files-0.16.1.tgz#e422e4c0cfd65c481b63f3c0e0cca03ba9cd97ce"
1294 | dependencies:
1295 | globby "^8.0.0"
1296 | power-assert "^1.4.4"
1297 | protobufjs "^6.8.0"
1298 |
1299 | graceful-fs@^4.1.11, graceful-fs@^4.1.2:
1300 | version "4.1.11"
1301 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1302 |
1303 | grpc@^1.12.2:
1304 | version "1.13.1"
1305 | resolved "https://registry.yarnpkg.com/grpc/-/grpc-1.13.1.tgz#9b5c49d4e56309b6e3bd631f8948b7b298d88790"
1306 | dependencies:
1307 | lodash "^4.17.5"
1308 | nan "^2.0.0"
1309 | node-pre-gyp "^0.10.0"
1310 | protobufjs "^5.0.3"
1311 |
1312 | gtoken@^2.3.0:
1313 | version "2.3.0"
1314 | resolved "https://registry.yarnpkg.com/gtoken/-/gtoken-2.3.0.tgz#4e0ffc16432d7041a1b3dbc1d97aac17a5dc964a"
1315 | dependencies:
1316 | axios "^0.18.0"
1317 | google-p12-pem "^1.0.0"
1318 | jws "^3.1.4"
1319 | mime "^2.2.0"
1320 | pify "^3.0.0"
1321 |
1322 | har-schema@^1.0.5:
1323 | version "1.0.5"
1324 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
1325 |
1326 | har-schema@^2.0.0:
1327 | version "2.0.0"
1328 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
1329 |
1330 | har-validator@~4.2.1:
1331 | version "4.2.1"
1332 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
1333 | dependencies:
1334 | ajv "^4.9.1"
1335 | har-schema "^1.0.5"
1336 |
1337 | har-validator@~5.0.3:
1338 | version "5.0.3"
1339 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd"
1340 | dependencies:
1341 | ajv "^5.1.0"
1342 | har-schema "^2.0.0"
1343 |
1344 | has-unicode@^2.0.0:
1345 | version "2.0.1"
1346 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1347 |
1348 | has-value@^0.3.1:
1349 | version "0.3.1"
1350 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
1351 | dependencies:
1352 | get-value "^2.0.3"
1353 | has-values "^0.1.4"
1354 | isobject "^2.0.0"
1355 |
1356 | has-value@^1.0.0:
1357 | version "1.0.0"
1358 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
1359 | dependencies:
1360 | get-value "^2.0.6"
1361 | has-values "^1.0.0"
1362 | isobject "^3.0.0"
1363 |
1364 | has-values@^0.1.4:
1365 | version "0.1.4"
1366 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
1367 |
1368 | has-values@^1.0.0:
1369 | version "1.0.0"
1370 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
1371 | dependencies:
1372 | is-number "^3.0.0"
1373 | kind-of "^4.0.0"
1374 |
1375 | hash-stream-validation@^0.2.1:
1376 | version "0.2.1"
1377 | resolved "https://registry.yarnpkg.com/hash-stream-validation/-/hash-stream-validation-0.2.1.tgz#ecc9b997b218be5bb31298628bb807869b73dcd1"
1378 | dependencies:
1379 | through2 "^2.0.0"
1380 |
1381 | hawk@~3.1.3:
1382 | version "3.1.3"
1383 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1384 | dependencies:
1385 | boom "2.x.x"
1386 | cryptiles "2.x.x"
1387 | hoek "2.x.x"
1388 | sntp "1.x.x"
1389 |
1390 | hoek@2.x.x:
1391 | version "2.16.3"
1392 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1393 |
1394 | http-errors@1.6.2, http-errors@~1.6.2:
1395 | version "1.6.2"
1396 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736"
1397 | dependencies:
1398 | depd "1.1.1"
1399 | inherits "2.0.3"
1400 | setprototypeof "1.0.3"
1401 | statuses ">= 1.3.1 < 2"
1402 |
1403 | http-signature@~1.1.0:
1404 | version "1.1.1"
1405 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1406 | dependencies:
1407 | assert-plus "^0.2.0"
1408 | jsprim "^1.2.2"
1409 | sshpk "^1.7.0"
1410 |
1411 | http-signature@~1.2.0:
1412 | version "1.2.0"
1413 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
1414 | dependencies:
1415 | assert-plus "^1.0.0"
1416 | jsprim "^1.2.2"
1417 | sshpk "^1.7.0"
1418 |
1419 | https-proxy-agent@^2.2.1:
1420 | version "2.2.1"
1421 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz#51552970fa04d723e04c56d04178c3f92592bbc0"
1422 | dependencies:
1423 | agent-base "^4.1.0"
1424 | debug "^3.1.0"
1425 |
1426 | iconv-lite@0.4.19:
1427 | version "0.4.19"
1428 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
1429 |
1430 | iconv-lite@^0.4.4:
1431 | version "0.4.23"
1432 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63"
1433 | dependencies:
1434 | safer-buffer ">= 2.1.2 < 3"
1435 |
1436 | ignore-walk@^3.0.1:
1437 | version "3.0.1"
1438 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8"
1439 | dependencies:
1440 | minimatch "^3.0.4"
1441 |
1442 | ignore@^3.3.5:
1443 | version "3.3.10"
1444 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043"
1445 |
1446 | imurmurhash@^0.1.4:
1447 | version "0.1.4"
1448 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1449 |
1450 | indexof@0.0.1:
1451 | version "0.0.1"
1452 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
1453 |
1454 | inflight@^1.0.4:
1455 | version "1.0.6"
1456 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1457 | dependencies:
1458 | once "^1.3.0"
1459 | wrappy "1"
1460 |
1461 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3:
1462 | version "2.0.3"
1463 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1464 |
1465 | ini@~1.3.0:
1466 | version "1.3.5"
1467 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
1468 |
1469 | invert-kv@^1.0.0:
1470 | version "1.0.0"
1471 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
1472 |
1473 | ipaddr.js@1.8.0:
1474 | version "1.8.0"
1475 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.8.0.tgz#eaa33d6ddd7ace8f7f6fe0c9ca0440e706738b1e"
1476 |
1477 | is-accessor-descriptor@^0.1.6:
1478 | version "0.1.6"
1479 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
1480 | dependencies:
1481 | kind-of "^3.0.2"
1482 |
1483 | is-accessor-descriptor@^1.0.0:
1484 | version "1.0.0"
1485 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
1486 | dependencies:
1487 | kind-of "^6.0.0"
1488 |
1489 | is-buffer@^1.1.5:
1490 | version "1.1.6"
1491 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
1492 |
1493 | is-data-descriptor@^0.1.4:
1494 | version "0.1.4"
1495 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
1496 | dependencies:
1497 | kind-of "^3.0.2"
1498 |
1499 | is-data-descriptor@^1.0.0:
1500 | version "1.0.0"
1501 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
1502 | dependencies:
1503 | kind-of "^6.0.0"
1504 |
1505 | is-descriptor@^0.1.0:
1506 | version "0.1.6"
1507 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
1508 | dependencies:
1509 | is-accessor-descriptor "^0.1.6"
1510 | is-data-descriptor "^0.1.4"
1511 | kind-of "^5.0.0"
1512 |
1513 | is-descriptor@^1.0.0, is-descriptor@^1.0.2:
1514 | version "1.0.2"
1515 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
1516 | dependencies:
1517 | is-accessor-descriptor "^1.0.0"
1518 | is-data-descriptor "^1.0.0"
1519 | kind-of "^6.0.2"
1520 |
1521 | is-extendable@^0.1.0, is-extendable@^0.1.1:
1522 | version "0.1.1"
1523 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1524 |
1525 | is-extendable@^1.0.1:
1526 | version "1.0.1"
1527 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
1528 | dependencies:
1529 | is-plain-object "^2.0.4"
1530 |
1531 | is-extglob@^2.1.0, is-extglob@^2.1.1:
1532 | version "2.1.1"
1533 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1534 |
1535 | is-fullwidth-code-point@^1.0.0:
1536 | version "1.0.0"
1537 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1538 | dependencies:
1539 | number-is-nan "^1.0.0"
1540 |
1541 | is-fullwidth-code-point@^2.0.0:
1542 | version "2.0.0"
1543 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1544 |
1545 | is-glob@^3.1.0:
1546 | version "3.1.0"
1547 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
1548 | dependencies:
1549 | is-extglob "^2.1.0"
1550 |
1551 | is-glob@^4.0.0:
1552 | version "4.0.0"
1553 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0"
1554 | dependencies:
1555 | is-extglob "^2.1.1"
1556 |
1557 | is-number@^3.0.0:
1558 | version "3.0.0"
1559 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1560 | dependencies:
1561 | kind-of "^3.0.2"
1562 |
1563 | is-obj@^1.0.0:
1564 | version "1.0.1"
1565 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
1566 |
1567 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
1568 | version "2.0.4"
1569 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
1570 | dependencies:
1571 | isobject "^3.0.1"
1572 |
1573 | is-stream-ended@^0.1.0:
1574 | version "0.1.3"
1575 | resolved "https://registry.yarnpkg.com/is-stream-ended/-/is-stream-ended-0.1.3.tgz#a0473b267c756635486beedc7e3344e549d152ac"
1576 |
1577 | is-stream-ended@^0.1.4:
1578 | version "0.1.4"
1579 | resolved "https://registry.yarnpkg.com/is-stream-ended/-/is-stream-ended-0.1.4.tgz#f50224e95e06bce0e356d440a4827cd35b267eda"
1580 |
1581 | is-typedarray@~1.0.0:
1582 | version "1.0.0"
1583 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1584 |
1585 | is-windows@^1.0.2:
1586 | version "1.0.2"
1587 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
1588 |
1589 | is@^3.0.1, is@^3.2.0, is@^3.2.1:
1590 | version "3.2.1"
1591 | resolved "https://registry.yarnpkg.com/is/-/is-3.2.1.tgz#d0ac2ad55eb7b0bec926a5266f6c662aaa83dca5"
1592 |
1593 | isarray@0.0.1:
1594 | version "0.0.1"
1595 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
1596 |
1597 | isarray@1.0.0, isarray@~1.0.0:
1598 | version "1.0.0"
1599 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1600 |
1601 | isobject@^2.0.0:
1602 | version "2.1.0"
1603 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1604 | dependencies:
1605 | isarray "1.0.0"
1606 |
1607 | isobject@^3.0.0, isobject@^3.0.1:
1608 | version "3.0.1"
1609 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
1610 |
1611 | isstream@~0.1.2:
1612 | version "0.1.2"
1613 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1614 |
1615 | jsbn@~0.1.0:
1616 | version "0.1.1"
1617 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
1618 |
1619 | json-schema-traverse@^0.3.0:
1620 | version "0.3.1"
1621 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
1622 |
1623 | json-schema@0.2.3:
1624 | version "0.2.3"
1625 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1626 |
1627 | json-stable-stringify@^1.0.1:
1628 | version "1.0.1"
1629 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1630 | dependencies:
1631 | jsonify "~0.0.0"
1632 |
1633 | json-stringify-safe@~5.0.1:
1634 | version "5.0.1"
1635 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1636 |
1637 | jsonify@~0.0.0:
1638 | version "0.0.0"
1639 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1640 |
1641 | jsonwebtoken@8.1.0:
1642 | version "8.1.0"
1643 | resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.1.0.tgz#c6397cd2e5fd583d65c007a83dc7bb78e6982b83"
1644 | dependencies:
1645 | jws "^3.1.4"
1646 | lodash.includes "^4.3.0"
1647 | lodash.isboolean "^3.0.3"
1648 | lodash.isinteger "^4.0.4"
1649 | lodash.isnumber "^3.0.3"
1650 | lodash.isplainobject "^4.0.6"
1651 | lodash.isstring "^4.0.1"
1652 | lodash.once "^4.0.0"
1653 | ms "^2.0.0"
1654 | xtend "^4.0.1"
1655 |
1656 | jsonwebtoken@^8.2.1:
1657 | version "8.3.0"
1658 | resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.3.0.tgz#056c90eee9a65ed6e6c72ddb0a1d325109aaf643"
1659 | dependencies:
1660 | jws "^3.1.5"
1661 | lodash.includes "^4.3.0"
1662 | lodash.isboolean "^3.0.3"
1663 | lodash.isinteger "^4.0.4"
1664 | lodash.isnumber "^3.0.3"
1665 | lodash.isplainobject "^4.0.6"
1666 | lodash.isstring "^4.0.1"
1667 | lodash.once "^4.0.0"
1668 | ms "^2.1.1"
1669 |
1670 | jsprim@^1.2.2:
1671 | version "1.4.1"
1672 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
1673 | dependencies:
1674 | assert-plus "1.0.0"
1675 | extsprintf "1.3.0"
1676 | json-schema "0.2.3"
1677 | verror "1.10.0"
1678 |
1679 | jwa@^1.1.4:
1680 | version "1.1.5"
1681 | resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.1.5.tgz#a0552ce0220742cd52e153774a32905c30e756e5"
1682 | dependencies:
1683 | base64url "2.0.0"
1684 | buffer-equal-constant-time "1.0.1"
1685 | ecdsa-sig-formatter "1.0.9"
1686 | safe-buffer "^5.0.1"
1687 |
1688 | jwa@^1.1.5:
1689 | version "1.1.6"
1690 | resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.1.6.tgz#87240e76c9808dbde18783cf2264ef4929ee50e6"
1691 | dependencies:
1692 | buffer-equal-constant-time "1.0.1"
1693 | ecdsa-sig-formatter "1.0.10"
1694 | safe-buffer "^5.0.1"
1695 |
1696 | jws@^3.1.4:
1697 | version "3.1.4"
1698 | resolved "https://registry.yarnpkg.com/jws/-/jws-3.1.4.tgz#f9e8b9338e8a847277d6444b1464f61880e050a2"
1699 | dependencies:
1700 | base64url "^2.0.0"
1701 | jwa "^1.1.4"
1702 | safe-buffer "^5.0.1"
1703 |
1704 | jws@^3.1.5:
1705 | version "3.1.5"
1706 | resolved "https://registry.yarnpkg.com/jws/-/jws-3.1.5.tgz#80d12d05b293d1e841e7cb8b4e69e561adcf834f"
1707 | dependencies:
1708 | jwa "^1.1.5"
1709 | safe-buffer "^5.0.1"
1710 |
1711 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
1712 | version "3.2.2"
1713 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1714 | dependencies:
1715 | is-buffer "^1.1.5"
1716 |
1717 | kind-of@^4.0.0:
1718 | version "4.0.0"
1719 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
1720 | dependencies:
1721 | is-buffer "^1.1.5"
1722 |
1723 | kind-of@^5.0.0:
1724 | version "5.1.0"
1725 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
1726 |
1727 | kind-of@^6.0.0, kind-of@^6.0.2:
1728 | version "6.0.2"
1729 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
1730 |
1731 | lcid@^1.0.0:
1732 | version "1.0.0"
1733 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
1734 | dependencies:
1735 | invert-kv "^1.0.0"
1736 |
1737 | locate-path@^2.0.0:
1738 | version "2.0.0"
1739 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1740 | dependencies:
1741 | p-locate "^2.0.0"
1742 | path-exists "^3.0.0"
1743 |
1744 | lodash.includes@^4.3.0:
1745 | version "4.3.0"
1746 | resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f"
1747 |
1748 | lodash.isboolean@^3.0.3:
1749 | version "3.0.3"
1750 | resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6"
1751 |
1752 | lodash.isinteger@^4.0.4:
1753 | version "4.0.4"
1754 | resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343"
1755 |
1756 | lodash.isnumber@^3.0.3:
1757 | version "3.0.3"
1758 | resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc"
1759 |
1760 | lodash.isplainobject@^4.0.6:
1761 | version "4.0.6"
1762 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
1763 |
1764 | lodash.isstring@^4.0.1:
1765 | version "4.0.1"
1766 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"
1767 |
1768 | lodash.merge@^4.6.1:
1769 | version "4.6.1"
1770 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54"
1771 |
1772 | lodash.once@^4.0.0:
1773 | version "4.1.1"
1774 | resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac"
1775 |
1776 | lodash@^4.14.0, lodash@^4.6.1:
1777 | version "4.17.4"
1778 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
1779 |
1780 | lodash@^4.17.10, lodash@^4.17.5:
1781 | version "4.17.10"
1782 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"
1783 |
1784 | log-driver@1.2.7:
1785 | version "1.2.7"
1786 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.7.tgz#63b95021f0702fedfa2c9bb0a24e7797d71871d8"
1787 |
1788 | long@^4.0.0:
1789 | version "4.0.0"
1790 | resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28"
1791 |
1792 | long@~3:
1793 | version "3.2.0"
1794 | resolved "https://registry.yarnpkg.com/long/-/long-3.2.0.tgz#d821b7138ca1cb581c172990ef14db200b5c474b"
1795 |
1796 | lru-cache@^4.1.3:
1797 | version "4.1.3"
1798 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c"
1799 | dependencies:
1800 | pseudomap "^1.0.2"
1801 | yallist "^2.1.2"
1802 |
1803 | make-dir@^1.0.0:
1804 | version "1.0.0"
1805 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978"
1806 | dependencies:
1807 | pify "^2.3.0"
1808 |
1809 | map-cache@^0.2.2:
1810 | version "0.2.2"
1811 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
1812 |
1813 | map-visit@^1.0.0:
1814 | version "1.0.0"
1815 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
1816 | dependencies:
1817 | object-visit "^1.0.0"
1818 |
1819 | media-typer@0.3.0:
1820 | version "0.3.0"
1821 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
1822 |
1823 | merge-descriptors@1.0.1:
1824 | version "1.0.1"
1825 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
1826 |
1827 | merge2@^1.2.1:
1828 | version "1.2.2"
1829 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.2.2.tgz#03212e3da8d86c4d8523cebd6318193414f94e34"
1830 |
1831 | methmeth@^1.1.0:
1832 | version "1.1.0"
1833 | resolved "https://registry.yarnpkg.com/methmeth/-/methmeth-1.1.0.tgz#e80a26618e52f5c4222861bb748510bd10e29089"
1834 |
1835 | methods@~1.1.2:
1836 | version "1.1.2"
1837 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
1838 |
1839 | micromatch@^3.1.10:
1840 | version "3.1.10"
1841 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
1842 | dependencies:
1843 | arr-diff "^4.0.0"
1844 | array-unique "^0.3.2"
1845 | braces "^2.3.1"
1846 | define-property "^2.0.2"
1847 | extend-shallow "^3.0.2"
1848 | extglob "^2.0.4"
1849 | fragment-cache "^0.2.1"
1850 | kind-of "^6.0.2"
1851 | nanomatch "^1.2.9"
1852 | object.pick "^1.3.0"
1853 | regex-not "^1.0.0"
1854 | snapdragon "^0.8.1"
1855 | to-regex "^3.0.2"
1856 |
1857 | "mime-db@>= 1.34.0 < 2", mime-db@~1.35.0:
1858 | version "1.35.0"
1859 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.35.0.tgz#0569d657466491283709663ad379a99b90d9ab47"
1860 |
1861 | mime-db@~1.29.0:
1862 | version "1.29.0"
1863 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878"
1864 |
1865 | mime-types@^2.0.8, mime-types@^2.1.12, mime-types@~2.1.15, mime-types@~2.1.7:
1866 | version "2.1.16"
1867 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23"
1868 | dependencies:
1869 | mime-db "~1.29.0"
1870 |
1871 | mime-types@~2.1.17, mime-types@~2.1.18:
1872 | version "2.1.19"
1873 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.19.tgz#71e464537a7ef81c15f2db9d97e913fc0ff606f0"
1874 | dependencies:
1875 | mime-db "~1.35.0"
1876 |
1877 | mime@1.4.1:
1878 | version "1.4.1"
1879 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"
1880 |
1881 | mime@^2.0.3, mime@^2.2.0:
1882 | version "2.3.1"
1883 | resolved "https://registry.yarnpkg.com/mime/-/mime-2.3.1.tgz#b1621c54d63b97c47d3cfe7f7215f7d64517c369"
1884 |
1885 | minimatch@^3.0.4:
1886 | version "3.0.4"
1887 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1888 | dependencies:
1889 | brace-expansion "^1.1.7"
1890 |
1891 | minimist@0.0.8:
1892 | version "0.0.8"
1893 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1894 |
1895 | minimist@^1.2.0:
1896 | version "1.2.0"
1897 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1898 |
1899 | minipass@^2.2.1, minipass@^2.3.3:
1900 | version "2.3.3"
1901 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233"
1902 | dependencies:
1903 | safe-buffer "^5.1.2"
1904 | yallist "^3.0.0"
1905 |
1906 | minizlib@^1.1.0:
1907 | version "1.1.0"
1908 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb"
1909 | dependencies:
1910 | minipass "^2.2.1"
1911 |
1912 | mixin-deep@^1.2.0:
1913 | version "1.3.1"
1914 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe"
1915 | dependencies:
1916 | for-in "^1.0.2"
1917 | is-extendable "^1.0.1"
1918 |
1919 | mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1:
1920 | version "0.5.1"
1921 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1922 | dependencies:
1923 | minimist "0.0.8"
1924 |
1925 | modelo@^4.2.0:
1926 | version "4.2.0"
1927 | resolved "https://registry.yarnpkg.com/modelo/-/modelo-4.2.0.tgz#3b4b420023a66ca7e32bdba16e710937e14d1b0b"
1928 |
1929 | ms@2.0.0, ms@^2.0.0:
1930 | version "2.0.0"
1931 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1932 |
1933 | ms@^2.1.1:
1934 | version "2.1.1"
1935 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
1936 |
1937 | nan@^2.0.0:
1938 | version "2.10.0"
1939 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f"
1940 |
1941 | nanomatch@^1.2.9:
1942 | version "1.2.13"
1943 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
1944 | dependencies:
1945 | arr-diff "^4.0.0"
1946 | array-unique "^0.3.2"
1947 | define-property "^2.0.2"
1948 | extend-shallow "^3.0.2"
1949 | fragment-cache "^0.2.1"
1950 | is-windows "^1.0.2"
1951 | kind-of "^6.0.2"
1952 | object.pick "^1.3.0"
1953 | regex-not "^1.0.0"
1954 | snapdragon "^0.8.1"
1955 | to-regex "^3.0.1"
1956 |
1957 | needle@^2.2.1:
1958 | version "2.2.1"
1959 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d"
1960 | dependencies:
1961 | debug "^2.1.2"
1962 | iconv-lite "^0.4.4"
1963 | sax "^1.2.4"
1964 |
1965 | negotiator@0.6.1:
1966 | version "0.6.1"
1967 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
1968 |
1969 | node-forge@0.7.4:
1970 | version "0.7.4"
1971 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.7.4.tgz#8e6e9f563a1e32213aa7508cded22aa791dbf986"
1972 |
1973 | node-forge@^0.7.4:
1974 | version "0.7.5"
1975 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.7.5.tgz#6c152c345ce11c52f465c2abd957e8639cd674df"
1976 |
1977 | node-pre-gyp@^0.10.0:
1978 | version "0.10.3"
1979 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc"
1980 | dependencies:
1981 | detect-libc "^1.0.2"
1982 | mkdirp "^0.5.1"
1983 | needle "^2.2.1"
1984 | nopt "^4.0.1"
1985 | npm-packlist "^1.1.6"
1986 | npmlog "^4.0.2"
1987 | rc "^1.2.7"
1988 | rimraf "^2.6.1"
1989 | semver "^5.3.0"
1990 | tar "^4"
1991 |
1992 | nopt@^4.0.1:
1993 | version "4.0.1"
1994 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
1995 | dependencies:
1996 | abbrev "1"
1997 | osenv "^0.1.4"
1998 |
1999 | npm-bundled@^1.0.1:
2000 | version "1.0.3"
2001 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308"
2002 |
2003 | npm-packlist@^1.1.6:
2004 | version "1.1.11"
2005 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.11.tgz#84e8c683cbe7867d34b1d357d893ce29e28a02de"
2006 | dependencies:
2007 | ignore-walk "^3.0.1"
2008 | npm-bundled "^1.0.1"
2009 |
2010 | npmlog@^4.0.2:
2011 | version "4.1.2"
2012 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
2013 | dependencies:
2014 | are-we-there-yet "~1.1.2"
2015 | console-control-strings "~1.1.0"
2016 | gauge "~2.7.3"
2017 | set-blocking "~2.0.0"
2018 |
2019 | number-is-nan@^1.0.0:
2020 | version "1.0.1"
2021 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2022 |
2023 | oauth-sign@~0.8.1, oauth-sign@~0.8.2:
2024 | version "0.8.2"
2025 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
2026 |
2027 | object-assign@^4, object-assign@^4.1.0:
2028 | version "4.1.1"
2029 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2030 |
2031 | object-copy@^0.1.0:
2032 | version "0.1.0"
2033 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
2034 | dependencies:
2035 | copy-descriptor "^0.1.0"
2036 | define-property "^0.2.5"
2037 | kind-of "^3.0.3"
2038 |
2039 | object-keys@^1.0.0, object-keys@^1.0.8:
2040 | version "1.0.12"
2041 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2"
2042 |
2043 | object-visit@^1.0.0:
2044 | version "1.0.1"
2045 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
2046 | dependencies:
2047 | isobject "^3.0.0"
2048 |
2049 | object.pick@^1.3.0:
2050 | version "1.3.0"
2051 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
2052 | dependencies:
2053 | isobject "^3.0.1"
2054 |
2055 | on-finished@~2.3.0:
2056 | version "2.3.0"
2057 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
2058 | dependencies:
2059 | ee-first "1.1.1"
2060 |
2061 | once@^1.3.0, once@^1.3.1, once@^1.4.0:
2062 | version "1.4.0"
2063 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2064 | dependencies:
2065 | wrappy "1"
2066 |
2067 | optjs@~3.2.2:
2068 | version "3.2.2"
2069 | resolved "https://registry.yarnpkg.com/optjs/-/optjs-3.2.2.tgz#69a6ce89c442a44403141ad2f9b370bd5bb6f4ee"
2070 |
2071 | os-homedir@^1.0.0:
2072 | version "1.0.2"
2073 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2074 |
2075 | os-locale@^1.4.0:
2076 | version "1.4.0"
2077 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9"
2078 | dependencies:
2079 | lcid "^1.0.0"
2080 |
2081 | os-tmpdir@^1.0.0:
2082 | version "1.0.2"
2083 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2084 |
2085 | osenv@^0.1.4:
2086 | version "0.1.5"
2087 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
2088 | dependencies:
2089 | os-homedir "^1.0.0"
2090 | os-tmpdir "^1.0.0"
2091 |
2092 | p-limit@^1.1.0:
2093 | version "1.3.0"
2094 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
2095 | dependencies:
2096 | p-try "^1.0.0"
2097 |
2098 | p-locate@^2.0.0:
2099 | version "2.0.0"
2100 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
2101 | dependencies:
2102 | p-limit "^1.1.0"
2103 |
2104 | p-try@^1.0.0:
2105 | version "1.0.0"
2106 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
2107 |
2108 | parseurl@~1.3.2:
2109 | version "1.3.2"
2110 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3"
2111 |
2112 | pascalcase@^0.1.1:
2113 | version "0.1.1"
2114 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
2115 |
2116 | path-dirname@^1.0.0:
2117 | version "1.0.2"
2118 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
2119 |
2120 | path-exists@^3.0.0:
2121 | version "3.0.0"
2122 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2123 |
2124 | path-is-absolute@^1.0.0:
2125 | version "1.0.1"
2126 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2127 |
2128 | path-to-regexp@0.1.7:
2129 | version "0.1.7"
2130 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
2131 |
2132 | path-type@^3.0.0:
2133 | version "3.0.0"
2134 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
2135 | dependencies:
2136 | pify "^3.0.0"
2137 |
2138 | pend@~1.2.0:
2139 | version "1.2.0"
2140 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50"
2141 |
2142 | performance-now@^0.2.0:
2143 | version "0.2.0"
2144 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
2145 |
2146 | performance-now@^2.1.0:
2147 | version "2.1.0"
2148 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
2149 |
2150 | pify@^2.3.0:
2151 | version "2.3.0"
2152 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2153 |
2154 | pify@^3.0.0:
2155 | version "3.0.0"
2156 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
2157 |
2158 | pkg-up@^2.0.0:
2159 | version "2.0.0"
2160 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f"
2161 | dependencies:
2162 | find-up "^2.1.0"
2163 |
2164 | posix-character-classes@^0.1.0:
2165 | version "0.1.1"
2166 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
2167 |
2168 | power-assert-context-formatter@^1.0.7:
2169 | version "1.2.0"
2170 | resolved "https://registry.yarnpkg.com/power-assert-context-formatter/-/power-assert-context-formatter-1.2.0.tgz#8fbe72692288ec5a7203cdf215c8b838a6061d2a"
2171 | dependencies:
2172 | core-js "^2.0.0"
2173 | power-assert-context-traversal "^1.2.0"
2174 |
2175 | power-assert-context-reducer-ast@^1.0.7:
2176 | version "1.2.0"
2177 | resolved "https://registry.yarnpkg.com/power-assert-context-reducer-ast/-/power-assert-context-reducer-ast-1.2.0.tgz#c7ca1c9e39a6fb717f7ac5fe9e76e192bf525df3"
2178 | dependencies:
2179 | acorn "^5.0.0"
2180 | acorn-es7-plugin "^1.0.12"
2181 | core-js "^2.0.0"
2182 | espurify "^1.6.0"
2183 | estraverse "^4.2.0"
2184 |
2185 | power-assert-context-traversal@^1.2.0:
2186 | version "1.2.0"
2187 | resolved "https://registry.yarnpkg.com/power-assert-context-traversal/-/power-assert-context-traversal-1.2.0.tgz#f6e71454baf640de5c1c9c270349f5c9ab0b2e94"
2188 | dependencies:
2189 | core-js "^2.0.0"
2190 | estraverse "^4.1.0"
2191 |
2192 | power-assert-formatter@^1.4.1:
2193 | version "1.4.1"
2194 | resolved "https://registry.yarnpkg.com/power-assert-formatter/-/power-assert-formatter-1.4.1.tgz#5dc125ed50a3dfb1dda26c19347f3bf58ec2884a"
2195 | dependencies:
2196 | core-js "^2.0.0"
2197 | power-assert-context-formatter "^1.0.7"
2198 | power-assert-context-reducer-ast "^1.0.7"
2199 | power-assert-renderer-assertion "^1.0.7"
2200 | power-assert-renderer-comparison "^1.0.7"
2201 | power-assert-renderer-diagram "^1.0.7"
2202 | power-assert-renderer-file "^1.0.7"
2203 |
2204 | power-assert-renderer-assertion@^1.0.7:
2205 | version "1.2.0"
2206 | resolved "https://registry.yarnpkg.com/power-assert-renderer-assertion/-/power-assert-renderer-assertion-1.2.0.tgz#3db6ffcda106b37bc1e06432ad0d748a682b147a"
2207 | dependencies:
2208 | power-assert-renderer-base "^1.1.1"
2209 | power-assert-util-string-width "^1.2.0"
2210 |
2211 | power-assert-renderer-base@^1.1.1:
2212 | version "1.1.1"
2213 | resolved "https://registry.yarnpkg.com/power-assert-renderer-base/-/power-assert-renderer-base-1.1.1.tgz#96a650c6fd05ee1bc1f66b54ad61442c8b3f63eb"
2214 |
2215 | power-assert-renderer-comparison@^1.0.7:
2216 | version "1.2.0"
2217 | resolved "https://registry.yarnpkg.com/power-assert-renderer-comparison/-/power-assert-renderer-comparison-1.2.0.tgz#e4f88113225a69be8aa586ead05aef99462c0495"
2218 | dependencies:
2219 | core-js "^2.0.0"
2220 | diff-match-patch "^1.0.0"
2221 | power-assert-renderer-base "^1.1.1"
2222 | stringifier "^1.3.0"
2223 | type-name "^2.0.1"
2224 |
2225 | power-assert-renderer-diagram@^1.0.7:
2226 | version "1.2.0"
2227 | resolved "https://registry.yarnpkg.com/power-assert-renderer-diagram/-/power-assert-renderer-diagram-1.2.0.tgz#37f66e8542e5677c5b58e6d72b01c0d9a30e2219"
2228 | dependencies:
2229 | core-js "^2.0.0"
2230 | power-assert-renderer-base "^1.1.1"
2231 | power-assert-util-string-width "^1.2.0"
2232 | stringifier "^1.3.0"
2233 |
2234 | power-assert-renderer-file@^1.0.7:
2235 | version "1.2.0"
2236 | resolved "https://registry.yarnpkg.com/power-assert-renderer-file/-/power-assert-renderer-file-1.2.0.tgz#3f4bebd9e1455d75cf2ac541e7bb515a87d4ce4b"
2237 | dependencies:
2238 | power-assert-renderer-base "^1.1.1"
2239 |
2240 | power-assert-util-string-width@^1.2.0:
2241 | version "1.2.0"
2242 | resolved "https://registry.yarnpkg.com/power-assert-util-string-width/-/power-assert-util-string-width-1.2.0.tgz#6e06d5e3581bb876c5d377c53109fffa95bd91a0"
2243 | dependencies:
2244 | eastasianwidth "^0.2.0"
2245 |
2246 | power-assert@^1.4.4:
2247 | version "1.6.0"
2248 | resolved "https://registry.yarnpkg.com/power-assert/-/power-assert-1.6.0.tgz#3a9d2b943cf0d6fc6a623766869c4460838c05fb"
2249 | dependencies:
2250 | define-properties "^1.1.2"
2251 | empower "^1.3.0"
2252 | power-assert-formatter "^1.4.1"
2253 | universal-deep-strict-equal "^1.2.1"
2254 | xtend "^4.0.0"
2255 |
2256 | process-nextick-args@~1.0.6:
2257 | version "1.0.7"
2258 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
2259 |
2260 | process-nextick-args@~2.0.0:
2261 | version "2.0.0"
2262 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
2263 |
2264 | progress@^2.0.0:
2265 | version "2.0.0"
2266 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f"
2267 |
2268 | protobufjs@^5.0.3:
2269 | version "5.0.3"
2270 | resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-5.0.3.tgz#e4dfe9fb67c90b2630d15868249bcc4961467a17"
2271 | dependencies:
2272 | ascli "~1"
2273 | bytebuffer "~5"
2274 | glob "^7.0.5"
2275 | yargs "^3.10.0"
2276 |
2277 | protobufjs@^6.8.0, protobufjs@^6.8.6:
2278 | version "6.8.8"
2279 | resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-6.8.8.tgz#c8b4f1282fd7a90e6f5b109ed11c84af82908e7c"
2280 | dependencies:
2281 | "@protobufjs/aspromise" "^1.1.2"
2282 | "@protobufjs/base64" "^1.1.2"
2283 | "@protobufjs/codegen" "^2.0.4"
2284 | "@protobufjs/eventemitter" "^1.1.0"
2285 | "@protobufjs/fetch" "^1.1.0"
2286 | "@protobufjs/float" "^1.0.2"
2287 | "@protobufjs/inquire" "^1.1.0"
2288 | "@protobufjs/path" "^1.1.2"
2289 | "@protobufjs/pool" "^1.1.0"
2290 | "@protobufjs/utf8" "^1.1.0"
2291 | "@types/long" "^4.0.0"
2292 | "@types/node" "^10.1.0"
2293 | long "^4.0.0"
2294 |
2295 | proxy-addr@~2.0.3:
2296 | version "2.0.4"
2297 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.4.tgz#ecfc733bf22ff8c6f407fa275327b9ab67e48b93"
2298 | dependencies:
2299 | forwarded "~0.1.2"
2300 | ipaddr.js "1.8.0"
2301 |
2302 | proxy-from-env@^1.0.0:
2303 | version "1.0.0"
2304 | resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee"
2305 |
2306 | pseudomap@^1.0.2:
2307 | version "1.0.2"
2308 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
2309 |
2310 | pump@^2.0.0:
2311 | version "2.0.1"
2312 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909"
2313 | dependencies:
2314 | end-of-stream "^1.1.0"
2315 | once "^1.3.1"
2316 |
2317 | pumpify@^1.4.0, pumpify@^1.5.1:
2318 | version "1.5.1"
2319 | resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce"
2320 | dependencies:
2321 | duplexify "^3.6.0"
2322 | inherits "^2.0.3"
2323 | pump "^2.0.0"
2324 |
2325 | punycode@^1.4.1:
2326 | version "1.4.1"
2327 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2328 |
2329 | puppeteer@^1.6.2:
2330 | version "1.6.2"
2331 | resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-1.6.2.tgz#e3c31f8184e8fb8b36e4263921bcaaab7a99b3bf"
2332 | dependencies:
2333 | debug "^3.1.0"
2334 | extract-zip "^1.6.6"
2335 | https-proxy-agent "^2.2.1"
2336 | mime "^2.0.3"
2337 | progress "^2.0.0"
2338 | proxy-from-env "^1.0.0"
2339 | rimraf "^2.6.1"
2340 | ws "^5.1.1"
2341 |
2342 | qs@6.5.1:
2343 | version "6.5.1"
2344 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
2345 |
2346 | qs@~6.4.0:
2347 | version "6.4.0"
2348 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
2349 |
2350 | qs@~6.5.1:
2351 | version "6.5.2"
2352 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
2353 |
2354 | range-parser@~1.2.0:
2355 | version "1.2.0"
2356 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
2357 |
2358 | raw-body@2.3.2:
2359 | version "2.3.2"
2360 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89"
2361 | dependencies:
2362 | bytes "3.0.0"
2363 | http-errors "1.6.2"
2364 | iconv-lite "0.4.19"
2365 | unpipe "1.0.0"
2366 |
2367 | rc@^1.2.7:
2368 | version "1.2.8"
2369 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
2370 | dependencies:
2371 | deep-extend "^0.6.0"
2372 | ini "~1.3.0"
2373 | minimist "^1.2.0"
2374 | strip-json-comments "~2.0.1"
2375 |
2376 | readable-stream@^2.0.0, readable-stream@^2.1.5, readable-stream@^2.2.2:
2377 | version "2.3.3"
2378 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
2379 | dependencies:
2380 | core-util-is "~1.0.0"
2381 | inherits "~2.0.3"
2382 | isarray "~1.0.0"
2383 | process-nextick-args "~1.0.6"
2384 | safe-buffer "~5.1.1"
2385 | string_decoder "~1.0.3"
2386 | util-deprecate "~1.0.1"
2387 |
2388 | readable-stream@^2.0.6:
2389 | version "2.3.6"
2390 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
2391 | dependencies:
2392 | core-util-is "~1.0.0"
2393 | inherits "~2.0.3"
2394 | isarray "~1.0.0"
2395 | process-nextick-args "~2.0.0"
2396 | safe-buffer "~5.1.1"
2397 | string_decoder "~1.1.1"
2398 | util-deprecate "~1.0.1"
2399 |
2400 | readable-stream@~1.0.32:
2401 | version "1.0.34"
2402 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c"
2403 | dependencies:
2404 | core-util-is "~1.0.0"
2405 | inherits "~2.0.1"
2406 | isarray "0.0.1"
2407 | string_decoder "~0.10.x"
2408 |
2409 | regex-not@^1.0.0, regex-not@^1.0.2:
2410 | version "1.0.2"
2411 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
2412 | dependencies:
2413 | extend-shallow "^3.0.2"
2414 | safe-regex "^1.1.0"
2415 |
2416 | repeat-element@^1.1.2:
2417 | version "1.1.2"
2418 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
2419 |
2420 | repeat-string@^1.6.1:
2421 | version "1.6.1"
2422 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2423 |
2424 | request@^2.79.0, request@^2.81.0:
2425 | version "2.81.0"
2426 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
2427 | dependencies:
2428 | aws-sign2 "~0.6.0"
2429 | aws4 "^1.2.1"
2430 | caseless "~0.12.0"
2431 | combined-stream "~1.0.5"
2432 | extend "~3.0.0"
2433 | forever-agent "~0.6.1"
2434 | form-data "~2.1.1"
2435 | har-validator "~4.2.1"
2436 | hawk "~3.1.3"
2437 | http-signature "~1.1.0"
2438 | is-typedarray "~1.0.0"
2439 | isstream "~0.1.2"
2440 | json-stringify-safe "~5.0.1"
2441 | mime-types "~2.1.7"
2442 | oauth-sign "~0.8.1"
2443 | performance-now "^0.2.0"
2444 | qs "~6.4.0"
2445 | safe-buffer "^5.0.1"
2446 | stringstream "~0.0.4"
2447 | tough-cookie "~2.3.0"
2448 | tunnel-agent "^0.6.0"
2449 | uuid "^3.0.0"
2450 |
2451 | request@^2.85.0, request@^2.87.0:
2452 | version "2.87.0"
2453 | resolved "https://registry.yarnpkg.com/request/-/request-2.87.0.tgz#32f00235cd08d482b4d0d68db93a829c0ed5756e"
2454 | dependencies:
2455 | aws-sign2 "~0.7.0"
2456 | aws4 "^1.6.0"
2457 | caseless "~0.12.0"
2458 | combined-stream "~1.0.5"
2459 | extend "~3.0.1"
2460 | forever-agent "~0.6.1"
2461 | form-data "~2.3.1"
2462 | har-validator "~5.0.3"
2463 | http-signature "~1.2.0"
2464 | is-typedarray "~1.0.0"
2465 | isstream "~0.1.2"
2466 | json-stringify-safe "~5.0.1"
2467 | mime-types "~2.1.17"
2468 | oauth-sign "~0.8.2"
2469 | performance-now "^2.1.0"
2470 | qs "~6.5.1"
2471 | safe-buffer "^5.1.1"
2472 | tough-cookie "~2.3.3"
2473 | tunnel-agent "^0.6.0"
2474 | uuid "^3.1.0"
2475 |
2476 | resolve-url@^0.2.1:
2477 | version "0.2.1"
2478 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
2479 |
2480 | ret@~0.1.10:
2481 | version "0.1.15"
2482 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
2483 |
2484 | retry-axios@0.3.2, retry-axios@^0.3.2:
2485 | version "0.3.2"
2486 | resolved "https://registry.yarnpkg.com/retry-axios/-/retry-axios-0.3.2.tgz#5757c80f585b4cc4c4986aa2ffd47a60c6d35e13"
2487 |
2488 | retry-request@^3.0.0:
2489 | version "3.3.2"
2490 | resolved "https://registry.yarnpkg.com/retry-request/-/retry-request-3.3.2.tgz#fd8e0079e7b0dfc7056e500b6f089437db0da4df"
2491 | dependencies:
2492 | request "^2.81.0"
2493 | through2 "^2.0.0"
2494 |
2495 | retry-request@^4.0.0:
2496 | version "4.0.0"
2497 | resolved "https://registry.yarnpkg.com/retry-request/-/retry-request-4.0.0.tgz#5c366166279b3e10e9d7aa13274467a05cb69290"
2498 | dependencies:
2499 | through2 "^2.0.0"
2500 |
2501 | rimraf@^2.6.1:
2502 | version "2.6.1"
2503 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d"
2504 | dependencies:
2505 | glob "^7.0.5"
2506 |
2507 | safe-buffer@5.1.1, safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
2508 | version "5.1.1"
2509 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
2510 |
2511 | safe-buffer@^5.1.1, safe-buffer@^5.1.2:
2512 | version "5.1.2"
2513 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
2514 |
2515 | safe-regex@^1.1.0:
2516 | version "1.1.0"
2517 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
2518 | dependencies:
2519 | ret "~0.1.10"
2520 |
2521 | "safer-buffer@>= 2.1.2 < 3":
2522 | version "2.1.2"
2523 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
2524 |
2525 | sax@^1.2.4:
2526 | version "1.2.4"
2527 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
2528 |
2529 | semver@^5.3.0:
2530 | version "5.5.0"
2531 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
2532 |
2533 | send@0.16.2:
2534 | version "0.16.2"
2535 | resolved "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1"
2536 | dependencies:
2537 | debug "2.6.9"
2538 | depd "~1.1.2"
2539 | destroy "~1.0.4"
2540 | encodeurl "~1.0.2"
2541 | escape-html "~1.0.3"
2542 | etag "~1.8.1"
2543 | fresh "0.5.2"
2544 | http-errors "~1.6.2"
2545 | mime "1.4.1"
2546 | ms "2.0.0"
2547 | on-finished "~2.3.0"
2548 | range-parser "~1.2.0"
2549 | statuses "~1.4.0"
2550 |
2551 | serve-static@1.13.2:
2552 | version "1.13.2"
2553 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1"
2554 | dependencies:
2555 | encodeurl "~1.0.2"
2556 | escape-html "~1.0.3"
2557 | parseurl "~1.3.2"
2558 | send "0.16.2"
2559 |
2560 | set-blocking@~2.0.0:
2561 | version "2.0.0"
2562 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
2563 |
2564 | set-value@^0.4.3:
2565 | version "0.4.3"
2566 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"
2567 | dependencies:
2568 | extend-shallow "^2.0.1"
2569 | is-extendable "^0.1.1"
2570 | is-plain-object "^2.0.1"
2571 | to-object-path "^0.3.0"
2572 |
2573 | set-value@^2.0.0:
2574 | version "2.0.0"
2575 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"
2576 | dependencies:
2577 | extend-shallow "^2.0.1"
2578 | is-extendable "^0.1.1"
2579 | is-plain-object "^2.0.3"
2580 | split-string "^3.0.1"
2581 |
2582 | setprototypeof@1.0.3:
2583 | version "1.0.3"
2584 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04"
2585 |
2586 | setprototypeof@1.1.0:
2587 | version "1.1.0"
2588 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
2589 |
2590 | signal-exit@^3.0.0:
2591 | version "3.0.2"
2592 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
2593 |
2594 | slash@^1.0.0:
2595 | version "1.0.0"
2596 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
2597 |
2598 | slide@^1.1.5:
2599 | version "1.1.6"
2600 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"
2601 |
2602 | snakeize@^0.1.0:
2603 | version "0.1.0"
2604 | resolved "https://registry.yarnpkg.com/snakeize/-/snakeize-0.1.0.tgz#10c088d8b58eb076b3229bb5a04e232ce126422d"
2605 |
2606 | snapdragon-node@^2.0.1:
2607 | version "2.1.1"
2608 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
2609 | dependencies:
2610 | define-property "^1.0.0"
2611 | isobject "^3.0.0"
2612 | snapdragon-util "^3.0.1"
2613 |
2614 | snapdragon-util@^3.0.1:
2615 | version "3.0.1"
2616 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
2617 | dependencies:
2618 | kind-of "^3.2.0"
2619 |
2620 | snapdragon@^0.8.1:
2621 | version "0.8.2"
2622 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
2623 | dependencies:
2624 | base "^0.11.1"
2625 | debug "^2.2.0"
2626 | define-property "^0.2.5"
2627 | extend-shallow "^2.0.1"
2628 | map-cache "^0.2.2"
2629 | source-map "^0.5.6"
2630 | source-map-resolve "^0.5.0"
2631 | use "^3.1.0"
2632 |
2633 | sntp@1.x.x:
2634 | version "1.0.9"
2635 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
2636 | dependencies:
2637 | hoek "2.x.x"
2638 |
2639 | source-map-resolve@^0.5.0:
2640 | version "0.5.2"
2641 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259"
2642 | dependencies:
2643 | atob "^2.1.1"
2644 | decode-uri-component "^0.2.0"
2645 | resolve-url "^0.2.1"
2646 | source-map-url "^0.4.0"
2647 | urix "^0.1.0"
2648 |
2649 | source-map-url@^0.4.0:
2650 | version "0.4.0"
2651 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
2652 |
2653 | source-map@^0.5.6:
2654 | version "0.5.7"
2655 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
2656 |
2657 | split-array-stream@^1.0.0:
2658 | version "1.0.3"
2659 | resolved "https://registry.yarnpkg.com/split-array-stream/-/split-array-stream-1.0.3.tgz#d2b75a8e5e0d824d52fdec8b8225839dc2e35dfa"
2660 | dependencies:
2661 | async "^2.4.0"
2662 | is-stream-ended "^0.1.0"
2663 |
2664 | split-array-stream@^2.0.0:
2665 | version "2.0.0"
2666 | resolved "https://registry.yarnpkg.com/split-array-stream/-/split-array-stream-2.0.0.tgz#85a4f8bfe14421d7bca7f33a6d176d0c076a53b1"
2667 | dependencies:
2668 | is-stream-ended "^0.1.4"
2669 |
2670 | split-string@^3.0.1, split-string@^3.0.2:
2671 | version "3.1.0"
2672 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
2673 | dependencies:
2674 | extend-shallow "^3.0.0"
2675 |
2676 | sshpk@^1.7.0:
2677 | version "1.13.1"
2678 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
2679 | dependencies:
2680 | asn1 "~0.2.3"
2681 | assert-plus "^1.0.0"
2682 | dashdash "^1.12.0"
2683 | getpass "^0.1.1"
2684 | optionalDependencies:
2685 | bcrypt-pbkdf "^1.0.0"
2686 | ecc-jsbn "~0.1.1"
2687 | jsbn "~0.1.0"
2688 | tweetnacl "~0.14.0"
2689 |
2690 | static-extend@^0.1.1:
2691 | version "0.1.2"
2692 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
2693 | dependencies:
2694 | define-property "^0.2.5"
2695 | object-copy "^0.1.0"
2696 |
2697 | "statuses@>= 1.3.1 < 2":
2698 | version "1.3.1"
2699 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e"
2700 |
2701 | statuses@~1.4.0:
2702 | version "1.4.0"
2703 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087"
2704 |
2705 | stream-events@^1.0.1:
2706 | version "1.0.2"
2707 | resolved "https://registry.yarnpkg.com/stream-events/-/stream-events-1.0.2.tgz#abf39f66c0890a4eb795bc8d5e859b2615b590b2"
2708 | dependencies:
2709 | stubs "^3.0.0"
2710 |
2711 | stream-events@^1.0.3, stream-events@^1.0.4:
2712 | version "1.0.4"
2713 | resolved "https://registry.yarnpkg.com/stream-events/-/stream-events-1.0.4.tgz#73bfd4007b8f677b46ec699f14e9e2304c2f0a9e"
2714 | dependencies:
2715 | stubs "^3.0.0"
2716 |
2717 | stream-shift@^1.0.0:
2718 | version "1.0.0"
2719 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952"
2720 |
2721 | string-format-obj@^1.1.0:
2722 | version "1.1.0"
2723 | resolved "https://registry.yarnpkg.com/string-format-obj/-/string-format-obj-1.1.0.tgz#7635610b1ef397013e8478be98a170e04983d068"
2724 |
2725 | string-width@^1.0.1:
2726 | version "1.0.2"
2727 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
2728 | dependencies:
2729 | code-point-at "^1.0.0"
2730 | is-fullwidth-code-point "^1.0.0"
2731 | strip-ansi "^3.0.0"
2732 |
2733 | "string-width@^1.0.2 || 2":
2734 | version "2.1.1"
2735 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
2736 | dependencies:
2737 | is-fullwidth-code-point "^2.0.0"
2738 | strip-ansi "^4.0.0"
2739 |
2740 | string_decoder@~0.10.x:
2741 | version "0.10.31"
2742 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
2743 |
2744 | string_decoder@~1.0.3:
2745 | version "1.0.3"
2746 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
2747 | dependencies:
2748 | safe-buffer "~5.1.0"
2749 |
2750 | string_decoder@~1.1.1:
2751 | version "1.1.1"
2752 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
2753 | dependencies:
2754 | safe-buffer "~5.1.0"
2755 |
2756 | stringifier@^1.3.0:
2757 | version "1.3.0"
2758 | resolved "https://registry.yarnpkg.com/stringifier/-/stringifier-1.3.0.tgz#def18342f6933db0f2dbfc9aa02175b448c17959"
2759 | dependencies:
2760 | core-js "^2.0.0"
2761 | traverse "^0.6.6"
2762 | type-name "^2.0.1"
2763 |
2764 | stringstream@~0.0.4:
2765 | version "0.0.5"
2766 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
2767 |
2768 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
2769 | version "3.0.1"
2770 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
2771 | dependencies:
2772 | ansi-regex "^2.0.0"
2773 |
2774 | strip-ansi@^4.0.0:
2775 | version "4.0.0"
2776 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
2777 | dependencies:
2778 | ansi-regex "^3.0.0"
2779 |
2780 | strip-json-comments@~2.0.1:
2781 | version "2.0.1"
2782 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
2783 |
2784 | stubs@^3.0.0:
2785 | version "3.0.0"
2786 | resolved "https://registry.yarnpkg.com/stubs/-/stubs-3.0.0.tgz#e8d2ba1fa9c90570303c030b6900f7d5f89abe5b"
2787 |
2788 | tar@^4:
2789 | version "4.4.6"
2790 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.6.tgz#63110f09c00b4e60ac8bcfe1bf3c8660235fbc9b"
2791 | dependencies:
2792 | chownr "^1.0.1"
2793 | fs-minipass "^1.2.5"
2794 | minipass "^2.3.3"
2795 | minizlib "^1.1.0"
2796 | mkdirp "^0.5.0"
2797 | safe-buffer "^5.1.2"
2798 | yallist "^3.0.2"
2799 |
2800 | through2@^2.0.0, through2@^2.0.3:
2801 | version "2.0.3"
2802 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be"
2803 | dependencies:
2804 | readable-stream "^2.1.5"
2805 | xtend "~4.0.1"
2806 |
2807 | to-object-path@^0.3.0:
2808 | version "0.3.0"
2809 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
2810 | dependencies:
2811 | kind-of "^3.0.2"
2812 |
2813 | to-regex-range@^2.1.0:
2814 | version "2.1.1"
2815 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
2816 | dependencies:
2817 | is-number "^3.0.0"
2818 | repeat-string "^1.6.1"
2819 |
2820 | to-regex@^3.0.1, to-regex@^3.0.2:
2821 | version "3.0.2"
2822 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
2823 | dependencies:
2824 | define-property "^2.0.2"
2825 | extend-shallow "^3.0.2"
2826 | regex-not "^1.0.2"
2827 | safe-regex "^1.1.0"
2828 |
2829 | tough-cookie@~2.3.0:
2830 | version "2.3.2"
2831 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
2832 | dependencies:
2833 | punycode "^1.4.1"
2834 |
2835 | tough-cookie@~2.3.3:
2836 | version "2.3.4"
2837 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655"
2838 | dependencies:
2839 | punycode "^1.4.1"
2840 |
2841 | traverse@^0.6.6:
2842 | version "0.6.6"
2843 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137"
2844 |
2845 | tslib@1.9.0:
2846 | version "1.9.0"
2847 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8"
2848 |
2849 | tunnel-agent@^0.6.0:
2850 | version "0.6.0"
2851 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
2852 | dependencies:
2853 | safe-buffer "^5.0.1"
2854 |
2855 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
2856 | version "0.14.5"
2857 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
2858 |
2859 | type-is@~1.6.15:
2860 | version "1.6.15"
2861 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410"
2862 | dependencies:
2863 | media-typer "0.3.0"
2864 | mime-types "~2.1.15"
2865 |
2866 | type-is@~1.6.16:
2867 | version "1.6.16"
2868 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194"
2869 | dependencies:
2870 | media-typer "0.3.0"
2871 | mime-types "~2.1.18"
2872 |
2873 | type-name@^2.0.1:
2874 | version "2.0.2"
2875 | resolved "https://registry.yarnpkg.com/type-name/-/type-name-2.0.2.tgz#efe7d4123d8ac52afff7f40c7e4dec5266008fb4"
2876 |
2877 | typedarray@^0.0.6:
2878 | version "0.0.6"
2879 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
2880 |
2881 | union-value@^1.0.0:
2882 | version "1.0.0"
2883 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"
2884 | dependencies:
2885 | arr-union "^3.1.0"
2886 | get-value "^2.0.6"
2887 | is-extendable "^0.1.1"
2888 | set-value "^0.4.3"
2889 |
2890 | unique-string@^1.0.0:
2891 | version "1.0.0"
2892 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a"
2893 | dependencies:
2894 | crypto-random-string "^1.0.0"
2895 |
2896 | universal-deep-strict-equal@^1.2.1:
2897 | version "1.2.2"
2898 | resolved "https://registry.yarnpkg.com/universal-deep-strict-equal/-/universal-deep-strict-equal-1.2.2.tgz#0da4ac2f73cff7924c81fa4de018ca562ca2b0a7"
2899 | dependencies:
2900 | array-filter "^1.0.0"
2901 | indexof "0.0.1"
2902 | object-keys "^1.0.0"
2903 |
2904 | unpipe@1.0.0, unpipe@~1.0.0:
2905 | version "1.0.0"
2906 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
2907 |
2908 | unset-value@^1.0.0:
2909 | version "1.0.0"
2910 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
2911 | dependencies:
2912 | has-value "^0.3.1"
2913 | isobject "^3.0.0"
2914 |
2915 | urix@^0.1.0:
2916 | version "0.1.0"
2917 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
2918 |
2919 | use@^3.1.0:
2920 | version "3.1.1"
2921 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
2922 |
2923 | util-deprecate@~1.0.1:
2924 | version "1.0.2"
2925 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
2926 |
2927 | utils-merge@1.0.1:
2928 | version "1.0.1"
2929 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
2930 |
2931 | uuid@^3.0.0:
2932 | version "3.1.0"
2933 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
2934 |
2935 | uuid@^3.1.0:
2936 | version "3.3.2"
2937 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
2938 |
2939 | vary@^1, vary@~1.1.2:
2940 | version "1.1.2"
2941 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
2942 |
2943 | verror@1.10.0:
2944 | version "1.10.0"
2945 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
2946 | dependencies:
2947 | assert-plus "^1.0.0"
2948 | core-util-is "1.0.2"
2949 | extsprintf "^1.2.0"
2950 |
2951 | websocket-driver@>=0.5.1:
2952 | version "0.6.5"
2953 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36"
2954 | dependencies:
2955 | websocket-extensions ">=0.1.1"
2956 |
2957 | websocket-extensions@>=0.1.1:
2958 | version "0.1.1"
2959 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.1.tgz#76899499c184b6ef754377c2dbb0cd6cb55d29e7"
2960 |
2961 | wide-align@^1.1.0:
2962 | version "1.1.3"
2963 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
2964 | dependencies:
2965 | string-width "^1.0.2 || 2"
2966 |
2967 | window-size@^0.1.4:
2968 | version "0.1.4"
2969 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876"
2970 |
2971 | wrap-ansi@^2.0.0:
2972 | version "2.1.0"
2973 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
2974 | dependencies:
2975 | string-width "^1.0.1"
2976 | strip-ansi "^3.0.1"
2977 |
2978 | wrappy@1:
2979 | version "1.0.2"
2980 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2981 |
2982 | write-file-atomic@^2.0.0:
2983 | version "2.1.0"
2984 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.1.0.tgz#1769f4b551eedce419f0505deae2e26763542d37"
2985 | dependencies:
2986 | graceful-fs "^4.1.11"
2987 | imurmurhash "^0.1.4"
2988 | slide "^1.1.5"
2989 |
2990 | ws@^5.1.1:
2991 | version "5.2.2"
2992 | resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f"
2993 | dependencies:
2994 | async-limiter "~1.0.0"
2995 |
2996 | xdg-basedir@^3.0.0:
2997 | version "3.0.0"
2998 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4"
2999 |
3000 | xmlhttprequest@1.8.0:
3001 | version "1.8.0"
3002 | resolved "https://registry.yarnpkg.com/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz#67fe075c5c24fef39f9d65f5f7b7fe75171968fc"
3003 |
3004 | xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1:
3005 | version "4.0.1"
3006 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
3007 |
3008 | y18n@^3.2.0:
3009 | version "3.2.1"
3010 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
3011 |
3012 | yallist@^2.1.2:
3013 | version "2.1.2"
3014 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
3015 |
3016 | yallist@^3.0.0, yallist@^3.0.2:
3017 | version "3.0.2"
3018 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9"
3019 |
3020 | yargs@^3.10.0:
3021 | version "3.32.0"
3022 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995"
3023 | dependencies:
3024 | camelcase "^2.0.1"
3025 | cliui "^3.0.3"
3026 | decamelize "^1.1.1"
3027 | os-locale "^1.4.0"
3028 | string-width "^1.0.1"
3029 | window-size "^0.1.4"
3030 | y18n "^3.2.0"
3031 |
3032 | yauzl@2.4.1:
3033 | version "2.4.1"
3034 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005"
3035 | dependencies:
3036 | fd-slicer "~1.0.1"
3037 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "puppeteer-firebase",
3 | "description": "Useful Puppeteer Firebase Cloud Functions",
4 | "private": true,
5 | "version": "0.0.1",
6 | "main": "index.js",
7 | "author": "Eric Bidelman ",
8 | "license": "Apache-2.0",
9 | "engines": {
10 | "node": ">=8"
11 | },
12 | "scripts": {
13 | "postinstall": "yarn install-functions",
14 | "install-functions": "cd functions && yarn",
15 | "cleanup": "rimraf functions-dist",
16 | "buildnode6": "babel 'functions' --out-dir 'functions-dist' --presets=es2017 --copy-files --ignore 'node_modules'",
17 | "postbuildnode6": "rimraf ./functions-dist/node_modules && cp -R ./functions/node_modules ./functions-dist",
18 | "build": "cp functions/index.js ./functions-dist",
19 | "start": "firebase serve --only hosting,functions",
20 | "deploy": "yarn lint && yarn build && firebase deploy",
21 | "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .)"
22 | },
23 | "dependencies": {
24 | "firebase-tools": "^4.0.3"
25 | },
26 | "devDependencies": {
27 | "@google-cloud/functions-emulator": "^1.0.0-alpha.25",
28 | "babel-cli": "^6.26.0",
29 | "babel-preset-es2017": "^6.24.1",
30 | "eslint": "^5.3.0",
31 | "eslint-config-google": "^0.9.1",
32 | "rimraf": "^2.6.2"
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Puppeteer'ing
5 |
6 |
7 |
13 |
14 |
15 |
16 | Look ma, I'm Puppeteer'ing
17 |
18 |
22 |
23 |
--------------------------------------------------------------------------------