├── .gitignore
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── project
├── package-lock.json
├── package.json
├── server.js
└── src
│ ├── images
│ ├── articles
│ │ ├── buildings.jpg
│ │ ├── doctors.jpg
│ │ ├── food.jpg
│ │ ├── plane.jpg
│ │ ├── solar.jpg
│ │ ├── space.jpg
│ │ └── weather.jpg
│ ├── home
│ │ └── business.jpg
│ └── icon
│ │ └── icon.svg
│ ├── index.html
│ ├── js
│ └── animation.js
│ ├── pages
│ ├── 404.html
│ ├── article1.html
│ ├── article2.html
│ ├── article3.html
│ ├── article4.html
│ ├── offline.html
│ ├── post1.html
│ ├── post2.html
│ └── post3.html
│ ├── style
│ └── main.css
│ └── sw.js
└── solution
├── package-lock.json
├── package.json
├── server.js
├── src
├── images
│ ├── articles
│ │ ├── buildings.jpg
│ │ ├── doctors.jpg
│ │ ├── food.jpg
│ │ ├── plane.jpg
│ │ ├── solar.jpg
│ │ ├── space.jpg
│ │ └── weather.jpg
│ ├── home
│ │ └── business.jpg
│ └── icon
│ │ └── icon.svg
├── index.html
├── js
│ └── animation.js
├── pages
│ ├── 404.html
│ ├── article1.html
│ ├── article2.html
│ ├── article3.html
│ ├── article4.html
│ ├── offline.html
│ ├── post1.html
│ ├── post2.html
│ └── post3.html
├── style
│ └── main.css
└── sw.js
└── workbox-config.js
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 | .tmp
4 | dist/
5 | app.yal
6 | *~
7 | build/
8 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | Want to contribute? Great! First, read this page (including the small print at the end).
2 |
3 | ### Before you contribute
4 | Before we can use your code, you must sign the
5 | [Google Individual Contributor License Agreement]
6 | (https://cla.developers.google.com/about/google-individual)
7 | (CLA), which you can do online. The CLA is necessary mainly because you own the
8 | copyright to your changes, even after your contribution becomes part of our
9 | codebase, so we need your permission to use and distribute your code. We also
10 | need to be sure of various other things—for instance that you'll tell us if you
11 | know that your code infringes on other people's patents. You don't have to sign
12 | the CLA until after you've submitted your code for review and a member has
13 | approved it, but you must do it before we can put your code into our codebase.
14 | Before you start working on a larger contribution, you should get in touch with
15 | us first through the issue tracker with your idea so that we can help out and
16 | possibly guide you. Coordinating up front makes it much easier to avoid
17 | frustration later on.
18 |
19 | ### Code reviews
20 | All submissions, including submissions by project members, require review. We
21 | use Github pull requests for this purpose.
22 |
23 | ### The small print
24 | Contributions made by corporations are covered by a different agreement than
25 | the one above, the
26 | [Software Grant and Corporate Contributor License Agreement]
27 | (https://cla.developers.google.com/about/google-corporate).
28 |
--------------------------------------------------------------------------------
/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 | # Workbox Lab
2 |
3 | In this codelab, you’ll use [Workbox](https://workboxjs.org/) to convert a web site into a Progressive Web App with offline functionality and fast performance. Workbox allows you to create production quality service workers that follow best practices and handle corner cases, making your development process simpler and your web app more reliable.
4 |
5 | ## Getting started
6 |
7 | Follow the [Google Codelabs instructions](https://codelabs.developers.google.com/codelabs/workbox-lab/index.html?index=..%2F..%2Findex#0).
8 |
9 | ## Note
10 |
11 | All images are CCO
12 |
13 | ## More resources
14 |
15 | * [PWA training materials](https://developers.google.com/web/ilt/pwa/)
16 |
17 | ## License
18 |
19 | Copyright 2018 Google Inc.
20 |
21 | Licensed under the Apache License, Version 2.0 (the "License");
22 | you may not use this file except in compliance with the License.
23 | You may obtain a copy of the License at
24 |
25 | http://www.apache.org/licenses/LICENSE-2.0
26 |
27 | Unless required by applicable law or agreed to in writing, software
28 | distributed under the License is distributed on an "AS IS" BASIS,
29 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30 | See the License for the specific language governing permissions and
31 | limitations under the License.
32 |
33 | This is not an official Google product.
34 |
--------------------------------------------------------------------------------
/project/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "workbox-lab",
3 | "version": "1.0.0",
4 | "lockfileVersion": 1,
5 | "requires": true,
6 | "dependencies": {
7 | "accepts": {
8 | "version": "1.3.7",
9 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
10 | "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
11 | "requires": {
12 | "mime-types": "~2.1.24",
13 | "negotiator": "0.6.2"
14 | }
15 | },
16 | "ansi-align": {
17 | "version": "2.0.0",
18 | "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz",
19 | "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=",
20 | "dev": true,
21 | "requires": {
22 | "string-width": "^2.0.0"
23 | }
24 | },
25 | "ansi-escapes": {
26 | "version": "3.2.0",
27 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz",
28 | "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==",
29 | "dev": true
30 | },
31 | "ansi-regex": {
32 | "version": "3.0.0",
33 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
34 | "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
35 | "dev": true
36 | },
37 | "ansi-styles": {
38 | "version": "3.2.1",
39 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
40 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
41 | "dev": true,
42 | "requires": {
43 | "color-convert": "^1.9.0"
44 | }
45 | },
46 | "array-find-index": {
47 | "version": "1.0.2",
48 | "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz",
49 | "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=",
50 | "dev": true
51 | },
52 | "array-flatten": {
53 | "version": "1.1.1",
54 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
55 | "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI="
56 | },
57 | "babel-extract-comments": {
58 | "version": "1.0.0",
59 | "resolved": "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz",
60 | "integrity": "sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==",
61 | "dev": true,
62 | "requires": {
63 | "babylon": "^6.18.0"
64 | }
65 | },
66 | "babel-plugin-syntax-object-rest-spread": {
67 | "version": "6.13.0",
68 | "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz",
69 | "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=",
70 | "dev": true
71 | },
72 | "babel-plugin-transform-object-rest-spread": {
73 | "version": "6.26.0",
74 | "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz",
75 | "integrity": "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=",
76 | "dev": true,
77 | "requires": {
78 | "babel-plugin-syntax-object-rest-spread": "^6.8.0",
79 | "babel-runtime": "^6.26.0"
80 | }
81 | },
82 | "babel-runtime": {
83 | "version": "6.26.0",
84 | "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
85 | "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
86 | "dev": true,
87 | "requires": {
88 | "core-js": "^2.4.0",
89 | "regenerator-runtime": "^0.11.0"
90 | }
91 | },
92 | "babylon": {
93 | "version": "6.18.0",
94 | "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
95 | "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==",
96 | "dev": true
97 | },
98 | "balanced-match": {
99 | "version": "1.0.0",
100 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
101 | "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
102 | "dev": true
103 | },
104 | "body-parser": {
105 | "version": "1.19.0",
106 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz",
107 | "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==",
108 | "requires": {
109 | "bytes": "3.1.0",
110 | "content-type": "~1.0.4",
111 | "debug": "2.6.9",
112 | "depd": "~1.1.2",
113 | "http-errors": "1.7.2",
114 | "iconv-lite": "0.4.24",
115 | "on-finished": "~2.3.0",
116 | "qs": "6.7.0",
117 | "raw-body": "2.4.0",
118 | "type-is": "~1.6.17"
119 | }
120 | },
121 | "boxen": {
122 | "version": "1.3.0",
123 | "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz",
124 | "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==",
125 | "dev": true,
126 | "requires": {
127 | "ansi-align": "^2.0.0",
128 | "camelcase": "^4.0.0",
129 | "chalk": "^2.0.1",
130 | "cli-boxes": "^1.0.0",
131 | "string-width": "^2.0.0",
132 | "term-size": "^1.2.0",
133 | "widest-line": "^2.0.0"
134 | },
135 | "dependencies": {
136 | "camelcase": {
137 | "version": "4.1.0",
138 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz",
139 | "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=",
140 | "dev": true
141 | }
142 | }
143 | },
144 | "brace-expansion": {
145 | "version": "1.1.11",
146 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
147 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
148 | "dev": true,
149 | "requires": {
150 | "balanced-match": "^1.0.0",
151 | "concat-map": "0.0.1"
152 | }
153 | },
154 | "bytes": {
155 | "version": "3.1.0",
156 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
157 | "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="
158 | },
159 | "camelcase": {
160 | "version": "2.1.1",
161 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz",
162 | "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=",
163 | "dev": true
164 | },
165 | "camelcase-keys": {
166 | "version": "2.1.0",
167 | "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz",
168 | "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=",
169 | "dev": true,
170 | "requires": {
171 | "camelcase": "^2.0.0",
172 | "map-obj": "^1.0.0"
173 | }
174 | },
175 | "capture-stack-trace": {
176 | "version": "1.0.1",
177 | "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz",
178 | "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==",
179 | "dev": true
180 | },
181 | "chalk": {
182 | "version": "2.4.2",
183 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
184 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
185 | "dev": true,
186 | "requires": {
187 | "ansi-styles": "^3.2.1",
188 | "escape-string-regexp": "^1.0.5",
189 | "supports-color": "^5.3.0"
190 | }
191 | },
192 | "chardet": {
193 | "version": "0.4.2",
194 | "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz",
195 | "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=",
196 | "dev": true
197 | },
198 | "ci-info": {
199 | "version": "1.6.0",
200 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz",
201 | "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==",
202 | "dev": true
203 | },
204 | "cli-boxes": {
205 | "version": "1.0.0",
206 | "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz",
207 | "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=",
208 | "dev": true
209 | },
210 | "cli-cursor": {
211 | "version": "2.1.0",
212 | "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz",
213 | "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=",
214 | "dev": true,
215 | "requires": {
216 | "restore-cursor": "^2.0.0"
217 | }
218 | },
219 | "cli-spinners": {
220 | "version": "1.3.1",
221 | "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.3.1.tgz",
222 | "integrity": "sha512-1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==",
223 | "dev": true
224 | },
225 | "cli-width": {
226 | "version": "2.2.1",
227 | "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz",
228 | "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==",
229 | "dev": true
230 | },
231 | "color-convert": {
232 | "version": "1.9.3",
233 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
234 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
235 | "dev": true,
236 | "requires": {
237 | "color-name": "1.1.3"
238 | }
239 | },
240 | "color-name": {
241 | "version": "1.1.3",
242 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
243 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
244 | "dev": true
245 | },
246 | "common-tags": {
247 | "version": "1.8.0",
248 | "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz",
249 | "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==",
250 | "dev": true
251 | },
252 | "concat-map": {
253 | "version": "0.0.1",
254 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
255 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
256 | "dev": true
257 | },
258 | "configstore": {
259 | "version": "3.1.2",
260 | "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz",
261 | "integrity": "sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==",
262 | "dev": true,
263 | "requires": {
264 | "dot-prop": "^4.1.0",
265 | "graceful-fs": "^4.1.2",
266 | "make-dir": "^1.0.0",
267 | "unique-string": "^1.0.0",
268 | "write-file-atomic": "^2.0.0",
269 | "xdg-basedir": "^3.0.0"
270 | }
271 | },
272 | "content-disposition": {
273 | "version": "0.5.3",
274 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
275 | "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==",
276 | "requires": {
277 | "safe-buffer": "5.1.2"
278 | }
279 | },
280 | "content-type": {
281 | "version": "1.0.4",
282 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
283 | "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="
284 | },
285 | "cookie": {
286 | "version": "0.4.0",
287 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz",
288 | "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg=="
289 | },
290 | "cookie-signature": {
291 | "version": "1.0.6",
292 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
293 | "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw="
294 | },
295 | "copyfiles": {
296 | "version": "1.2.0",
297 | "resolved": "https://registry.npmjs.org/copyfiles/-/copyfiles-1.2.0.tgz",
298 | "integrity": "sha1-qNo6xBqiIgrim9PFi2mEKU8sWTw=",
299 | "dev": true,
300 | "requires": {
301 | "glob": "^7.0.5",
302 | "ltcdr": "^2.2.1",
303 | "minimatch": "^3.0.3",
304 | "mkdirp": "^0.5.1",
305 | "noms": "0.0.0",
306 | "through2": "^2.0.1"
307 | }
308 | },
309 | "core-js": {
310 | "version": "2.6.11",
311 | "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz",
312 | "integrity": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==",
313 | "dev": true
314 | },
315 | "core-util-is": {
316 | "version": "1.0.2",
317 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
318 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
319 | "dev": true
320 | },
321 | "create-error-class": {
322 | "version": "3.0.2",
323 | "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz",
324 | "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=",
325 | "dev": true,
326 | "requires": {
327 | "capture-stack-trace": "^1.0.0"
328 | }
329 | },
330 | "cross-spawn": {
331 | "version": "5.1.0",
332 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
333 | "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
334 | "dev": true,
335 | "requires": {
336 | "lru-cache": "^4.0.1",
337 | "shebang-command": "^1.2.0",
338 | "which": "^1.2.9"
339 | }
340 | },
341 | "crypto-random-string": {
342 | "version": "1.0.0",
343 | "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz",
344 | "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=",
345 | "dev": true
346 | },
347 | "currently-unhandled": {
348 | "version": "0.4.1",
349 | "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
350 | "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=",
351 | "dev": true,
352 | "requires": {
353 | "array-find-index": "^1.0.1"
354 | }
355 | },
356 | "debug": {
357 | "version": "2.6.9",
358 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
359 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
360 | "requires": {
361 | "ms": "2.0.0"
362 | }
363 | },
364 | "decamelize": {
365 | "version": "1.2.0",
366 | "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
367 | "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
368 | "dev": true
369 | },
370 | "deep-extend": {
371 | "version": "0.6.0",
372 | "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
373 | "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
374 | "dev": true
375 | },
376 | "depd": {
377 | "version": "1.1.2",
378 | "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
379 | "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak="
380 | },
381 | "destroy": {
382 | "version": "1.0.4",
383 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
384 | "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA="
385 | },
386 | "dot-prop": {
387 | "version": "4.2.1",
388 | "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.1.tgz",
389 | "integrity": "sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ==",
390 | "dev": true,
391 | "requires": {
392 | "is-obj": "^1.0.0"
393 | }
394 | },
395 | "duplexer3": {
396 | "version": "0.1.4",
397 | "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
398 | "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=",
399 | "dev": true
400 | },
401 | "ee-first": {
402 | "version": "1.1.1",
403 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
404 | "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
405 | },
406 | "encodeurl": {
407 | "version": "1.0.2",
408 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
409 | "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k="
410 | },
411 | "error-ex": {
412 | "version": "1.3.2",
413 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
414 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
415 | "dev": true,
416 | "requires": {
417 | "is-arrayish": "^0.2.1"
418 | }
419 | },
420 | "escape-html": {
421 | "version": "1.0.3",
422 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
423 | "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg="
424 | },
425 | "escape-string-regexp": {
426 | "version": "1.0.5",
427 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
428 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
429 | "dev": true
430 | },
431 | "etag": {
432 | "version": "1.8.1",
433 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
434 | "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc="
435 | },
436 | "execa": {
437 | "version": "0.7.0",
438 | "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz",
439 | "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=",
440 | "dev": true,
441 | "requires": {
442 | "cross-spawn": "^5.0.1",
443 | "get-stream": "^3.0.0",
444 | "is-stream": "^1.1.0",
445 | "npm-run-path": "^2.0.0",
446 | "p-finally": "^1.0.0",
447 | "signal-exit": "^3.0.0",
448 | "strip-eof": "^1.0.0"
449 | }
450 | },
451 | "express": {
452 | "version": "4.17.1",
453 | "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz",
454 | "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==",
455 | "requires": {
456 | "accepts": "~1.3.7",
457 | "array-flatten": "1.1.1",
458 | "body-parser": "1.19.0",
459 | "content-disposition": "0.5.3",
460 | "content-type": "~1.0.4",
461 | "cookie": "0.4.0",
462 | "cookie-signature": "1.0.6",
463 | "debug": "2.6.9",
464 | "depd": "~1.1.2",
465 | "encodeurl": "~1.0.2",
466 | "escape-html": "~1.0.3",
467 | "etag": "~1.8.1",
468 | "finalhandler": "~1.1.2",
469 | "fresh": "0.5.2",
470 | "merge-descriptors": "1.0.1",
471 | "methods": "~1.1.2",
472 | "on-finished": "~2.3.0",
473 | "parseurl": "~1.3.3",
474 | "path-to-regexp": "0.1.7",
475 | "proxy-addr": "~2.0.5",
476 | "qs": "6.7.0",
477 | "range-parser": "~1.2.1",
478 | "safe-buffer": "5.1.2",
479 | "send": "0.17.1",
480 | "serve-static": "1.14.1",
481 | "setprototypeof": "1.1.1",
482 | "statuses": "~1.5.0",
483 | "type-is": "~1.6.18",
484 | "utils-merge": "1.0.1",
485 | "vary": "~1.1.2"
486 | }
487 | },
488 | "external-editor": {
489 | "version": "2.2.0",
490 | "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz",
491 | "integrity": "sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==",
492 | "dev": true,
493 | "requires": {
494 | "chardet": "^0.4.0",
495 | "iconv-lite": "^0.4.17",
496 | "tmp": "^0.0.33"
497 | }
498 | },
499 | "figures": {
500 | "version": "2.0.0",
501 | "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz",
502 | "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=",
503 | "dev": true,
504 | "requires": {
505 | "escape-string-regexp": "^1.0.5"
506 | }
507 | },
508 | "finalhandler": {
509 | "version": "1.1.2",
510 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz",
511 | "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==",
512 | "requires": {
513 | "debug": "2.6.9",
514 | "encodeurl": "~1.0.2",
515 | "escape-html": "~1.0.3",
516 | "on-finished": "~2.3.0",
517 | "parseurl": "~1.3.3",
518 | "statuses": "~1.5.0",
519 | "unpipe": "~1.0.0"
520 | }
521 | },
522 | "find-up": {
523 | "version": "1.1.2",
524 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz",
525 | "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=",
526 | "dev": true,
527 | "requires": {
528 | "path-exists": "^2.0.0",
529 | "pinkie-promise": "^2.0.0"
530 | }
531 | },
532 | "forwarded": {
533 | "version": "0.1.2",
534 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz",
535 | "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ="
536 | },
537 | "fresh": {
538 | "version": "0.5.2",
539 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
540 | "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac="
541 | },
542 | "fs-extra": {
543 | "version": "4.0.3",
544 | "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz",
545 | "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==",
546 | "dev": true,
547 | "requires": {
548 | "graceful-fs": "^4.1.2",
549 | "jsonfile": "^4.0.0",
550 | "universalify": "^0.1.0"
551 | }
552 | },
553 | "fs.realpath": {
554 | "version": "1.0.0",
555 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
556 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
557 | "dev": true
558 | },
559 | "get-own-enumerable-property-symbols": {
560 | "version": "3.0.2",
561 | "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz",
562 | "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==",
563 | "dev": true
564 | },
565 | "get-stdin": {
566 | "version": "4.0.1",
567 | "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz",
568 | "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=",
569 | "dev": true
570 | },
571 | "get-stream": {
572 | "version": "3.0.0",
573 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
574 | "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
575 | "dev": true
576 | },
577 | "glob": {
578 | "version": "7.1.6",
579 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
580 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
581 | "dev": true,
582 | "requires": {
583 | "fs.realpath": "^1.0.0",
584 | "inflight": "^1.0.4",
585 | "inherits": "2",
586 | "minimatch": "^3.0.4",
587 | "once": "^1.3.0",
588 | "path-is-absolute": "^1.0.0"
589 | }
590 | },
591 | "global-dirs": {
592 | "version": "0.1.1",
593 | "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz",
594 | "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=",
595 | "dev": true,
596 | "requires": {
597 | "ini": "^1.3.4"
598 | }
599 | },
600 | "got": {
601 | "version": "6.7.1",
602 | "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz",
603 | "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=",
604 | "dev": true,
605 | "requires": {
606 | "create-error-class": "^3.0.0",
607 | "duplexer3": "^0.1.4",
608 | "get-stream": "^3.0.0",
609 | "is-redirect": "^1.0.0",
610 | "is-retry-allowed": "^1.0.0",
611 | "is-stream": "^1.0.0",
612 | "lowercase-keys": "^1.0.0",
613 | "safe-buffer": "^5.0.1",
614 | "timed-out": "^4.0.0",
615 | "unzip-response": "^2.0.1",
616 | "url-parse-lax": "^1.0.0"
617 | }
618 | },
619 | "graceful-fs": {
620 | "version": "4.2.4",
621 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
622 | "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
623 | "dev": true
624 | },
625 | "has-flag": {
626 | "version": "3.0.0",
627 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
628 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
629 | "dev": true
630 | },
631 | "hoek": {
632 | "version": "4.2.1",
633 | "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz",
634 | "integrity": "sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA==",
635 | "dev": true
636 | },
637 | "hosted-git-info": {
638 | "version": "2.8.8",
639 | "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz",
640 | "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==",
641 | "dev": true
642 | },
643 | "http-errors": {
644 | "version": "1.7.2",
645 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz",
646 | "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==",
647 | "requires": {
648 | "depd": "~1.1.2",
649 | "inherits": "2.0.3",
650 | "setprototypeof": "1.1.1",
651 | "statuses": ">= 1.5.0 < 2",
652 | "toidentifier": "1.0.0"
653 | }
654 | },
655 | "iconv-lite": {
656 | "version": "0.4.24",
657 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
658 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
659 | "requires": {
660 | "safer-buffer": ">= 2.1.2 < 3"
661 | }
662 | },
663 | "import-lazy": {
664 | "version": "2.1.0",
665 | "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz",
666 | "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=",
667 | "dev": true
668 | },
669 | "imurmurhash": {
670 | "version": "0.1.4",
671 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
672 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
673 | "dev": true
674 | },
675 | "indent-string": {
676 | "version": "2.1.0",
677 | "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz",
678 | "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=",
679 | "dev": true,
680 | "requires": {
681 | "repeating": "^2.0.0"
682 | }
683 | },
684 | "inflight": {
685 | "version": "1.0.6",
686 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
687 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
688 | "dev": true,
689 | "requires": {
690 | "once": "^1.3.0",
691 | "wrappy": "1"
692 | }
693 | },
694 | "inherits": {
695 | "version": "2.0.3",
696 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
697 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
698 | },
699 | "ini": {
700 | "version": "1.3.8",
701 | "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
702 | "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
703 | "dev": true
704 | },
705 | "inquirer": {
706 | "version": "3.3.0",
707 | "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz",
708 | "integrity": "sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==",
709 | "dev": true,
710 | "requires": {
711 | "ansi-escapes": "^3.0.0",
712 | "chalk": "^2.0.0",
713 | "cli-cursor": "^2.1.0",
714 | "cli-width": "^2.0.0",
715 | "external-editor": "^2.0.4",
716 | "figures": "^2.0.0",
717 | "lodash": "^4.3.0",
718 | "mute-stream": "0.0.7",
719 | "run-async": "^2.2.0",
720 | "rx-lite": "^4.0.8",
721 | "rx-lite-aggregates": "^4.0.8",
722 | "string-width": "^2.1.0",
723 | "strip-ansi": "^4.0.0",
724 | "through": "^2.3.6"
725 | }
726 | },
727 | "ipaddr.js": {
728 | "version": "1.9.1",
729 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
730 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="
731 | },
732 | "is-arrayish": {
733 | "version": "0.2.1",
734 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
735 | "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
736 | "dev": true
737 | },
738 | "is-ci": {
739 | "version": "1.2.1",
740 | "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz",
741 | "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==",
742 | "dev": true,
743 | "requires": {
744 | "ci-info": "^1.5.0"
745 | }
746 | },
747 | "is-finite": {
748 | "version": "1.1.0",
749 | "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz",
750 | "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==",
751 | "dev": true
752 | },
753 | "is-fullwidth-code-point": {
754 | "version": "2.0.0",
755 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
756 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
757 | "dev": true
758 | },
759 | "is-installed-globally": {
760 | "version": "0.1.0",
761 | "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz",
762 | "integrity": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=",
763 | "dev": true,
764 | "requires": {
765 | "global-dirs": "^0.1.0",
766 | "is-path-inside": "^1.0.0"
767 | }
768 | },
769 | "is-npm": {
770 | "version": "1.0.0",
771 | "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz",
772 | "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=",
773 | "dev": true
774 | },
775 | "is-obj": {
776 | "version": "1.0.1",
777 | "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
778 | "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=",
779 | "dev": true
780 | },
781 | "is-path-inside": {
782 | "version": "1.0.1",
783 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz",
784 | "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=",
785 | "dev": true,
786 | "requires": {
787 | "path-is-inside": "^1.0.1"
788 | }
789 | },
790 | "is-redirect": {
791 | "version": "1.0.0",
792 | "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz",
793 | "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=",
794 | "dev": true
795 | },
796 | "is-regexp": {
797 | "version": "1.0.0",
798 | "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz",
799 | "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=",
800 | "dev": true
801 | },
802 | "is-retry-allowed": {
803 | "version": "1.2.0",
804 | "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz",
805 | "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==",
806 | "dev": true
807 | },
808 | "is-stream": {
809 | "version": "1.1.0",
810 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
811 | "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
812 | "dev": true
813 | },
814 | "is-utf8": {
815 | "version": "0.2.1",
816 | "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz",
817 | "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=",
818 | "dev": true
819 | },
820 | "isarray": {
821 | "version": "0.0.1",
822 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
823 | "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
824 | "dev": true
825 | },
826 | "isemail": {
827 | "version": "3.2.0",
828 | "resolved": "https://registry.npmjs.org/isemail/-/isemail-3.2.0.tgz",
829 | "integrity": "sha512-zKqkK+O+dGqevc93KNsbZ/TqTUFd46MwWjYOoMrjIMZ51eU7DtQG3Wmd9SQQT7i7RVnuTPEiYEWHU3MSbxC1Tg==",
830 | "dev": true,
831 | "requires": {
832 | "punycode": "2.x.x"
833 | }
834 | },
835 | "isexe": {
836 | "version": "2.0.0",
837 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
838 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
839 | "dev": true
840 | },
841 | "joi": {
842 | "version": "11.4.0",
843 | "resolved": "https://registry.npmjs.org/joi/-/joi-11.4.0.tgz",
844 | "integrity": "sha512-O7Uw+w/zEWgbL6OcHbyACKSj0PkQeUgmehdoXVSxt92QFCq4+1390Rwh5moI2K/OgC7D8RHRZqHZxT2husMJHA==",
845 | "dev": true,
846 | "requires": {
847 | "hoek": "4.x.x",
848 | "isemail": "3.x.x",
849 | "topo": "2.x.x"
850 | }
851 | },
852 | "jsonfile": {
853 | "version": "4.0.0",
854 | "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
855 | "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=",
856 | "dev": true,
857 | "requires": {
858 | "graceful-fs": "^4.1.6"
859 | }
860 | },
861 | "latest-version": {
862 | "version": "3.1.0",
863 | "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz",
864 | "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=",
865 | "dev": true,
866 | "requires": {
867 | "package-json": "^4.0.0"
868 | }
869 | },
870 | "load-json-file": {
871 | "version": "1.1.0",
872 | "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz",
873 | "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=",
874 | "dev": true,
875 | "requires": {
876 | "graceful-fs": "^4.1.2",
877 | "parse-json": "^2.2.0",
878 | "pify": "^2.0.0",
879 | "pinkie-promise": "^2.0.0",
880 | "strip-bom": "^2.0.0"
881 | }
882 | },
883 | "lodash": {
884 | "version": "4.17.19",
885 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
886 | "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
887 | "dev": true
888 | },
889 | "lodash._reinterpolate": {
890 | "version": "3.0.0",
891 | "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
892 | "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=",
893 | "dev": true
894 | },
895 | "lodash.template": {
896 | "version": "4.5.0",
897 | "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz",
898 | "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==",
899 | "dev": true,
900 | "requires": {
901 | "lodash._reinterpolate": "^3.0.0",
902 | "lodash.templatesettings": "^4.0.0"
903 | }
904 | },
905 | "lodash.templatesettings": {
906 | "version": "4.2.0",
907 | "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz",
908 | "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==",
909 | "dev": true,
910 | "requires": {
911 | "lodash._reinterpolate": "^3.0.0"
912 | }
913 | },
914 | "log-symbols": {
915 | "version": "2.2.0",
916 | "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz",
917 | "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==",
918 | "dev": true,
919 | "requires": {
920 | "chalk": "^2.0.1"
921 | }
922 | },
923 | "loud-rejection": {
924 | "version": "1.6.0",
925 | "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz",
926 | "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=",
927 | "dev": true,
928 | "requires": {
929 | "currently-unhandled": "^0.4.1",
930 | "signal-exit": "^3.0.0"
931 | }
932 | },
933 | "lowercase-keys": {
934 | "version": "1.0.1",
935 | "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
936 | "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==",
937 | "dev": true
938 | },
939 | "lru-cache": {
940 | "version": "4.1.5",
941 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz",
942 | "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==",
943 | "dev": true,
944 | "requires": {
945 | "pseudomap": "^1.0.2",
946 | "yallist": "^2.1.2"
947 | }
948 | },
949 | "ltcdr": {
950 | "version": "2.2.1",
951 | "resolved": "https://registry.npmjs.org/ltcdr/-/ltcdr-2.2.1.tgz",
952 | "integrity": "sha1-Wrh60dTB2rjowIu/A37gwZAih88=",
953 | "dev": true
954 | },
955 | "make-dir": {
956 | "version": "1.3.0",
957 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz",
958 | "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==",
959 | "dev": true,
960 | "requires": {
961 | "pify": "^3.0.0"
962 | },
963 | "dependencies": {
964 | "pify": {
965 | "version": "3.0.0",
966 | "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
967 | "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
968 | "dev": true
969 | }
970 | }
971 | },
972 | "map-obj": {
973 | "version": "1.0.1",
974 | "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz",
975 | "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=",
976 | "dev": true
977 | },
978 | "media-typer": {
979 | "version": "0.3.0",
980 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
981 | "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g="
982 | },
983 | "meow": {
984 | "version": "3.7.0",
985 | "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz",
986 | "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=",
987 | "dev": true,
988 | "requires": {
989 | "camelcase-keys": "^2.0.0",
990 | "decamelize": "^1.1.2",
991 | "loud-rejection": "^1.0.0",
992 | "map-obj": "^1.0.1",
993 | "minimist": "^1.1.3",
994 | "normalize-package-data": "^2.3.4",
995 | "object-assign": "^4.0.1",
996 | "read-pkg-up": "^1.0.1",
997 | "redent": "^1.0.0",
998 | "trim-newlines": "^1.0.0"
999 | }
1000 | },
1001 | "merge-descriptors": {
1002 | "version": "1.0.1",
1003 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
1004 | "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E="
1005 | },
1006 | "methods": {
1007 | "version": "1.1.2",
1008 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
1009 | "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4="
1010 | },
1011 | "mime": {
1012 | "version": "1.6.0",
1013 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
1014 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
1015 | },
1016 | "mime-db": {
1017 | "version": "1.44.0",
1018 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz",
1019 | "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg=="
1020 | },
1021 | "mime-types": {
1022 | "version": "2.1.27",
1023 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz",
1024 | "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==",
1025 | "requires": {
1026 | "mime-db": "1.44.0"
1027 | }
1028 | },
1029 | "mimic-fn": {
1030 | "version": "1.2.0",
1031 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz",
1032 | "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==",
1033 | "dev": true
1034 | },
1035 | "minimatch": {
1036 | "version": "3.0.4",
1037 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
1038 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
1039 | "dev": true,
1040 | "requires": {
1041 | "brace-expansion": "^1.1.7"
1042 | }
1043 | },
1044 | "minimist": {
1045 | "version": "1.2.5",
1046 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
1047 | "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
1048 | "dev": true
1049 | },
1050 | "mkdirp": {
1051 | "version": "0.5.5",
1052 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
1053 | "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
1054 | "dev": true,
1055 | "requires": {
1056 | "minimist": "^1.2.5"
1057 | }
1058 | },
1059 | "ms": {
1060 | "version": "2.0.0",
1061 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
1062 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
1063 | },
1064 | "mute-stream": {
1065 | "version": "0.0.7",
1066 | "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz",
1067 | "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=",
1068 | "dev": true
1069 | },
1070 | "negotiator": {
1071 | "version": "0.6.2",
1072 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz",
1073 | "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw=="
1074 | },
1075 | "noms": {
1076 | "version": "0.0.0",
1077 | "resolved": "https://registry.npmjs.org/noms/-/noms-0.0.0.tgz",
1078 | "integrity": "sha1-2o69nzr51nYJGbJ9nNyAkqczKFk=",
1079 | "dev": true,
1080 | "requires": {
1081 | "inherits": "^2.0.1",
1082 | "readable-stream": "~1.0.31"
1083 | }
1084 | },
1085 | "normalize-package-data": {
1086 | "version": "2.5.0",
1087 | "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
1088 | "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
1089 | "dev": true,
1090 | "requires": {
1091 | "hosted-git-info": "^2.1.4",
1092 | "resolve": "^1.10.0",
1093 | "semver": "2 || 3 || 4 || 5",
1094 | "validate-npm-package-license": "^3.0.1"
1095 | }
1096 | },
1097 | "npm-run-path": {
1098 | "version": "2.0.2",
1099 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
1100 | "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
1101 | "dev": true,
1102 | "requires": {
1103 | "path-key": "^2.0.0"
1104 | }
1105 | },
1106 | "object-assign": {
1107 | "version": "4.1.1",
1108 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
1109 | "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
1110 | "dev": true
1111 | },
1112 | "on-finished": {
1113 | "version": "2.3.0",
1114 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
1115 | "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
1116 | "requires": {
1117 | "ee-first": "1.1.1"
1118 | }
1119 | },
1120 | "once": {
1121 | "version": "1.4.0",
1122 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
1123 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
1124 | "dev": true,
1125 | "requires": {
1126 | "wrappy": "1"
1127 | }
1128 | },
1129 | "onetime": {
1130 | "version": "2.0.1",
1131 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz",
1132 | "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=",
1133 | "dev": true,
1134 | "requires": {
1135 | "mimic-fn": "^1.0.0"
1136 | }
1137 | },
1138 | "ora": {
1139 | "version": "1.4.0",
1140 | "resolved": "https://registry.npmjs.org/ora/-/ora-1.4.0.tgz",
1141 | "integrity": "sha512-iMK1DOQxzzh2MBlVsU42G80mnrvUhqsMh74phHtDlrcTZPK0pH6o7l7DRshK+0YsxDyEuaOkziVdvM3T0QTzpw==",
1142 | "dev": true,
1143 | "requires": {
1144 | "chalk": "^2.1.0",
1145 | "cli-cursor": "^2.1.0",
1146 | "cli-spinners": "^1.0.1",
1147 | "log-symbols": "^2.1.0"
1148 | }
1149 | },
1150 | "os-tmpdir": {
1151 | "version": "1.0.2",
1152 | "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
1153 | "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
1154 | "dev": true
1155 | },
1156 | "p-finally": {
1157 | "version": "1.0.0",
1158 | "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
1159 | "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
1160 | "dev": true
1161 | },
1162 | "package-json": {
1163 | "version": "4.0.1",
1164 | "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz",
1165 | "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=",
1166 | "dev": true,
1167 | "requires": {
1168 | "got": "^6.7.1",
1169 | "registry-auth-token": "^3.0.1",
1170 | "registry-url": "^3.0.3",
1171 | "semver": "^5.1.0"
1172 | }
1173 | },
1174 | "parse-json": {
1175 | "version": "2.2.0",
1176 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
1177 | "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
1178 | "dev": true,
1179 | "requires": {
1180 | "error-ex": "^1.2.0"
1181 | }
1182 | },
1183 | "parseurl": {
1184 | "version": "1.3.3",
1185 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
1186 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="
1187 | },
1188 | "path-exists": {
1189 | "version": "2.1.0",
1190 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz",
1191 | "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=",
1192 | "dev": true,
1193 | "requires": {
1194 | "pinkie-promise": "^2.0.0"
1195 | }
1196 | },
1197 | "path-is-absolute": {
1198 | "version": "1.0.1",
1199 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
1200 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
1201 | "dev": true
1202 | },
1203 | "path-is-inside": {
1204 | "version": "1.0.2",
1205 | "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
1206 | "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=",
1207 | "dev": true
1208 | },
1209 | "path-key": {
1210 | "version": "2.0.1",
1211 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
1212 | "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
1213 | "dev": true
1214 | },
1215 | "path-parse": {
1216 | "version": "1.0.6",
1217 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
1218 | "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==",
1219 | "dev": true
1220 | },
1221 | "path-to-regexp": {
1222 | "version": "0.1.7",
1223 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
1224 | "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w="
1225 | },
1226 | "path-type": {
1227 | "version": "1.1.0",
1228 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz",
1229 | "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=",
1230 | "dev": true,
1231 | "requires": {
1232 | "graceful-fs": "^4.1.2",
1233 | "pify": "^2.0.0",
1234 | "pinkie-promise": "^2.0.0"
1235 | }
1236 | },
1237 | "pify": {
1238 | "version": "2.3.0",
1239 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
1240 | "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
1241 | "dev": true
1242 | },
1243 | "pinkie": {
1244 | "version": "2.0.4",
1245 | "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
1246 | "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=",
1247 | "dev": true
1248 | },
1249 | "pinkie-promise": {
1250 | "version": "2.0.1",
1251 | "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
1252 | "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=",
1253 | "dev": true,
1254 | "requires": {
1255 | "pinkie": "^2.0.0"
1256 | }
1257 | },
1258 | "prepend-http": {
1259 | "version": "1.0.4",
1260 | "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz",
1261 | "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=",
1262 | "dev": true
1263 | },
1264 | "pretty-bytes": {
1265 | "version": "4.0.2",
1266 | "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-4.0.2.tgz",
1267 | "integrity": "sha1-sr+C5zUNZcbDOqlaqlpPYyf2HNk=",
1268 | "dev": true
1269 | },
1270 | "process-nextick-args": {
1271 | "version": "2.0.1",
1272 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
1273 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
1274 | "dev": true
1275 | },
1276 | "proxy-addr": {
1277 | "version": "2.0.6",
1278 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz",
1279 | "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==",
1280 | "requires": {
1281 | "forwarded": "~0.1.2",
1282 | "ipaddr.js": "1.9.1"
1283 | }
1284 | },
1285 | "pseudomap": {
1286 | "version": "1.0.2",
1287 | "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz",
1288 | "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=",
1289 | "dev": true
1290 | },
1291 | "punycode": {
1292 | "version": "2.1.1",
1293 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
1294 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
1295 | "dev": true
1296 | },
1297 | "qs": {
1298 | "version": "6.7.0",
1299 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz",
1300 | "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="
1301 | },
1302 | "range-parser": {
1303 | "version": "1.2.1",
1304 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
1305 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="
1306 | },
1307 | "raw-body": {
1308 | "version": "2.4.0",
1309 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz",
1310 | "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==",
1311 | "requires": {
1312 | "bytes": "3.1.0",
1313 | "http-errors": "1.7.2",
1314 | "iconv-lite": "0.4.24",
1315 | "unpipe": "1.0.0"
1316 | }
1317 | },
1318 | "rc": {
1319 | "version": "1.2.8",
1320 | "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
1321 | "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
1322 | "dev": true,
1323 | "requires": {
1324 | "deep-extend": "^0.6.0",
1325 | "ini": "~1.3.0",
1326 | "minimist": "^1.2.0",
1327 | "strip-json-comments": "~2.0.1"
1328 | }
1329 | },
1330 | "read-pkg": {
1331 | "version": "1.1.0",
1332 | "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz",
1333 | "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=",
1334 | "dev": true,
1335 | "requires": {
1336 | "load-json-file": "^1.0.0",
1337 | "normalize-package-data": "^2.3.2",
1338 | "path-type": "^1.0.0"
1339 | }
1340 | },
1341 | "read-pkg-up": {
1342 | "version": "1.0.1",
1343 | "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz",
1344 | "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=",
1345 | "dev": true,
1346 | "requires": {
1347 | "find-up": "^1.0.0",
1348 | "read-pkg": "^1.0.0"
1349 | }
1350 | },
1351 | "readable-stream": {
1352 | "version": "1.0.34",
1353 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
1354 | "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=",
1355 | "dev": true,
1356 | "requires": {
1357 | "core-util-is": "~1.0.0",
1358 | "inherits": "~2.0.1",
1359 | "isarray": "0.0.1",
1360 | "string_decoder": "~0.10.x"
1361 | }
1362 | },
1363 | "redent": {
1364 | "version": "1.0.0",
1365 | "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz",
1366 | "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=",
1367 | "dev": true,
1368 | "requires": {
1369 | "indent-string": "^2.1.0",
1370 | "strip-indent": "^1.0.1"
1371 | }
1372 | },
1373 | "regenerator-runtime": {
1374 | "version": "0.11.1",
1375 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
1376 | "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==",
1377 | "dev": true
1378 | },
1379 | "registry-auth-token": {
1380 | "version": "3.4.0",
1381 | "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.4.0.tgz",
1382 | "integrity": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==",
1383 | "dev": true,
1384 | "requires": {
1385 | "rc": "^1.1.6",
1386 | "safe-buffer": "^5.0.1"
1387 | }
1388 | },
1389 | "registry-url": {
1390 | "version": "3.1.0",
1391 | "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz",
1392 | "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=",
1393 | "dev": true,
1394 | "requires": {
1395 | "rc": "^1.0.1"
1396 | }
1397 | },
1398 | "repeating": {
1399 | "version": "2.0.1",
1400 | "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz",
1401 | "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=",
1402 | "dev": true,
1403 | "requires": {
1404 | "is-finite": "^1.0.0"
1405 | }
1406 | },
1407 | "resolve": {
1408 | "version": "1.17.0",
1409 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz",
1410 | "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==",
1411 | "dev": true,
1412 | "requires": {
1413 | "path-parse": "^1.0.6"
1414 | }
1415 | },
1416 | "restore-cursor": {
1417 | "version": "2.0.0",
1418 | "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz",
1419 | "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=",
1420 | "dev": true,
1421 | "requires": {
1422 | "onetime": "^2.0.0",
1423 | "signal-exit": "^3.0.2"
1424 | }
1425 | },
1426 | "run-async": {
1427 | "version": "2.4.1",
1428 | "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
1429 | "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==",
1430 | "dev": true
1431 | },
1432 | "rx-lite": {
1433 | "version": "4.0.8",
1434 | "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz",
1435 | "integrity": "sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=",
1436 | "dev": true
1437 | },
1438 | "rx-lite-aggregates": {
1439 | "version": "4.0.8",
1440 | "resolved": "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz",
1441 | "integrity": "sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=",
1442 | "dev": true,
1443 | "requires": {
1444 | "rx-lite": "*"
1445 | }
1446 | },
1447 | "safe-buffer": {
1448 | "version": "5.1.2",
1449 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
1450 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
1451 | },
1452 | "safer-buffer": {
1453 | "version": "2.1.2",
1454 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
1455 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
1456 | },
1457 | "semver": {
1458 | "version": "5.7.1",
1459 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
1460 | "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
1461 | "dev": true
1462 | },
1463 | "semver-diff": {
1464 | "version": "2.1.0",
1465 | "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz",
1466 | "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=",
1467 | "dev": true,
1468 | "requires": {
1469 | "semver": "^5.0.3"
1470 | }
1471 | },
1472 | "send": {
1473 | "version": "0.17.1",
1474 | "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz",
1475 | "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==",
1476 | "requires": {
1477 | "debug": "2.6.9",
1478 | "depd": "~1.1.2",
1479 | "destroy": "~1.0.4",
1480 | "encodeurl": "~1.0.2",
1481 | "escape-html": "~1.0.3",
1482 | "etag": "~1.8.1",
1483 | "fresh": "0.5.2",
1484 | "http-errors": "~1.7.2",
1485 | "mime": "1.6.0",
1486 | "ms": "2.1.1",
1487 | "on-finished": "~2.3.0",
1488 | "range-parser": "~1.2.1",
1489 | "statuses": "~1.5.0"
1490 | },
1491 | "dependencies": {
1492 | "ms": {
1493 | "version": "2.1.1",
1494 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
1495 | "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="
1496 | }
1497 | }
1498 | },
1499 | "serve-static": {
1500 | "version": "1.14.1",
1501 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz",
1502 | "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==",
1503 | "requires": {
1504 | "encodeurl": "~1.0.2",
1505 | "escape-html": "~1.0.3",
1506 | "parseurl": "~1.3.3",
1507 | "send": "0.17.1"
1508 | }
1509 | },
1510 | "setprototypeof": {
1511 | "version": "1.1.1",
1512 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz",
1513 | "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="
1514 | },
1515 | "shebang-command": {
1516 | "version": "1.2.0",
1517 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
1518 | "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
1519 | "dev": true,
1520 | "requires": {
1521 | "shebang-regex": "^1.0.0"
1522 | }
1523 | },
1524 | "shebang-regex": {
1525 | "version": "1.0.0",
1526 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
1527 | "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
1528 | "dev": true
1529 | },
1530 | "signal-exit": {
1531 | "version": "3.0.3",
1532 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz",
1533 | "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==",
1534 | "dev": true
1535 | },
1536 | "spdx-correct": {
1537 | "version": "3.1.1",
1538 | "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz",
1539 | "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==",
1540 | "dev": true,
1541 | "requires": {
1542 | "spdx-expression-parse": "^3.0.0",
1543 | "spdx-license-ids": "^3.0.0"
1544 | }
1545 | },
1546 | "spdx-exceptions": {
1547 | "version": "2.3.0",
1548 | "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
1549 | "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==",
1550 | "dev": true
1551 | },
1552 | "spdx-expression-parse": {
1553 | "version": "3.0.1",
1554 | "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
1555 | "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
1556 | "dev": true,
1557 | "requires": {
1558 | "spdx-exceptions": "^2.1.0",
1559 | "spdx-license-ids": "^3.0.0"
1560 | }
1561 | },
1562 | "spdx-license-ids": {
1563 | "version": "3.0.5",
1564 | "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz",
1565 | "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==",
1566 | "dev": true
1567 | },
1568 | "statuses": {
1569 | "version": "1.5.0",
1570 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
1571 | "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow="
1572 | },
1573 | "string-width": {
1574 | "version": "2.1.1",
1575 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
1576 | "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
1577 | "dev": true,
1578 | "requires": {
1579 | "is-fullwidth-code-point": "^2.0.0",
1580 | "strip-ansi": "^4.0.0"
1581 | }
1582 | },
1583 | "string_decoder": {
1584 | "version": "0.10.31",
1585 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
1586 | "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=",
1587 | "dev": true
1588 | },
1589 | "stringify-object": {
1590 | "version": "3.3.0",
1591 | "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz",
1592 | "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==",
1593 | "dev": true,
1594 | "requires": {
1595 | "get-own-enumerable-property-symbols": "^3.0.0",
1596 | "is-obj": "^1.0.1",
1597 | "is-regexp": "^1.0.0"
1598 | }
1599 | },
1600 | "strip-ansi": {
1601 | "version": "4.0.0",
1602 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
1603 | "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
1604 | "dev": true,
1605 | "requires": {
1606 | "ansi-regex": "^3.0.0"
1607 | }
1608 | },
1609 | "strip-bom": {
1610 | "version": "2.0.0",
1611 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz",
1612 | "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=",
1613 | "dev": true,
1614 | "requires": {
1615 | "is-utf8": "^0.2.0"
1616 | }
1617 | },
1618 | "strip-comments": {
1619 | "version": "1.0.2",
1620 | "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz",
1621 | "integrity": "sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==",
1622 | "dev": true,
1623 | "requires": {
1624 | "babel-extract-comments": "^1.0.0",
1625 | "babel-plugin-transform-object-rest-spread": "^6.26.0"
1626 | }
1627 | },
1628 | "strip-eof": {
1629 | "version": "1.0.0",
1630 | "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
1631 | "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=",
1632 | "dev": true
1633 | },
1634 | "strip-indent": {
1635 | "version": "1.0.1",
1636 | "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz",
1637 | "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=",
1638 | "dev": true,
1639 | "requires": {
1640 | "get-stdin": "^4.0.1"
1641 | }
1642 | },
1643 | "strip-json-comments": {
1644 | "version": "2.0.1",
1645 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
1646 | "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=",
1647 | "dev": true
1648 | },
1649 | "supports-color": {
1650 | "version": "5.5.0",
1651 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
1652 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
1653 | "dev": true,
1654 | "requires": {
1655 | "has-flag": "^3.0.0"
1656 | }
1657 | },
1658 | "term-size": {
1659 | "version": "1.2.0",
1660 | "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz",
1661 | "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=",
1662 | "dev": true,
1663 | "requires": {
1664 | "execa": "^0.7.0"
1665 | }
1666 | },
1667 | "through": {
1668 | "version": "2.3.8",
1669 | "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
1670 | "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=",
1671 | "dev": true
1672 | },
1673 | "through2": {
1674 | "version": "2.0.5",
1675 | "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
1676 | "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
1677 | "dev": true,
1678 | "requires": {
1679 | "readable-stream": "~2.3.6",
1680 | "xtend": "~4.0.1"
1681 | },
1682 | "dependencies": {
1683 | "isarray": {
1684 | "version": "1.0.0",
1685 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
1686 | "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
1687 | "dev": true
1688 | },
1689 | "readable-stream": {
1690 | "version": "2.3.7",
1691 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
1692 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
1693 | "dev": true,
1694 | "requires": {
1695 | "core-util-is": "~1.0.0",
1696 | "inherits": "~2.0.3",
1697 | "isarray": "~1.0.0",
1698 | "process-nextick-args": "~2.0.0",
1699 | "safe-buffer": "~5.1.1",
1700 | "string_decoder": "~1.1.1",
1701 | "util-deprecate": "~1.0.1"
1702 | }
1703 | },
1704 | "string_decoder": {
1705 | "version": "1.1.1",
1706 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
1707 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
1708 | "dev": true,
1709 | "requires": {
1710 | "safe-buffer": "~5.1.0"
1711 | }
1712 | }
1713 | }
1714 | },
1715 | "timed-out": {
1716 | "version": "4.0.1",
1717 | "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz",
1718 | "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=",
1719 | "dev": true
1720 | },
1721 | "tmp": {
1722 | "version": "0.0.33",
1723 | "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
1724 | "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
1725 | "dev": true,
1726 | "requires": {
1727 | "os-tmpdir": "~1.0.2"
1728 | }
1729 | },
1730 | "toidentifier": {
1731 | "version": "1.0.0",
1732 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz",
1733 | "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="
1734 | },
1735 | "topo": {
1736 | "version": "2.0.2",
1737 | "resolved": "https://registry.npmjs.org/topo/-/topo-2.0.2.tgz",
1738 | "integrity": "sha1-zVYVdSU5BXwNwEkaYhw7xvvh0YI=",
1739 | "dev": true,
1740 | "requires": {
1741 | "hoek": "4.x.x"
1742 | }
1743 | },
1744 | "trim-newlines": {
1745 | "version": "1.0.0",
1746 | "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz",
1747 | "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=",
1748 | "dev": true
1749 | },
1750 | "type-is": {
1751 | "version": "1.6.18",
1752 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
1753 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
1754 | "requires": {
1755 | "media-typer": "0.3.0",
1756 | "mime-types": "~2.1.24"
1757 | }
1758 | },
1759 | "unique-string": {
1760 | "version": "1.0.0",
1761 | "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz",
1762 | "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=",
1763 | "dev": true,
1764 | "requires": {
1765 | "crypto-random-string": "^1.0.0"
1766 | }
1767 | },
1768 | "universalify": {
1769 | "version": "0.1.2",
1770 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
1771 | "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
1772 | "dev": true
1773 | },
1774 | "unpipe": {
1775 | "version": "1.0.0",
1776 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
1777 | "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw="
1778 | },
1779 | "unzip-response": {
1780 | "version": "2.0.1",
1781 | "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz",
1782 | "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=",
1783 | "dev": true
1784 | },
1785 | "update-notifier": {
1786 | "version": "2.5.0",
1787 | "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz",
1788 | "integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==",
1789 | "dev": true,
1790 | "requires": {
1791 | "boxen": "^1.2.1",
1792 | "chalk": "^2.0.1",
1793 | "configstore": "^3.0.0",
1794 | "import-lazy": "^2.1.0",
1795 | "is-ci": "^1.0.10",
1796 | "is-installed-globally": "^0.1.0",
1797 | "is-npm": "^1.0.0",
1798 | "latest-version": "^3.0.0",
1799 | "semver-diff": "^2.0.0",
1800 | "xdg-basedir": "^3.0.0"
1801 | }
1802 | },
1803 | "url-parse-lax": {
1804 | "version": "1.0.0",
1805 | "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz",
1806 | "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=",
1807 | "dev": true,
1808 | "requires": {
1809 | "prepend-http": "^1.0.1"
1810 | }
1811 | },
1812 | "util-deprecate": {
1813 | "version": "1.0.2",
1814 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
1815 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
1816 | "dev": true
1817 | },
1818 | "utils-merge": {
1819 | "version": "1.0.1",
1820 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
1821 | "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM="
1822 | },
1823 | "validate-npm-package-license": {
1824 | "version": "3.0.4",
1825 | "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
1826 | "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
1827 | "dev": true,
1828 | "requires": {
1829 | "spdx-correct": "^3.0.0",
1830 | "spdx-expression-parse": "^3.0.0"
1831 | }
1832 | },
1833 | "vary": {
1834 | "version": "1.1.2",
1835 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
1836 | "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw="
1837 | },
1838 | "which": {
1839 | "version": "1.3.1",
1840 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
1841 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
1842 | "dev": true,
1843 | "requires": {
1844 | "isexe": "^2.0.0"
1845 | }
1846 | },
1847 | "widest-line": {
1848 | "version": "2.0.1",
1849 | "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz",
1850 | "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==",
1851 | "dev": true,
1852 | "requires": {
1853 | "string-width": "^2.1.1"
1854 | }
1855 | },
1856 | "workbox-background-sync": {
1857 | "version": "3.6.3",
1858 | "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-3.6.3.tgz",
1859 | "integrity": "sha512-ypLo0B6dces4gSpaslmDg5wuoUWrHHVJfFWwl1udvSylLdXvnrfhFfriCS42SNEe5lsZtcNZF27W/SMzBlva7Q==",
1860 | "dev": true,
1861 | "requires": {
1862 | "workbox-core": "^3.6.3"
1863 | }
1864 | },
1865 | "workbox-broadcast-cache-update": {
1866 | "version": "3.6.3",
1867 | "resolved": "https://registry.npmjs.org/workbox-broadcast-cache-update/-/workbox-broadcast-cache-update-3.6.3.tgz",
1868 | "integrity": "sha512-pJl4lbClQcvp0SyTiEw0zLSsVYE1RDlCPtpKnpMjxFtu8lCFTAEuVyzxp9w7GF4/b3P4h5nyQ+q7V9mIR7YzGg==",
1869 | "dev": true,
1870 | "requires": {
1871 | "workbox-core": "^3.6.3"
1872 | }
1873 | },
1874 | "workbox-build": {
1875 | "version": "3.6.3",
1876 | "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-3.6.3.tgz",
1877 | "integrity": "sha512-w0clZ/pVjL8VXy6GfthefxpEXs0T8uiRuopZSFVQ8ovfbH6c6kUpEh6DcYwm/Y6dyWPiCucdyAZotgjz+nRz8g==",
1878 | "dev": true,
1879 | "requires": {
1880 | "babel-runtime": "^6.26.0",
1881 | "common-tags": "^1.4.0",
1882 | "fs-extra": "^4.0.2",
1883 | "glob": "^7.1.2",
1884 | "joi": "^11.1.1",
1885 | "lodash.template": "^4.4.0",
1886 | "pretty-bytes": "^4.0.2",
1887 | "stringify-object": "^3.2.2",
1888 | "strip-comments": "^1.0.2",
1889 | "workbox-background-sync": "^3.6.3",
1890 | "workbox-broadcast-cache-update": "^3.6.3",
1891 | "workbox-cache-expiration": "^3.6.3",
1892 | "workbox-cacheable-response": "^3.6.3",
1893 | "workbox-core": "^3.6.3",
1894 | "workbox-google-analytics": "^3.6.3",
1895 | "workbox-navigation-preload": "^3.6.3",
1896 | "workbox-precaching": "^3.6.3",
1897 | "workbox-range-requests": "^3.6.3",
1898 | "workbox-routing": "^3.6.3",
1899 | "workbox-strategies": "^3.6.3",
1900 | "workbox-streams": "^3.6.3",
1901 | "workbox-sw": "^3.6.3"
1902 | }
1903 | },
1904 | "workbox-cache-expiration": {
1905 | "version": "3.6.3",
1906 | "resolved": "https://registry.npmjs.org/workbox-cache-expiration/-/workbox-cache-expiration-3.6.3.tgz",
1907 | "integrity": "sha512-+ECNph/6doYx89oopO/UolYdDmQtGUgo8KCgluwBF/RieyA1ZOFKfrSiNjztxOrGJoyBB7raTIOlEEwZ1LaHoA==",
1908 | "dev": true,
1909 | "requires": {
1910 | "workbox-core": "^3.6.3"
1911 | }
1912 | },
1913 | "workbox-cacheable-response": {
1914 | "version": "3.6.3",
1915 | "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-3.6.3.tgz",
1916 | "integrity": "sha512-QpmbGA9SLcA7fklBLm06C4zFg577Dt8u3QgLM0eMnnbaVv3rhm4vbmDpBkyTqvgK/Ly8MBDQzlXDtUCswQwqqg==",
1917 | "dev": true,
1918 | "requires": {
1919 | "workbox-core": "^3.6.3"
1920 | }
1921 | },
1922 | "workbox-cli": {
1923 | "version": "3.6.3",
1924 | "resolved": "https://registry.npmjs.org/workbox-cli/-/workbox-cli-3.6.3.tgz",
1925 | "integrity": "sha512-l97OZ4sGnnHzlHsqHCOuK0s2hh7OjZTPhP3w6iKqzD9uR2JctXvUB7gB2MmD00ihD3kTyaR8HLCmEI2uZCzkbw==",
1926 | "dev": true,
1927 | "requires": {
1928 | "chalk": "^2.1.0",
1929 | "common-tags": "^1.4.0",
1930 | "fs-extra": "^4.0.2",
1931 | "glob": "^7.1.2",
1932 | "inquirer": "^3.3.0",
1933 | "meow": "^3.7.0",
1934 | "ora": "^1.3.0",
1935 | "pretty-bytes": "^4.0.2",
1936 | "update-notifier": "^2.3.0",
1937 | "workbox-build": "^3.6.3"
1938 | }
1939 | },
1940 | "workbox-core": {
1941 | "version": "3.6.3",
1942 | "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-3.6.3.tgz",
1943 | "integrity": "sha512-cx9cx0nscPkIWs8Pt98HGrS9/aORuUcSkWjG25GqNWdvD/pSe7/5Oh3BKs0fC+rUshCiyLbxW54q0hA+GqZeSQ==",
1944 | "dev": true
1945 | },
1946 | "workbox-google-analytics": {
1947 | "version": "3.6.3",
1948 | "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-3.6.3.tgz",
1949 | "integrity": "sha512-RQBUo/6SXtIaQTRFj4RQZ9e1gAl7D8oS5S+Hi173Kk70/BgJjzPwXpC5A249Jv5YfkCOLMQCeF9A27BiD0b0ig==",
1950 | "dev": true,
1951 | "requires": {
1952 | "workbox-background-sync": "^3.6.3",
1953 | "workbox-core": "^3.6.3",
1954 | "workbox-routing": "^3.6.3",
1955 | "workbox-strategies": "^3.6.3"
1956 | }
1957 | },
1958 | "workbox-navigation-preload": {
1959 | "version": "3.6.3",
1960 | "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-3.6.3.tgz",
1961 | "integrity": "sha512-dd26xTX16DUu0i+MhqZK/jQXgfIitu0yATM4jhRXEmpMqQ4MxEeNvl2CgjDMOHBnCVMax+CFZQWwxMx/X/PqCw==",
1962 | "dev": true,
1963 | "requires": {
1964 | "workbox-core": "^3.6.3"
1965 | }
1966 | },
1967 | "workbox-precaching": {
1968 | "version": "3.6.3",
1969 | "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-3.6.3.tgz",
1970 | "integrity": "sha512-aBqT66BuMFviPTW6IpccZZHzpA8xzvZU2OM1AdhmSlYDXOJyb1+Z6blVD7z2Q8VNtV1UVwQIdImIX+hH3C3PIw==",
1971 | "dev": true,
1972 | "requires": {
1973 | "workbox-core": "^3.6.3"
1974 | }
1975 | },
1976 | "workbox-range-requests": {
1977 | "version": "3.6.3",
1978 | "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-3.6.3.tgz",
1979 | "integrity": "sha512-R+yLWQy7D9aRF9yJ3QzwYnGFnGDhMUij4jVBUVtkl67oaVoP1ymZ81AfCmfZro2kpPRI+vmNMfxxW531cqdx8A==",
1980 | "dev": true,
1981 | "requires": {
1982 | "workbox-core": "^3.6.3"
1983 | }
1984 | },
1985 | "workbox-routing": {
1986 | "version": "3.6.3",
1987 | "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-3.6.3.tgz",
1988 | "integrity": "sha512-bX20i95OKXXQovXhFOViOK63HYmXvsIwZXKWbSpVeKToxMrp0G/6LZXnhg82ijj/S5yhKNRf9LeGDzaqxzAwMQ==",
1989 | "dev": true,
1990 | "requires": {
1991 | "workbox-core": "^3.6.3"
1992 | }
1993 | },
1994 | "workbox-strategies": {
1995 | "version": "3.6.3",
1996 | "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-3.6.3.tgz",
1997 | "integrity": "sha512-Pg5eulqeKet2y8j73Yw6xTgLdElktcWExGkzDVCGqfV9JCvnGuEpz5eVsCIK70+k4oJcBCin9qEg3g3CwEIH3g==",
1998 | "dev": true,
1999 | "requires": {
2000 | "workbox-core": "^3.6.3"
2001 | }
2002 | },
2003 | "workbox-streams": {
2004 | "version": "3.6.3",
2005 | "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-3.6.3.tgz",
2006 | "integrity": "sha512-rqDuS4duj+3aZUYI1LsrD2t9hHOjwPqnUIfrXSOxSVjVn83W2MisDF2Bj+dFUZv4GalL9xqErcFW++9gH+Z27w==",
2007 | "dev": true,
2008 | "requires": {
2009 | "workbox-core": "^3.6.3"
2010 | }
2011 | },
2012 | "workbox-sw": {
2013 | "version": "3.6.3",
2014 | "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-3.6.3.tgz",
2015 | "integrity": "sha512-IQOUi+RLhvYCiv80RP23KBW/NTtIvzvjex28B8NW1jOm+iV4VIu3VXKXTA6er5/wjjuhmtB28qEAUqADLAyOSg==",
2016 | "dev": true
2017 | },
2018 | "wrappy": {
2019 | "version": "1.0.2",
2020 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
2021 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
2022 | "dev": true
2023 | },
2024 | "write-file-atomic": {
2025 | "version": "2.4.3",
2026 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz",
2027 | "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==",
2028 | "dev": true,
2029 | "requires": {
2030 | "graceful-fs": "^4.1.11",
2031 | "imurmurhash": "^0.1.4",
2032 | "signal-exit": "^3.0.2"
2033 | }
2034 | },
2035 | "xdg-basedir": {
2036 | "version": "3.0.0",
2037 | "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz",
2038 | "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=",
2039 | "dev": true
2040 | },
2041 | "xtend": {
2042 | "version": "4.0.2",
2043 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
2044 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
2045 | "dev": true
2046 | },
2047 | "yallist": {
2048 | "version": "2.1.2",
2049 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz",
2050 | "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=",
2051 | "dev": true
2052 | }
2053 | }
2054 | }
2055 |
--------------------------------------------------------------------------------
/project/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "workbox-lab",
3 | "version": "1.0.0",
4 | "description": "a lab for learning workbox",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1",
8 | "copy": "copyfiles -u 1 src/**/**/* src/**/* src/* build",
9 | "build": "npm run copy",
10 | "start": "node server.js"
11 | },
12 | "author": "",
13 | "license": "ISC",
14 | "dependencies": {
15 | "express": "^4.16.3"
16 | },
17 | "devDependencies": {
18 | "copyfiles": "^1.2.0",
19 | "workbox-cli": "^3.5.0"
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/project/server.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright 2018 Google Inc.
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 | const express = require('express');
17 | const app = express();
18 |
19 | // This serves static files from the specified directory
20 | app.use(express.static(__dirname + '/build'));
21 |
22 | const server = app.listen(8081, () => {
23 |
24 | const host = server.address().address;
25 | const port = server.address().port;
26 |
27 | console.log('App listening at http://%s:%s', host, port);
28 | });
29 |
--------------------------------------------------------------------------------
/project/src/images/articles/buildings.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/googlecodelabs/workbox-lab/d013d543b51086000cec084ea1ef89db2049ca46/project/src/images/articles/buildings.jpg
--------------------------------------------------------------------------------
/project/src/images/articles/doctors.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/googlecodelabs/workbox-lab/d013d543b51086000cec084ea1ef89db2049ca46/project/src/images/articles/doctors.jpg
--------------------------------------------------------------------------------
/project/src/images/articles/food.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/googlecodelabs/workbox-lab/d013d543b51086000cec084ea1ef89db2049ca46/project/src/images/articles/food.jpg
--------------------------------------------------------------------------------
/project/src/images/articles/plane.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/googlecodelabs/workbox-lab/d013d543b51086000cec084ea1ef89db2049ca46/project/src/images/articles/plane.jpg
--------------------------------------------------------------------------------
/project/src/images/articles/solar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/googlecodelabs/workbox-lab/d013d543b51086000cec084ea1ef89db2049ca46/project/src/images/articles/solar.jpg
--------------------------------------------------------------------------------
/project/src/images/articles/space.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/googlecodelabs/workbox-lab/d013d543b51086000cec084ea1ef89db2049ca46/project/src/images/articles/space.jpg
--------------------------------------------------------------------------------
/project/src/images/articles/weather.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/googlecodelabs/workbox-lab/d013d543b51086000cec084ea1ef89db2049ca46/project/src/images/articles/weather.jpg
--------------------------------------------------------------------------------
/project/src/images/home/business.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/googlecodelabs/workbox-lab/d013d543b51086000cec084ea1ef89db2049ca46/project/src/images/home/business.jpg
--------------------------------------------------------------------------------
/project/src/images/icon/icon.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/project/src/index.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | News
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
44 |
45 |
46 | News
47 |
48 |
49 |

50 |
51 |
52 |
Headline
53 |
54 | I love cheese, especially manchego swiss. ☺ Fromage queso jarlsberg cheesy
55 | feet emmental cottage cheese camembert de normandie bocconcini. Cottage cheese
56 | everyone loves cauliflower cheese rubber cheese squirty cheese halloumi cow
57 | fondue. Bocconcini cheese and biscuits everyone loves fondue red leicester
58 | st. agur blue cheese rubber cheese ricotta. Cheesy grin mozzarella.
59 |
60 |
61 |
62 |
63 |
64 |
Trending Articles
65 |
72 |
73 |
74 |
Archived Posts
75 |
81 |
82 |
83 |
84 |
85 |
91 |
92 |
93 |
94 |
107 |
108 |
109 |
110 |
--------------------------------------------------------------------------------
/project/src/js/animation.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright 2018 Google Inc.
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 | var el = document.body;
17 |
18 | function fadeIn(el) {
19 | el.style.opacity = 0;
20 |
21 | var tick = function() {
22 | el.style.opacity = +el.style.opacity + 0.01;
23 |
24 | if (+el.style.opacity < 1) {
25 | (window.requestAnimationFrame && requestAnimationFrame(tick)) ||
26 | setTimeout(tick, 16);
27 | }
28 | };
29 |
30 | tick();
31 | }
32 |
33 | fadeIn(el);
34 |
--------------------------------------------------------------------------------
/project/src/pages/404.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | 404 Page
28 |
29 |
30 |
31 |
32 |
33 | 404 page
34 | Woops! Can't find the page you are requesting.
35 |
36 | Home
37 |
38 |
39 |
--------------------------------------------------------------------------------
/project/src/pages/article1.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Article1
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |

49 |
50 |
51 |
52 |
Article 1
53 |
54 | I love cheese, especially manchego swiss. ☺ Fromage queso jarlsberg cheesy
55 | feet emmental cottage cheese camembert de normandie bocconcini. Cottage cheese
56 | everyone loves cauliflower cheese rubber cheese squirty cheese halloumi cow
57 | fondue. Bocconcini cheese and biscuits everyone loves fondue red leicester
58 | st. agur blue cheese rubber cheese ricotta. Cheesy grin mozzarella.
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/project/src/pages/article2.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Article2
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |

49 |
50 |
51 |
52 |
Article 2
53 |
54 | I love cheese, especially manchego swiss. ☺ Fromage queso jarlsberg cheesy
55 | feet emmental cottage cheese camembert de normandie bocconcini. Cottage cheese
56 | everyone loves cauliflower cheese rubber cheese squirty cheese halloumi cow
57 | fondue. Bocconcini cheese and biscuits everyone loves fondue red leicester
58 | st. agur blue cheese rubber cheese ricotta. Cheesy grin mozzarella.
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/project/src/pages/article3.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Article3
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |

49 |
50 |
51 |
52 |
Article 3
53 |
54 | I love cheese, especially manchego swiss. ☺ Fromage queso jarlsberg cheesy
55 | feet emmental cottage cheese camembert de normandie bocconcini. Cottage cheese
56 | everyone loves cauliflower cheese rubber cheese squirty cheese halloumi cow
57 | fondue. Bocconcini cheese and biscuits everyone loves fondue red leicester
58 | st. agur blue cheese rubber cheese ricotta. Cheesy grin mozzarella.
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/project/src/pages/article4.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Article4
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |

49 |
50 |
51 |
52 |
Article 4
53 |
54 | I love cheese, especially manchego swiss. ☺ Fromage queso jarlsberg cheesy
55 | feet emmental cottage cheese camembert de normandie bocconcini. Cottage cheese
56 | everyone loves cauliflower cheese rubber cheese squirty cheese halloumi cow
57 | fondue. Bocconcini cheese and biscuits everyone loves fondue red leicester
58 | st. agur blue cheese rubber cheese ricotta. Cheesy grin mozzarella.
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/project/src/pages/offline.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Offline Page
28 |
29 |
30 |
31 |
32 |
33 | Offline page
34 | The resource you requested has not been cached! It is not viewable offline!
35 |
36 | Home
37 |
38 |
39 |
--------------------------------------------------------------------------------
/project/src/pages/post1.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Post1
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |

49 |
50 |
51 |
52 |
Archived Post 1
53 |
54 | I love cheese, especially manchego swiss. ☺ Fromage queso jarlsberg cheesy
55 | feet emmental cottage cheese camembert de normandie bocconcini. Cottage cheese
56 | everyone loves cauliflower cheese rubber cheese squirty cheese halloumi cow
57 | fondue. Bocconcini cheese and biscuits everyone loves fondue red leicester
58 | st. agur blue cheese rubber cheese ricotta. Cheesy grin mozzarella.
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/project/src/pages/post2.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Post2
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |

49 |
50 |
51 |
52 |
Archived Post 2
53 |
54 | I love cheese, especially manchego swiss. ☺ Fromage queso jarlsberg cheesy
55 | feet emmental cottage cheese camembert de normandie bocconcini. Cottage cheese
56 | everyone loves cauliflower cheese rubber cheese squirty cheese halloumi cow
57 | fondue. Bocconcini cheese and biscuits everyone loves fondue red leicester
58 | st. agur blue cheese rubber cheese ricotta. Cheesy grin mozzarella.
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/project/src/pages/post3.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Post3
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |

49 |
50 |
51 |
52 |
Archived Post 3
53 |
54 | I love cheese, especially manchego swiss. ☺ Fromage queso jarlsberg cheesy
55 | feet emmental cottage cheese camembert de normandie bocconcini. Cottage cheese
56 | everyone loves cauliflower cheese rubber cheese squirty cheese halloumi cow
57 | fondue. Bocconcini cheese and biscuits everyone loves fondue red leicester
58 | st. agur blue cheese rubber cheese ricotta. Cheesy grin mozzarella.
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/project/src/style/main.css:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright 2018 Google Inc.
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 | body {
17 | align-items: center;
18 | display: flex;
19 | flex-direction: column;
20 | font-family: 'Roboto','Helvetica','Arial',sans-serif;
21 | justify-content: space-between;
22 | margin: 0;
23 | max-width: 100%;
24 | min-height: 100vh;
25 | text-align: center;
26 | }
27 |
28 | header {
29 | width: 100%;
30 | }
31 |
32 | ul.navbar {
33 | list-style-type: none;
34 | margin: 0;
35 | padding: 0;
36 | overflow: hidden;
37 | background-color: #2196F3;
38 | }
39 |
40 | ul.navbar > li > a {
41 | float: left;
42 | display: block;
43 | color: white;
44 | text-align: center;
45 | padding: 14px 16px;
46 | }
47 |
48 | section {
49 | display: flex;
50 | flex-wrap: wrap;
51 | justify-content: center;
52 | width: 100%;
53 | margin: 0 0 15px 0;
54 | }
55 |
56 | article {
57 | align-items: normal;
58 | justify-content: center;
59 | display: flex;
60 | flex-direction: row;
61 | width: 100%;
62 | flex-wrap: wrap;
63 | padding: 0 5% 0 5%;
64 | box-sizing: border-box;
65 | -moz-box-sizing:border-box;
66 | -webkit-box-sizing:border-box;
67 | -ms-box-sizing:border-box;
68 | }
69 |
70 | footer {
71 | text-align: center;
72 | width: 100%;
73 | height: 50px;
74 | align-items: center;
75 | display: flex;
76 | justify-content: space-evenly;
77 | background-color: #2296f3;
78 | }
79 |
80 | a {
81 | font-weight: 400;
82 | color: #2196F3;
83 | text-decoration: underline;
84 | }
85 |
86 | h1 {
87 | color: #444;
88 | font-size: 6vw;
89 | font-weight: 500;
90 | margin: 0.5em;
91 | width: 100%;
92 | }
93 |
94 | h2 {
95 | color: #4c4c4c;
96 | margin: 10px;
97 | padding: 0;
98 | }
99 |
100 | img {
101 | max-width: 100%;
102 | }
103 |
104 | p {
105 | color: #444;
106 | font-size: 1em;
107 | font-weight: 300;
108 | line-height: 1.6em;
109 | margin: 0 auto 1em auto;
110 | text-align: justify;
111 | }
112 |
113 | li {
114 | list-style-type: none;
115 | }
116 |
117 | .vertical-list {
118 | display: flex;
119 | flex-direction: column;
120 | justify-content: center;
121 | padding: 0;
122 | }
123 |
124 | .list-title {
125 | margin: 10px 0;
126 | }
127 |
128 | .profile-icon {
129 | float:right;
130 | padding: 10px 16px
131 | }
132 |
133 | .column {
134 | width: 100%;
135 | }
136 |
137 | .img-container {
138 | padding-top: 10px;
139 | }
140 |
141 | .list-item {
142 | padding: 5px 0;
143 | }
144 |
145 | .footer-link {
146 | color: white;
147 | }
148 |
149 | @media (min-width: 800px) {
150 | .column {
151 | width: calc(50% - 20px);
152 | }
153 |
154 | .left {
155 | padding-right: 10px;
156 | }
157 |
158 | .right {
159 | padding-left: 10px;
160 | }
161 |
162 | }
163 |
164 | .padded {
165 | padding: 0 10%;
166 | }
167 |
168 | .back-link {
169 | padding-bottom: 10%;
170 | }
171 |
--------------------------------------------------------------------------------
/project/src/sw.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright 2018 Google Inc.
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 |
--------------------------------------------------------------------------------
/solution/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "workbox-lab",
3 | "version": "1.0.0",
4 | "description": "a lab for learning workbox",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1",
8 | "copy": "copyfiles -u 1 src/**/**/* src/**/* src/* build",
9 | "build": "npm run copy && workbox injectManifest workbox-config.js",
10 | "start": "node server.js"
11 | },
12 | "author": "",
13 | "license": "ISC",
14 | "dependencies": {
15 | "express": "^4.16.3"
16 | },
17 | "devDependencies": {
18 | "copyfiles": "^1.2.0",
19 | "workbox-cli": "^3.5.0"
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/solution/server.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright 2018 Google Inc.
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 | const express = require('express');
17 | const app = express();
18 |
19 | // This serves static files from the specified directory
20 | app.use(express.static(__dirname + '/build'));
21 |
22 | const server = app.listen(8081, () => {
23 |
24 | const host = server.address().address;
25 | const port = server.address().port;
26 |
27 | console.log('App listening at http://%s:%s', host, port);
28 | });
29 |
--------------------------------------------------------------------------------
/solution/src/images/articles/buildings.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/googlecodelabs/workbox-lab/d013d543b51086000cec084ea1ef89db2049ca46/solution/src/images/articles/buildings.jpg
--------------------------------------------------------------------------------
/solution/src/images/articles/doctors.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/googlecodelabs/workbox-lab/d013d543b51086000cec084ea1ef89db2049ca46/solution/src/images/articles/doctors.jpg
--------------------------------------------------------------------------------
/solution/src/images/articles/food.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/googlecodelabs/workbox-lab/d013d543b51086000cec084ea1ef89db2049ca46/solution/src/images/articles/food.jpg
--------------------------------------------------------------------------------
/solution/src/images/articles/plane.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/googlecodelabs/workbox-lab/d013d543b51086000cec084ea1ef89db2049ca46/solution/src/images/articles/plane.jpg
--------------------------------------------------------------------------------
/solution/src/images/articles/solar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/googlecodelabs/workbox-lab/d013d543b51086000cec084ea1ef89db2049ca46/solution/src/images/articles/solar.jpg
--------------------------------------------------------------------------------
/solution/src/images/articles/space.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/googlecodelabs/workbox-lab/d013d543b51086000cec084ea1ef89db2049ca46/solution/src/images/articles/space.jpg
--------------------------------------------------------------------------------
/solution/src/images/articles/weather.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/googlecodelabs/workbox-lab/d013d543b51086000cec084ea1ef89db2049ca46/solution/src/images/articles/weather.jpg
--------------------------------------------------------------------------------
/solution/src/images/home/business.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/googlecodelabs/workbox-lab/d013d543b51086000cec084ea1ef89db2049ca46/solution/src/images/home/business.jpg
--------------------------------------------------------------------------------
/solution/src/images/icon/icon.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/solution/src/index.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | News
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
44 |
45 |
46 | News
47 |
48 |
49 |

50 |
51 |
52 |
Headline
53 |
54 | I love cheese, especially manchego swiss. ☺ Fromage queso jarlsberg cheesy
55 | feet emmental cottage cheese camembert de normandie bocconcini. Cottage cheese
56 | everyone loves cauliflower cheese rubber cheese squirty cheese halloumi cow
57 | fondue. Bocconcini cheese and biscuits everyone loves fondue red leicester
58 | st. agur blue cheese rubber cheese ricotta. Cheesy grin mozzarella.
59 |
60 |
61 |
62 |
63 |
64 |
Trending Articles
65 |
72 |
73 |
74 |
Archived Posts
75 |
81 |
82 |
83 |
84 |
85 |
91 |
92 |
93 |
94 |
107 |
108 |
109 |
110 |
--------------------------------------------------------------------------------
/solution/src/js/animation.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright 2018 Google Inc.
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 | var el = document.body;
17 |
18 | function fadeIn(el) {
19 | el.style.opacity = 0;
20 |
21 | var tick = function() {
22 | el.style.opacity = +el.style.opacity + 0.01;
23 |
24 | if (+el.style.opacity < 1) {
25 | (window.requestAnimationFrame && requestAnimationFrame(tick)) ||
26 | setTimeout(tick, 16);
27 | }
28 | };
29 |
30 | tick();
31 | }
32 |
33 | fadeIn(el);
34 |
--------------------------------------------------------------------------------
/solution/src/pages/404.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | 404 Page
28 |
29 |
30 |
31 |
32 |
33 | 404 page
34 | Woops! Can't find the page you are requesting.
35 |
36 | Home
37 |
38 |
39 |
--------------------------------------------------------------------------------
/solution/src/pages/article1.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Article1
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |

49 |
50 |
51 |
52 |
Article 1
53 |
54 | I love cheese, especially manchego swiss. ☺ Fromage queso jarlsberg cheesy
55 | feet emmental cottage cheese camembert de normandie bocconcini. Cottage cheese
56 | everyone loves cauliflower cheese rubber cheese squirty cheese halloumi cow
57 | fondue. Bocconcini cheese and biscuits everyone loves fondue red leicester
58 | st. agur blue cheese rubber cheese ricotta. Cheesy grin mozzarella.
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/solution/src/pages/article2.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Article2
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |

49 |
50 |
51 |
52 |
Article 2
53 |
54 | I love cheese, especially manchego swiss. ☺ Fromage queso jarlsberg cheesy
55 | feet emmental cottage cheese camembert de normandie bocconcini. Cottage cheese
56 | everyone loves cauliflower cheese rubber cheese squirty cheese halloumi cow
57 | fondue. Bocconcini cheese and biscuits everyone loves fondue red leicester
58 | st. agur blue cheese rubber cheese ricotta. Cheesy grin mozzarella.
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/solution/src/pages/article3.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Article3
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |

49 |
50 |
51 |
52 |
Article 3
53 |
54 | I love cheese, especially manchego swiss. ☺ Fromage queso jarlsberg cheesy
55 | feet emmental cottage cheese camembert de normandie bocconcini. Cottage cheese
56 | everyone loves cauliflower cheese rubber cheese squirty cheese halloumi cow
57 | fondue. Bocconcini cheese and biscuits everyone loves fondue red leicester
58 | st. agur blue cheese rubber cheese ricotta. Cheesy grin mozzarella.
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/solution/src/pages/article4.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Article4
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |

49 |
50 |
51 |
52 |
Article 4
53 |
54 | I love cheese, especially manchego swiss. ☺ Fromage queso jarlsberg cheesy
55 | feet emmental cottage cheese camembert de normandie bocconcini. Cottage cheese
56 | everyone loves cauliflower cheese rubber cheese squirty cheese halloumi cow
57 | fondue. Bocconcini cheese and biscuits everyone loves fondue red leicester
58 | st. agur blue cheese rubber cheese ricotta. Cheesy grin mozzarella.
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/solution/src/pages/offline.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Offline Page
28 |
29 |
30 |
31 |
32 |
33 | Offline page
34 | The resource you requested has not been cached! It is not viewable offline!
35 |
36 | Home
37 |
38 |
39 |
--------------------------------------------------------------------------------
/solution/src/pages/post1.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Post1
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |

49 |
50 |
51 |
52 |
Archived Post 1
53 |
54 | I love cheese, especially manchego swiss. ☺ Fromage queso jarlsberg cheesy
55 | feet emmental cottage cheese camembert de normandie bocconcini. Cottage cheese
56 | everyone loves cauliflower cheese rubber cheese squirty cheese halloumi cow
57 | fondue. Bocconcini cheese and biscuits everyone loves fondue red leicester
58 | st. agur blue cheese rubber cheese ricotta. Cheesy grin mozzarella.
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/solution/src/pages/post2.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Post2
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |

49 |
50 |
51 |
52 |
Archived Post 2
53 |
54 | I love cheese, especially manchego swiss. ☺ Fromage queso jarlsberg cheesy
55 | feet emmental cottage cheese camembert de normandie bocconcini. Cottage cheese
56 | everyone loves cauliflower cheese rubber cheese squirty cheese halloumi cow
57 | fondue. Bocconcini cheese and biscuits everyone loves fondue red leicester
58 | st. agur blue cheese rubber cheese ricotta. Cheesy grin mozzarella.
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/solution/src/pages/post3.html:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | Post3
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |

49 |
50 |
51 |
52 |
Archived Post 3
53 |
54 | I love cheese, especially manchego swiss. ☺ Fromage queso jarlsberg cheesy
55 | feet emmental cottage cheese camembert de normandie bocconcini. Cottage cheese
56 | everyone loves cauliflower cheese rubber cheese squirty cheese halloumi cow
57 | fondue. Bocconcini cheese and biscuits everyone loves fondue red leicester
58 | st. agur blue cheese rubber cheese ricotta. Cheesy grin mozzarella.
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/solution/src/style/main.css:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright 2018 Google Inc.
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 | body {
17 | align-items: center;
18 | display: flex;
19 | flex-direction: column;
20 | font-family: 'Roboto','Helvetica','Arial',sans-serif;
21 | justify-content: space-between;
22 | margin: 0;
23 | max-width: 100%;
24 | min-height: 100vh;
25 | text-align: center;
26 | }
27 |
28 | header {
29 | width: 100%;
30 | }
31 |
32 | ul.navbar {
33 | list-style-type: none;
34 | margin: 0;
35 | padding: 0;
36 | overflow: hidden;
37 | background-color: #2196F3;
38 | }
39 |
40 | ul.navbar > li > a {
41 | float: left;
42 | display: block;
43 | color: white;
44 | text-align: center;
45 | padding: 14px 16px;
46 | }
47 |
48 | section {
49 | display: flex;
50 | flex-wrap: wrap;
51 | justify-content: center;
52 | width: 100%;
53 | margin: 0 0 15px 0;
54 | }
55 |
56 | article {
57 | align-items: normal;
58 | justify-content: center;
59 | display: flex;
60 | flex-direction: row;
61 | width: 100%;
62 | flex-wrap: wrap;
63 | padding: 0 5% 0 5%;
64 | box-sizing: border-box;
65 | -moz-box-sizing:border-box;
66 | -webkit-box-sizing:border-box;
67 | -ms-box-sizing:border-box;
68 | }
69 |
70 | footer {
71 | text-align: center;
72 | width: 100%;
73 | height: 50px;
74 | align-items: center;
75 | display: flex;
76 | justify-content: space-evenly;
77 | background-color: #2296f3;
78 | }
79 |
80 | a {
81 | font-weight: 400;
82 | color: #2196F3;
83 | text-decoration: underline;
84 | }
85 |
86 | h1 {
87 | color: #444;
88 | font-size: 6vw;
89 | font-weight: 500;
90 | margin: 0.5em;
91 | width: 100%;
92 | }
93 |
94 | h2 {
95 | color: #4c4c4c;
96 | margin: 10px;
97 | padding: 0;
98 | }
99 |
100 | img {
101 | max-width: 100%;
102 | }
103 |
104 | p {
105 | color: #444;
106 | font-size: 1em;
107 | font-weight: 300;
108 | line-height: 1.6em;
109 | margin: 0 auto 1em auto;
110 | text-align: justify;
111 | }
112 |
113 | li {
114 | list-style-type: none;
115 | }
116 |
117 | .vertical-list {
118 | display: flex;
119 | flex-direction: column;
120 | justify-content: center;
121 | padding: 0;
122 | }
123 |
124 | .list-title {
125 | margin: 10px 0;
126 | }
127 |
128 | .profile-icon {
129 | float:right;
130 | padding: 10px 16px
131 | }
132 |
133 | .column {
134 | width: 100%;
135 | }
136 |
137 | .img-container {
138 | padding-top: 10px;
139 | }
140 |
141 | .list-item {
142 | padding: 5px 0;
143 | }
144 |
145 | .footer-link {
146 | color: white;
147 | }
148 |
149 | @media (min-width: 800px) {
150 | .column {
151 | width: calc(50% - 20px);
152 | }
153 |
154 | .left {
155 | padding-right: 10px;
156 | }
157 |
158 | .right {
159 | padding-left: 10px;
160 | }
161 |
162 | }
163 |
164 | .padded {
165 | padding: 0 10%;
166 | }
167 |
168 | .back-link {
169 | padding-bottom: 10%;
170 | }
171 |
--------------------------------------------------------------------------------
/solution/src/sw.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright 2018 Google Inc.
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 |
17 | importScripts('https://storage.googleapis.com/workbox-cdn/releases/3.5.0/workbox-sw.js');
18 |
19 | if (workbox) {
20 | console.log(`Yay! Workbox is loaded 🎉`);
21 |
22 | workbox.precaching.precacheAndRoute([]);
23 |
24 | workbox.routing.registerRoute(
25 | /(.*)articles(.*)\.(?:png|gif|jpg)/,
26 | workbox.strategies.cacheFirst({
27 | cacheName: 'images-cache',
28 | plugins: [
29 | new workbox.expiration.Plugin({
30 | maxEntries: 50,
31 | maxAgeSeconds: 30 * 24 * 60 * 60, // 30 Days
32 | })
33 | ]
34 | })
35 | );
36 |
37 | const articleHandler = workbox.strategies.networkFirst({
38 | cacheName: 'articles-cache',
39 | plugins: [
40 | new workbox.expiration.Plugin({
41 | maxEntries: 50,
42 | })
43 | ]
44 | });
45 |
46 | workbox.routing.registerRoute(/(.*)article(.*)\.html/, args => {
47 | return articleHandler.handle(args).then(response => {
48 | if (!response) {
49 | return caches.match('pages/offline.html');
50 | } else if (response.status === 404) {
51 | return caches.match('pages/404.html');
52 | }
53 | return response;
54 | });
55 | });
56 |
57 | const postHandler = workbox.strategies.cacheFirst({
58 | cacheName: 'posts-cache',
59 | plugins: [
60 | new workbox.expiration.Plugin({
61 | maxEntries: 50,
62 | })
63 | ]
64 | });
65 |
66 | workbox.routing.registerRoute(/(.*)pages\/post(.*)\.html/, args => {
67 | return postHandler.handle(args).then(response => {
68 | if (response.status === 404) {
69 | return caches.match('pages/404.html');
70 | }
71 | return response;
72 | })
73 | .catch(function() {
74 | return caches.match('pages/offline.html');
75 | });
76 | });
77 |
78 | } else {
79 | console.log(`Boo! Workbox didn't load 😬`);
80 | }
81 |
--------------------------------------------------------------------------------
/solution/workbox-config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "globDirectory": "build/",
3 | "globPatterns": [
4 | "**/*.css",
5 | "index.html",
6 | "js/animation.js",
7 | "images/home/*.jpg",
8 | "images/icon/*.svg",
9 | "pages/offline.html",
10 | "pages/404.html"
11 | ],
12 | "swSrc": "src/sw.js",
13 | "swDest": "build/sw.js",
14 | "globIgnores": [
15 | "../workbox-config.js"
16 | ]
17 | };
18 |
--------------------------------------------------------------------------------