├── .gitignore
├── public
├── lhicon.png
├── lhicon-small.png
└── examples.html
├── app.yaml
├── package.json
├── .eslintrc.js
├── README.md
├── server.js
├── LICENSE
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
--------------------------------------------------------------------------------
/public/lhicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ebidel/lighthouse-badge/HEAD/public/lhicon.png
--------------------------------------------------------------------------------
/public/lhicon-small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ebidel/lighthouse-badge/HEAD/public/lhicon-small.png
--------------------------------------------------------------------------------
/app.yaml:
--------------------------------------------------------------------------------
1 | runtime: nodejs
2 | env: flex
3 |
4 | automatic_scaling:
5 | min_num_instances: 1
6 | max_num_instances: 5
7 |
8 | skip_files:
9 | - ^(.*/)?.*\.sh$
10 | - ^(.*/)?tests
11 | - ^(.*/)?.*\.md$
12 | - ^node_modules/
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "lighthouse-score-badge",
3 | "version": "0.0.1",
4 | "description": "Lighthouse Score Badge",
5 | "author": "Eric Bidelman ",
6 | "license": "Apache-2.0",
7 | "main": "server.js",
8 | "engines": {
9 | "node": ">=9"
10 | },
11 | "scripts": {
12 | "test": "echo \"Error: no test specified\" && exit 1",
13 | "start": "node server.js",
14 | "deploy": "gcloud app deploy app.yaml --project lighthouse-badge"
15 | },
16 | "keywords": [
17 | "lighthouse",
18 | "badge"
19 | ],
20 | "dependencies": {
21 | "express": "^4.16.3",
22 | "request": "^2.85.0",
23 | "universal-analytics": "^0.4.16"
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/.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": 2,
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 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Lighthouse score badges
2 |
3 | Be proud of your [Lighthouse](https://github.com/googlechrome/lighthouse) score! Display
4 | this badge in a Github readme, on your site, in a presentation,...wherever.
5 |
6 | Large:
7 |
8 | [](https://github.com/ebidel/lighthouse-badge)
9 | [](https://github.com/ebidel/lighthouse-badge)
10 | [](https://github.com/ebidel/lighthouse-badge)
11 |
12 |
13 | Compact:
14 |
15 | [](https://github.com/ebidel/lighthouse-badge)
16 | [](https://github.com/ebidel/lighthouse-badge)
17 | [](https://github.com/ebidel/lighthouse-badge)
18 |
19 | Include category:
20 |
21 | [](https://github.com/ebidel/lighthouse-badge)
22 | [](https://github.com/ebidel/lighthouse-badge)
23 |
24 | ### Examples
25 |
26 | API: `https://lighthouse-badge.appspot.com/?score=[&compact]`
27 |
28 | Parameters:
29 |
30 | - `score`: required. set from [0,100].
31 | - `compact`: optional. Renders smaller image instead.
32 | - `category`: optional. Specify a report section label (e.g. "PWA", "Perf", "A11y", "Best Practices")
33 |
34 | Markdown
35 |
36 | ```md
37 | [](https://github.com/ebidel/lighthouse-badge)
38 | ```
39 |
40 | ```md
41 | [](https://github.com/ebidel/lighthouse-badge)
42 | ```
43 |
44 | ```md
45 | [](https://github.com/ebidel/lighthouse-badge)
46 | ```
47 |
48 | HTML
49 |
50 | ```html
51 |
52 |
53 |
54 | ```
55 |
56 | ```html
57 |
58 |
59 |
60 | ```
61 |
62 | ```html
63 |
64 |
65 |
66 | ```
67 |
--------------------------------------------------------------------------------
/server.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright 2018 Google Inc. All rights reserved.
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | */
16 | 'use strict';
17 |
18 | const express = require('express');
19 | const fs = require('fs');
20 | const {URL} = require('url');
21 | const request = require('request');
22 | const analytics = require('universal-analytics');
23 |
24 | const lhLogoDataURL = `data:image/png;base64,${fs.readFileSync('./public/lhicon-small.png').toString('base64')}`;
25 |
26 | function generateBadgeURL(score, compact = false, category = null) {
27 | const RATINGS = {
28 | PASS: {label: 'pass', minScore: 75},
29 | AVERAGE: {label: 'average', minScore: 45},
30 | FAIL: {label: 'fail'},
31 | };
32 |
33 | // Clamp input [0, 100] and round.
34 | score = Math.round(Math.min(Math.max(0, score), 100));
35 |
36 | const cat = category || '';
37 | let label = `Lighthouse ${cat} Score`;
38 | if (compact) {
39 | label = cat;
40 | }
41 |
42 | const url = new URL(`https://img.shields.io/badge/-${score}-grey.svg`);
43 | url.searchParams.set('label', label);
44 | url.searchParams.set('colorA', '242ffd');
45 | url.searchParams.set('style', 'flat-square');
46 | url.searchParams.set('logo', lhLogoDataURL);
47 | url.searchParams.set('maxAge', 24*60*60); // cache for 24hrs
48 |
49 | let colorB = 'df332f';
50 | if (score >= RATINGS.PASS.minScore) {
51 | colorB = '2b882f';
52 | } else if (score >= RATINGS.AVERAGE.minScore) {
53 | colorB = 'ef6c00';
54 | }
55 |
56 | url.searchParams.set('colorB', colorB);
57 |
58 | return url.href;
59 | // const alt = `Lighthouse score: ${score}/100`;
60 | // return `
`;
61 | }
62 |
63 | const app = express();
64 |
65 | app.use(function forceSSL(req, res, next) {
66 | if (req.hostname !== 'localhost' && req.get('X-Forwarded-Proto') === 'http') {
67 | res.redirect(`https://${req.hostname}${req.url}`);
68 | }
69 | next();
70 | });
71 |
72 | app.use(express.static('public', {extensions: ['html', 'htm']}));
73 |
74 | app.get('/', async (req, res) => {
75 | const currentUrl = new URL(`${req.protocol}://${req.get('host')}${req.url}`);
76 | const compact = currentUrl.searchParams.has('compact');
77 | const score = Number(currentUrl.searchParams.get('score'));
78 | const category = currentUrl.searchParams.get('category');
79 |
80 | try {
81 | const visitor = analytics('UA-85519014-5', {https: true});
82 | visitor.pageview('/').send();
83 | } catch (err) {
84 | // noop
85 | }
86 |
87 | request.get(generateBadgeURL(score, compact, category), (err, res2, body) => {
88 | if (err) {
89 | res.status(400).send(err);
90 | }
91 | res.set('Content-Type', 'image/svg+xml');
92 | res.status(200).send(body);
93 | });
94 | });
95 |
96 | const PORT = process.env.PORT || 8080;
97 | app.listen(PORT, () => {
98 | console.log(`App listening on port ${PORT}`);
99 | console.log('Press Ctrl+C to quit.');
100 | });
--------------------------------------------------------------------------------
/public/examples.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Lighthouse Score Badge Previews
8 |
11 |
12 |
13 |
14 |
<img src="https://lighthouse-badge.appspot.com?score=35">
15 |
<img src="https://lighthouse-badge.appspot.com?score=65">
16 |
<img src="https://lighthouse-badge.appspot.com?score=95">
17 |
18 | 
<img src="https://lighthouse-badge.appspot.com?score=95&category=PWA">
19 |
20 |
<img src="https://lighthouse-badge.appspot.com?score=35&compact">
21 |
<img src="https://lighthouse-badge.appspot.com?score=65&compact">
22 |
<img src="https://lighthouse-badge.appspot.com?score=95&compact">
23 |
24 |
<img src="https://lighthouse-badge.appspot.com?score=95&compact&category=Perf">
25 |
26 |
90 |
91 |
92 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | accepts@~1.3.5:
6 | version "1.3.5"
7 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2"
8 | dependencies:
9 | mime-types "~2.1.18"
10 | negotiator "0.6.1"
11 |
12 | ajv@^5.1.0:
13 | version "5.5.2"
14 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
15 | dependencies:
16 | co "^4.6.0"
17 | fast-deep-equal "^1.0.0"
18 | fast-json-stable-stringify "^2.0.0"
19 | json-schema-traverse "^0.3.0"
20 |
21 | array-flatten@1.1.1:
22 | version "1.1.1"
23 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
24 |
25 | asn1@~0.2.3:
26 | version "0.2.3"
27 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
28 |
29 | assert-plus@1.0.0, assert-plus@^1.0.0:
30 | version "1.0.0"
31 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
32 |
33 | asynckit@^0.4.0:
34 | version "0.4.0"
35 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
36 |
37 | aws-sign2@~0.7.0:
38 | version "0.7.0"
39 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
40 |
41 | aws4@^1.6.0:
42 | version "1.6.0"
43 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
44 |
45 | bcrypt-pbkdf@^1.0.0:
46 | version "1.0.1"
47 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
48 | dependencies:
49 | tweetnacl "^0.14.3"
50 |
51 | body-parser@1.18.2:
52 | version "1.18.2"
53 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454"
54 | dependencies:
55 | bytes "3.0.0"
56 | content-type "~1.0.4"
57 | debug "2.6.9"
58 | depd "~1.1.1"
59 | http-errors "~1.6.2"
60 | iconv-lite "0.4.19"
61 | on-finished "~2.3.0"
62 | qs "6.5.1"
63 | raw-body "2.3.2"
64 | type-is "~1.6.15"
65 |
66 | boom@4.x.x:
67 | version "4.3.1"
68 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31"
69 | dependencies:
70 | hoek "4.x.x"
71 |
72 | boom@5.x.x:
73 | version "5.2.0"
74 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02"
75 | dependencies:
76 | hoek "4.x.x"
77 |
78 | bytes@3.0.0:
79 | version "3.0.0"
80 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
81 |
82 | caseless@~0.12.0:
83 | version "0.12.0"
84 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
85 |
86 | co@^4.6.0:
87 | version "4.6.0"
88 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
89 |
90 | combined-stream@1.0.6, combined-stream@~1.0.5:
91 | version "1.0.6"
92 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818"
93 | dependencies:
94 | delayed-stream "~1.0.0"
95 |
96 | content-disposition@0.5.2:
97 | version "0.5.2"
98 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
99 |
100 | content-type@~1.0.4:
101 | version "1.0.4"
102 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
103 |
104 | cookie-signature@1.0.6:
105 | version "1.0.6"
106 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
107 |
108 | cookie@0.3.1:
109 | version "0.3.1"
110 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
111 |
112 | core-util-is@1.0.2:
113 | version "1.0.2"
114 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
115 |
116 | cryptiles@3.x.x:
117 | version "3.1.2"
118 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"
119 | dependencies:
120 | boom "5.x.x"
121 |
122 | dashdash@^1.12.0:
123 | version "1.14.1"
124 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
125 | dependencies:
126 | assert-plus "^1.0.0"
127 |
128 | debug@2.6.9:
129 | version "2.6.9"
130 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
131 | dependencies:
132 | ms "2.0.0"
133 |
134 | delayed-stream@~1.0.0:
135 | version "1.0.0"
136 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
137 |
138 | depd@1.1.1:
139 | version "1.1.1"
140 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359"
141 |
142 | depd@~1.1.1, depd@~1.1.2:
143 | version "1.1.2"
144 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
145 |
146 | destroy@~1.0.4:
147 | version "1.0.4"
148 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
149 |
150 | ecc-jsbn@~0.1.1:
151 | version "0.1.1"
152 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
153 | dependencies:
154 | jsbn "~0.1.0"
155 |
156 | ee-first@1.1.1:
157 | version "1.1.1"
158 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
159 |
160 | encodeurl@~1.0.2:
161 | version "1.0.2"
162 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
163 |
164 | escape-html@~1.0.3:
165 | version "1.0.3"
166 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
167 |
168 | etag@~1.8.1:
169 | version "1.8.1"
170 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
171 |
172 | express@^4.16.3:
173 | version "4.16.3"
174 | resolved "https://registry.yarnpkg.com/express/-/express-4.16.3.tgz#6af8a502350db3246ecc4becf6b5a34d22f7ed53"
175 | dependencies:
176 | accepts "~1.3.5"
177 | array-flatten "1.1.1"
178 | body-parser "1.18.2"
179 | content-disposition "0.5.2"
180 | content-type "~1.0.4"
181 | cookie "0.3.1"
182 | cookie-signature "1.0.6"
183 | debug "2.6.9"
184 | depd "~1.1.2"
185 | encodeurl "~1.0.2"
186 | escape-html "~1.0.3"
187 | etag "~1.8.1"
188 | finalhandler "1.1.1"
189 | fresh "0.5.2"
190 | merge-descriptors "1.0.1"
191 | methods "~1.1.2"
192 | on-finished "~2.3.0"
193 | parseurl "~1.3.2"
194 | path-to-regexp "0.1.7"
195 | proxy-addr "~2.0.3"
196 | qs "6.5.1"
197 | range-parser "~1.2.0"
198 | safe-buffer "5.1.1"
199 | send "0.16.2"
200 | serve-static "1.13.2"
201 | setprototypeof "1.1.0"
202 | statuses "~1.4.0"
203 | type-is "~1.6.16"
204 | utils-merge "1.0.1"
205 | vary "~1.1.2"
206 |
207 | extend@~3.0.1:
208 | version "3.0.1"
209 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
210 |
211 | extsprintf@1.3.0:
212 | version "1.3.0"
213 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
214 |
215 | extsprintf@^1.2.0:
216 | version "1.4.0"
217 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
218 |
219 | fast-deep-equal@^1.0.0:
220 | version "1.1.0"
221 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614"
222 |
223 | fast-json-stable-stringify@^2.0.0:
224 | version "2.0.0"
225 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
226 |
227 | finalhandler@1.1.1:
228 | version "1.1.1"
229 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.1.tgz#eebf4ed840079c83f4249038c9d703008301b105"
230 | dependencies:
231 | debug "2.6.9"
232 | encodeurl "~1.0.2"
233 | escape-html "~1.0.3"
234 | on-finished "~2.3.0"
235 | parseurl "~1.3.2"
236 | statuses "~1.4.0"
237 | unpipe "~1.0.0"
238 |
239 | forever-agent@~0.6.1:
240 | version "0.6.1"
241 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
242 |
243 | form-data@~2.3.1:
244 | version "2.3.2"
245 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099"
246 | dependencies:
247 | asynckit "^0.4.0"
248 | combined-stream "1.0.6"
249 | mime-types "^2.1.12"
250 |
251 | forwarded@~0.1.2:
252 | version "0.1.2"
253 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
254 |
255 | fresh@0.5.2:
256 | version "0.5.2"
257 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
258 |
259 | getpass@^0.1.1:
260 | version "0.1.7"
261 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
262 | dependencies:
263 | assert-plus "^1.0.0"
264 |
265 | har-schema@^2.0.0:
266 | version "2.0.0"
267 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
268 |
269 | har-validator@~5.0.3:
270 | version "5.0.3"
271 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd"
272 | dependencies:
273 | ajv "^5.1.0"
274 | har-schema "^2.0.0"
275 |
276 | hawk@~6.0.2:
277 | version "6.0.2"
278 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038"
279 | dependencies:
280 | boom "4.x.x"
281 | cryptiles "3.x.x"
282 | hoek "4.x.x"
283 | sntp "2.x.x"
284 |
285 | hoek@4.x.x:
286 | version "4.2.1"
287 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb"
288 |
289 | http-errors@1.6.2, http-errors@~1.6.2:
290 | version "1.6.2"
291 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736"
292 | dependencies:
293 | depd "1.1.1"
294 | inherits "2.0.3"
295 | setprototypeof "1.0.3"
296 | statuses ">= 1.3.1 < 2"
297 |
298 | http-signature@~1.2.0:
299 | version "1.2.0"
300 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
301 | dependencies:
302 | assert-plus "^1.0.0"
303 | jsprim "^1.2.2"
304 | sshpk "^1.7.0"
305 |
306 | iconv-lite@0.4.19:
307 | version "0.4.19"
308 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
309 |
310 | inherits@2.0.3:
311 | version "2.0.3"
312 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
313 |
314 | ipaddr.js@1.6.0:
315 | version "1.6.0"
316 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.6.0.tgz#e3fa357b773da619f26e95f049d055c72796f86b"
317 |
318 | is-typedarray@~1.0.0:
319 | version "1.0.0"
320 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
321 |
322 | isstream@~0.1.2:
323 | version "0.1.2"
324 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
325 |
326 | jsbn@~0.1.0:
327 | version "0.1.1"
328 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
329 |
330 | json-schema-traverse@^0.3.0:
331 | version "0.3.1"
332 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
333 |
334 | json-schema@0.2.3:
335 | version "0.2.3"
336 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
337 |
338 | json-stringify-safe@~5.0.1:
339 | version "5.0.1"
340 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
341 |
342 | jsprim@^1.2.2:
343 | version "1.4.1"
344 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
345 | dependencies:
346 | assert-plus "1.0.0"
347 | extsprintf "1.3.0"
348 | json-schema "0.2.3"
349 | verror "1.10.0"
350 |
351 | media-typer@0.3.0:
352 | version "0.3.0"
353 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
354 |
355 | merge-descriptors@1.0.1:
356 | version "1.0.1"
357 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
358 |
359 | methods@~1.1.2:
360 | version "1.1.2"
361 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
362 |
363 | mime-db@~1.33.0:
364 | version "1.33.0"
365 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db"
366 |
367 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.18:
368 | version "2.1.18"
369 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8"
370 | dependencies:
371 | mime-db "~1.33.0"
372 |
373 | mime@1.4.1:
374 | version "1.4.1"
375 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"
376 |
377 | ms@2.0.0:
378 | version "2.0.0"
379 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
380 |
381 | negotiator@0.6.1:
382 | version "0.6.1"
383 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
384 |
385 | oauth-sign@~0.8.2:
386 | version "0.8.2"
387 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
388 |
389 | on-finished@~2.3.0:
390 | version "2.3.0"
391 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
392 | dependencies:
393 | ee-first "1.1.1"
394 |
395 | parseurl@~1.3.2:
396 | version "1.3.2"
397 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3"
398 |
399 | path-to-regexp@0.1.7:
400 | version "0.1.7"
401 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
402 |
403 | performance-now@^2.1.0:
404 | version "2.1.0"
405 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
406 |
407 | proxy-addr@~2.0.3:
408 | version "2.0.3"
409 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.3.tgz#355f262505a621646b3130a728eb647e22055341"
410 | dependencies:
411 | forwarded "~0.1.2"
412 | ipaddr.js "1.6.0"
413 |
414 | punycode@^1.4.1:
415 | version "1.4.1"
416 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
417 |
418 | qs@6.5.1, qs@~6.5.1:
419 | version "6.5.1"
420 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
421 |
422 | range-parser@~1.2.0:
423 | version "1.2.0"
424 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
425 |
426 | raw-body@2.3.2:
427 | version "2.3.2"
428 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89"
429 | dependencies:
430 | bytes "3.0.0"
431 | http-errors "1.6.2"
432 | iconv-lite "0.4.19"
433 | unpipe "1.0.0"
434 |
435 | request@2.x:
436 | version "2.83.0"
437 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356"
438 | dependencies:
439 | aws-sign2 "~0.7.0"
440 | aws4 "^1.6.0"
441 | caseless "~0.12.0"
442 | combined-stream "~1.0.5"
443 | extend "~3.0.1"
444 | forever-agent "~0.6.1"
445 | form-data "~2.3.1"
446 | har-validator "~5.0.3"
447 | hawk "~6.0.2"
448 | http-signature "~1.2.0"
449 | is-typedarray "~1.0.0"
450 | isstream "~0.1.2"
451 | json-stringify-safe "~5.0.1"
452 | mime-types "~2.1.17"
453 | oauth-sign "~0.8.2"
454 | performance-now "^2.1.0"
455 | qs "~6.5.1"
456 | safe-buffer "^5.1.1"
457 | stringstream "~0.0.5"
458 | tough-cookie "~2.3.3"
459 | tunnel-agent "^0.6.0"
460 | uuid "^3.1.0"
461 |
462 | request@^2.85.0:
463 | version "2.85.0"
464 | resolved "https://registry.yarnpkg.com/request/-/request-2.85.0.tgz#5a03615a47c61420b3eb99b7dba204f83603e1fa"
465 | dependencies:
466 | aws-sign2 "~0.7.0"
467 | aws4 "^1.6.0"
468 | caseless "~0.12.0"
469 | combined-stream "~1.0.5"
470 | extend "~3.0.1"
471 | forever-agent "~0.6.1"
472 | form-data "~2.3.1"
473 | har-validator "~5.0.3"
474 | hawk "~6.0.2"
475 | http-signature "~1.2.0"
476 | is-typedarray "~1.0.0"
477 | isstream "~0.1.2"
478 | json-stringify-safe "~5.0.1"
479 | mime-types "~2.1.17"
480 | oauth-sign "~0.8.2"
481 | performance-now "^2.1.0"
482 | qs "~6.5.1"
483 | safe-buffer "^5.1.1"
484 | stringstream "~0.0.5"
485 | tough-cookie "~2.3.3"
486 | tunnel-agent "^0.6.0"
487 | uuid "^3.1.0"
488 |
489 | safe-buffer@5.1.1, safe-buffer@^5.0.1, safe-buffer@^5.1.1:
490 | version "5.1.1"
491 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
492 |
493 | send@0.16.2:
494 | version "0.16.2"
495 | resolved "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1"
496 | dependencies:
497 | debug "2.6.9"
498 | depd "~1.1.2"
499 | destroy "~1.0.4"
500 | encodeurl "~1.0.2"
501 | escape-html "~1.0.3"
502 | etag "~1.8.1"
503 | fresh "0.5.2"
504 | http-errors "~1.6.2"
505 | mime "1.4.1"
506 | ms "2.0.0"
507 | on-finished "~2.3.0"
508 | range-parser "~1.2.0"
509 | statuses "~1.4.0"
510 |
511 | serve-static@1.13.2:
512 | version "1.13.2"
513 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1"
514 | dependencies:
515 | encodeurl "~1.0.2"
516 | escape-html "~1.0.3"
517 | parseurl "~1.3.2"
518 | send "0.16.2"
519 |
520 | setprototypeof@1.0.3:
521 | version "1.0.3"
522 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04"
523 |
524 | setprototypeof@1.1.0:
525 | version "1.1.0"
526 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
527 |
528 | sntp@2.x.x:
529 | version "2.1.0"
530 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8"
531 | dependencies:
532 | hoek "4.x.x"
533 |
534 | sshpk@^1.7.0:
535 | version "1.13.1"
536 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
537 | dependencies:
538 | asn1 "~0.2.3"
539 | assert-plus "^1.0.0"
540 | dashdash "^1.12.0"
541 | getpass "^0.1.1"
542 | optionalDependencies:
543 | bcrypt-pbkdf "^1.0.0"
544 | ecc-jsbn "~0.1.1"
545 | jsbn "~0.1.0"
546 | tweetnacl "~0.14.0"
547 |
548 | "statuses@>= 1.3.1 < 2", statuses@~1.4.0:
549 | version "1.4.0"
550 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087"
551 |
552 | stringstream@~0.0.5:
553 | version "0.0.5"
554 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
555 |
556 | tough-cookie@~2.3.3:
557 | version "2.3.4"
558 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655"
559 | dependencies:
560 | punycode "^1.4.1"
561 |
562 | tunnel-agent@^0.6.0:
563 | version "0.6.0"
564 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
565 | dependencies:
566 | safe-buffer "^5.0.1"
567 |
568 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
569 | version "0.14.5"
570 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
571 |
572 | type-is@~1.6.15, type-is@~1.6.16:
573 | version "1.6.16"
574 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194"
575 | dependencies:
576 | media-typer "0.3.0"
577 | mime-types "~2.1.18"
578 |
579 | universal-analytics@^0.4.16:
580 | version "0.4.16"
581 | resolved "https://registry.yarnpkg.com/universal-analytics/-/universal-analytics-0.4.16.tgz#c567eced53cc99ae40d88668464da0950a713731"
582 | dependencies:
583 | request "2.x"
584 | uuid "^3.0.0"
585 |
586 | unpipe@1.0.0, unpipe@~1.0.0:
587 | version "1.0.0"
588 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
589 |
590 | utils-merge@1.0.1:
591 | version "1.0.1"
592 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
593 |
594 | uuid@^3.0.0, uuid@^3.1.0:
595 | version "3.2.1"
596 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14"
597 |
598 | vary@~1.1.2:
599 | version "1.1.2"
600 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
601 |
602 | verror@1.10.0:
603 | version "1.10.0"
604 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
605 | dependencies:
606 | assert-plus "^1.0.0"
607 | core-util-is "1.0.2"
608 | extsprintf "^1.2.0"
609 |
--------------------------------------------------------------------------------