├── .gcloudignore ├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package-lock.json └── package.json /.gcloudignore: -------------------------------------------------------------------------------- 1 | # This file specifies files that are *not* uploaded to Google Cloud Platform 2 | # using gcloud. It follows the same syntax as .gitignore, with the addition of 3 | # "#!include" directives (which insert the entries of the given .gitignore-style 4 | # file at that point). 5 | # 6 | # For more information, run: 7 | # $ gcloud topic gcloudignore 8 | # 9 | .gcloudignore 10 | # If you would like to upload your .git directory, .gitignore file or files 11 | # from your .gitignore file, remove the corresponding line 12 | # below: 13 | .git 14 | .gitignore 15 | 16 | node_modules 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (https://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # TypeScript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | # next.js build output 61 | .next 62 | -------------------------------------------------------------------------------- /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 | # cloud-build-badge 2 | 3 | Add cloud build badges in 2 minutes. 4 | 5 | 1) Create a cloud storage bucket ([tutorial here](https://cloud.google.com/storage/docs/creating-buckets)). 6 | 2) Create a folder in the bucket named `build`. 7 | 3) Download [failure](https://storage.googleapis.com/tensortask-static/build/failure.svg) and [success](https://storage.googleapis.com/tensortask-static/build/success.svg) badges (follow links and save). 8 | 4) Upload both badges to the google storage bucket/folder created in the previous step (e.g. `YOUR_BUCKET/build/success.svg`). 9 | 5) Create a placeholder for your badge (e.g. `YOUR_BUCKET/build/BADGE_ID.svg` (make permissions public). 10 | 6) Set ENV Variables. 11 | 12 | ```bash 13 | export REPO="YOUR_REPO" // e.g. github_sbsends_cloud_build_badge 14 | export BRANCH="YOUR_BRANCH" // e.g. master 15 | export BUCKET="YOUR_BUCKET" // e.g. my-gcp-bucket 16 | export BADGE="PATH_TO_PUBLIC_BADGE" // e.g. cbb-master-badge 17 | ``` 18 | 19 | 7) Clone this repository into any directory. 20 | 21 | `git clone https://github.com/sbsends/cloud-build-badge.git` 22 | 23 | `cd cloud-build-badge` 24 | 25 | 8) Use regular expressions to alter the index.js file (the cloud function). 26 | 27 | `sed -i.tmp -e "s/\${repo}/$REPO/" -e "s/\${branch}/$BRANCH/" -e "s/\${bucket}/$BUCKET/" -e "s/\${badge}/$BADGE/" index.js && rm index.js.tmp` 28 | 29 | 9) Deploy the cloud function as the badge name and set the function trigger to the cloud-builds pubsub topic. 30 | 31 | `gcloud functions deploy $BADGE --runtime nodejs6 --trigger-resource cloud-builds --trigger-event google.pubsub.topic.publish` 32 | 33 | 10) Add badge to README.md 34 | ``` 35 | # README.md 36 | [![cloud build status](https://storage.googleapis.com//build/.svg)](https://github.com/sbsends/cloud-build-badge) 37 | ``` 38 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * gcloud functions deploy --runtime nodejs6 --trigger-resource cloud-builds --trigger-event google.pubsub.topic.publish 3 | * @param {object} event The Cloud Functions event. 4 | * @param {function} callback The callback function. 5 | */ 6 | const { Storage } = require('@google-cloud/storage'); 7 | 8 | exports.${badge} = (event, callback) => { 9 | const pubsubMessage = event.data; 10 | if (pubsubMessage.data) { 11 | buildResource = JSON.parse(Buffer.from(pubsubMessage.data, 'base64').toString()) 12 | if (buildResource.source) { 13 | if (buildResource.source.repoSource.repoName && buildResource.source.repoSource.branchName) { 14 | repo = buildResource.source.repoSource.repoName === "${repo}"; 15 | branch = buildResource.source.repoSource.branchName === "${branch}"; 16 | } 17 | } else { 18 | callback(); 19 | } 20 | if (buildResource.status) { 21 | status = buildResource.status; 22 | } else { 23 | callback(); 24 | } 25 | 26 | const storage = new Storage(); 27 | if (repo && branch && status == "SUCCESS") { 28 | storage.bucket("${bucket}") 29 | .file("build/success.svg") 30 | .copy(storage.bucket("${bucket}") 31 | .file("build/${badge}.svg")); 32 | console.log("switched badge to build success") 33 | } 34 | if (repo && branch && status == "FAILURE") { 35 | storage.bucket("${bucket}") 36 | .file("build/failure.svg") 37 | .copy(storage.bucket("${bucket}") 38 | .file("build/${badge}.svg")); 39 | console.log("switched badge to build failure") 40 | } 41 | } 42 | callback(); 43 | }; 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cloudbuildbadge", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "@google-cloud/common": { 8 | "version": "0.26.2", 9 | "resolved": "https://registry.npmjs.org/@google-cloud/common/-/common-0.26.2.tgz", 10 | "integrity": "sha512-xJ2M/q3MrUbnYZuFlpF01caAlEhAUoRn0NXp93Hn3pkFpfSOG8YfbKbpBAHvcKVbBOAKVIwPsleNtuyuabUwLQ==", 11 | "requires": { 12 | "@google-cloud/projectify": "^0.3.2", 13 | "@google-cloud/promisify": "^0.3.0", 14 | "@types/duplexify": "^3.5.0", 15 | "@types/request": "^2.47.0", 16 | "arrify": "^1.0.1", 17 | "duplexify": "^3.6.0", 18 | "ent": "^2.2.0", 19 | "extend": "^3.0.1", 20 | "google-auth-library": "^2.0.0", 21 | "pify": "^4.0.0", 22 | "retry-request": "^4.0.0", 23 | "through2": "^3.0.0" 24 | } 25 | }, 26 | "@google-cloud/paginator": { 27 | "version": "0.1.2", 28 | "resolved": "https://registry.npmjs.org/@google-cloud/paginator/-/paginator-0.1.2.tgz", 29 | "integrity": "sha512-XL09cuPSEPyyNifavxWJRYkUFr5zCJ9njcFjqc1AqSQ2QIKycwdTxOP/zHsAWj0xN3rw1ApevA8o+8VAD4R6hw==", 30 | "requires": { 31 | "arrify": "^1.0.1", 32 | "extend": "^3.0.1", 33 | "is": "^3.2.1", 34 | "split-array-stream": "^2.0.0", 35 | "stream-events": "^1.0.4" 36 | } 37 | }, 38 | "@google-cloud/projectify": { 39 | "version": "0.3.2", 40 | "resolved": "https://registry.npmjs.org/@google-cloud/projectify/-/projectify-0.3.2.tgz", 41 | "integrity": "sha512-t1bs5gE105IpgikX7zPCJZzVyXM5xZ/1kJomUPim2E2pNp4OUUFNyvKm/T2aM6GBP2F30o8abCD+/wbOhHWYYA==" 42 | }, 43 | "@google-cloud/promisify": { 44 | "version": "0.3.1", 45 | "resolved": "https://registry.npmjs.org/@google-cloud/promisify/-/promisify-0.3.1.tgz", 46 | "integrity": "sha512-QzB0/IMvB0eFxFK7Eqh+bfC8NLv3E9ScjWQrPOk6GgfNroxcVITdTlT8NRsRrcp5+QQJVPLkRqKG0PUdaWXmHw==" 47 | }, 48 | "@google-cloud/storage": { 49 | "version": "2.3.1", 50 | "resolved": "https://registry.npmjs.org/@google-cloud/storage/-/storage-2.3.1.tgz", 51 | "integrity": "sha512-AXfze/I1J6NNk9yuyuKgYL2E1qxS7nvDGFvwitUyAb0FgDEA5UpXiKbDWouu4mwqVMYWl7HXlQiLUSkYNXMB1w==", 52 | "requires": { 53 | "@google-cloud/common": "^0.26.0", 54 | "@google-cloud/paginator": "^0.1.0", 55 | "@google-cloud/promisify": "^0.3.0", 56 | "arrify": "^1.0.0", 57 | "async": "^2.0.1", 58 | "compressible": "^2.0.12", 59 | "concat-stream": "^1.5.0", 60 | "duplexify": "^3.5.0", 61 | "extend": "^3.0.0", 62 | "gcs-resumable-upload": "^0.13.0", 63 | "hash-stream-validation": "^0.2.1", 64 | "mime": "^2.2.0", 65 | "mime-types": "^2.0.8", 66 | "once": "^1.3.1", 67 | "pumpify": "^1.5.1", 68 | "snakeize": "^0.1.0", 69 | "stream-events": "^1.0.1", 70 | "teeny-request": "^3.11.0", 71 | "through2": "^3.0.0", 72 | "xdg-basedir": "^3.0.0" 73 | } 74 | }, 75 | "@types/caseless": { 76 | "version": "0.12.1", 77 | "resolved": "https://registry.npmjs.org/@types/caseless/-/caseless-0.12.1.tgz", 78 | "integrity": "sha512-FhlMa34NHp9K5MY1Uz8yb+ZvuX0pnvn3jScRSNAb75KHGB8d3rEU6hqMs3Z2vjuytcMfRg6c5CHMc3wtYyD2/A==" 79 | }, 80 | "@types/duplexify": { 81 | "version": "3.6.0", 82 | "resolved": "https://registry.npmjs.org/@types/duplexify/-/duplexify-3.6.0.tgz", 83 | "integrity": "sha512-5zOA53RUlzN74bvrSGwjudssD9F3a797sDZQkiYpUOxW+WHaXTCPz4/d5Dgi6FKnOqZ2CpaTo0DhgIfsXAOE/A==", 84 | "requires": { 85 | "@types/node": "*" 86 | } 87 | }, 88 | "@types/form-data": { 89 | "version": "2.2.1", 90 | "resolved": "https://registry.npmjs.org/@types/form-data/-/form-data-2.2.1.tgz", 91 | "integrity": "sha512-JAMFhOaHIciYVh8fb5/83nmuO/AHwmto+Hq7a9y8FzLDcC1KCU344XDOMEmahnrTFlHjgh4L0WJFczNIX2GxnQ==", 92 | "requires": { 93 | "@types/node": "*" 94 | } 95 | }, 96 | "@types/node": { 97 | "version": "10.12.9", 98 | "resolved": "https://registry.npmjs.org/@types/node/-/node-10.12.9.tgz", 99 | "integrity": "sha512-eajkMXG812/w3w4a1OcBlaTwsFPO5F7fJ/amy+tieQxEMWBlbV1JGSjkFM+zkHNf81Cad+dfIRA+IBkvmvdAeA==" 100 | }, 101 | "@types/request": { 102 | "version": "2.48.1", 103 | "resolved": "https://registry.npmjs.org/@types/request/-/request-2.48.1.tgz", 104 | "integrity": "sha512-ZgEZ1TiD+KGA9LiAAPPJL68Id2UWfeSO62ijSXZjFJArVV+2pKcsVHmrcu+1oiE3q6eDGiFiSolRc4JHoerBBg==", 105 | "requires": { 106 | "@types/caseless": "*", 107 | "@types/form-data": "*", 108 | "@types/node": "*", 109 | "@types/tough-cookie": "*" 110 | } 111 | }, 112 | "@types/tough-cookie": { 113 | "version": "2.3.4", 114 | "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-2.3.4.tgz", 115 | "integrity": "sha512-Set5ZdrAaKI/qHdFlVMgm/GsAv/wkXhSTuZFkJ+JI7HK+wIkIlOaUXSXieIvJ0+OvGIqtREFoE+NHJtEq0gtEw==" 116 | }, 117 | "agent-base": { 118 | "version": "4.2.1", 119 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.2.1.tgz", 120 | "integrity": "sha512-JVwXMr9nHYTUXsBFKUqhJwvlcYU/blreOEUkhNR2eXZIvwd+c+o5V4MgDPKWnMS/56awN3TRzIP+KoPn+roQtg==", 121 | "requires": { 122 | "es6-promisify": "^5.0.0" 123 | } 124 | }, 125 | "ajv": { 126 | "version": "6.5.5", 127 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.5.tgz", 128 | "integrity": "sha512-7q7gtRQDJSyuEHjuVgHoUa2VuemFiCMrfQc9Tc08XTAc4Zj/5U1buQJ0HU6i7fKjXU09SVgSmxa4sLvuvS8Iyg==", 129 | "requires": { 130 | "fast-deep-equal": "^2.0.1", 131 | "fast-json-stable-stringify": "^2.0.0", 132 | "json-schema-traverse": "^0.4.1", 133 | "uri-js": "^4.2.2" 134 | } 135 | }, 136 | "arrify": { 137 | "version": "1.0.1", 138 | "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", 139 | "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" 140 | }, 141 | "asn1": { 142 | "version": "0.2.4", 143 | "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", 144 | "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", 145 | "requires": { 146 | "safer-buffer": "~2.1.0" 147 | } 148 | }, 149 | "assert-plus": { 150 | "version": "1.0.0", 151 | "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", 152 | "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" 153 | }, 154 | "async": { 155 | "version": "2.6.1", 156 | "resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz", 157 | "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==", 158 | "requires": { 159 | "lodash": "^4.17.10" 160 | } 161 | }, 162 | "asynckit": { 163 | "version": "0.4.0", 164 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 165 | "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" 166 | }, 167 | "aws-sign2": { 168 | "version": "0.7.0", 169 | "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", 170 | "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" 171 | }, 172 | "aws4": { 173 | "version": "1.8.0", 174 | "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", 175 | "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" 176 | }, 177 | "axios": { 178 | "version": "0.18.0", 179 | "resolved": "http://registry.npmjs.org/axios/-/axios-0.18.0.tgz", 180 | "integrity": "sha1-MtU+SFHv3AoRmTts0AB4nXDAUQI=", 181 | "requires": { 182 | "follow-redirects": "^1.3.0", 183 | "is-buffer": "^1.1.5" 184 | } 185 | }, 186 | "bcrypt-pbkdf": { 187 | "version": "1.0.2", 188 | "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", 189 | "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", 190 | "requires": { 191 | "tweetnacl": "^0.14.3" 192 | } 193 | }, 194 | "buffer-equal-constant-time": { 195 | "version": "1.0.1", 196 | "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", 197 | "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=" 198 | }, 199 | "buffer-from": { 200 | "version": "1.1.1", 201 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", 202 | "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" 203 | }, 204 | "caseless": { 205 | "version": "0.12.0", 206 | "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", 207 | "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" 208 | }, 209 | "combined-stream": { 210 | "version": "1.0.7", 211 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz", 212 | "integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==", 213 | "requires": { 214 | "delayed-stream": "~1.0.0" 215 | } 216 | }, 217 | "compressible": { 218 | "version": "2.0.15", 219 | "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.15.tgz", 220 | "integrity": "sha512-4aE67DL33dSW9gw4CI2H/yTxqHLNcxp0yS6jB+4h+wr3e43+1z7vm0HU9qXOH8j+qjKuL8+UtkOxYQSMq60Ylw==", 221 | "requires": { 222 | "mime-db": ">= 1.36.0 < 2" 223 | } 224 | }, 225 | "concat-stream": { 226 | "version": "1.6.2", 227 | "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", 228 | "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", 229 | "requires": { 230 | "buffer-from": "^1.0.0", 231 | "inherits": "^2.0.3", 232 | "readable-stream": "^2.2.2", 233 | "typedarray": "^0.0.6" 234 | } 235 | }, 236 | "configstore": { 237 | "version": "4.0.0", 238 | "resolved": "https://registry.npmjs.org/configstore/-/configstore-4.0.0.tgz", 239 | "integrity": "sha512-CmquAXFBocrzaSM8mtGPMM/HiWmyIpr4CcJl/rgY2uCObZ/S7cKU0silxslqJejl+t/T9HS8E0PUNQD81JGUEQ==", 240 | "requires": { 241 | "dot-prop": "^4.1.0", 242 | "graceful-fs": "^4.1.2", 243 | "make-dir": "^1.0.0", 244 | "unique-string": "^1.0.0", 245 | "write-file-atomic": "^2.0.0", 246 | "xdg-basedir": "^3.0.0" 247 | } 248 | }, 249 | "core-util-is": { 250 | "version": "1.0.2", 251 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", 252 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" 253 | }, 254 | "crypto-random-string": { 255 | "version": "1.0.0", 256 | "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", 257 | "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=" 258 | }, 259 | "dashdash": { 260 | "version": "1.14.1", 261 | "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", 262 | "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", 263 | "requires": { 264 | "assert-plus": "^1.0.0" 265 | } 266 | }, 267 | "debug": { 268 | "version": "3.1.0", 269 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", 270 | "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", 271 | "requires": { 272 | "ms": "2.0.0" 273 | } 274 | }, 275 | "delayed-stream": { 276 | "version": "1.0.0", 277 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 278 | "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" 279 | }, 280 | "dot-prop": { 281 | "version": "4.2.0", 282 | "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz", 283 | "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==", 284 | "requires": { 285 | "is-obj": "^1.0.0" 286 | } 287 | }, 288 | "duplexify": { 289 | "version": "3.6.1", 290 | "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.6.1.tgz", 291 | "integrity": "sha512-vM58DwdnKmty+FSPzT14K9JXb90H+j5emaR4KYbr2KTIz00WHGbWOe5ghQTx233ZCLZtrGDALzKwcjEtSt35mA==", 292 | "requires": { 293 | "end-of-stream": "^1.0.0", 294 | "inherits": "^2.0.1", 295 | "readable-stream": "^2.0.0", 296 | "stream-shift": "^1.0.0" 297 | } 298 | }, 299 | "ecc-jsbn": { 300 | "version": "0.1.2", 301 | "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", 302 | "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", 303 | "requires": { 304 | "jsbn": "~0.1.0", 305 | "safer-buffer": "^2.1.0" 306 | } 307 | }, 308 | "ecdsa-sig-formatter": { 309 | "version": "1.0.10", 310 | "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.10.tgz", 311 | "integrity": "sha1-HFlQAPBKiJffuFAAiSoPTDOvhsM=", 312 | "requires": { 313 | "safe-buffer": "^5.0.1" 314 | } 315 | }, 316 | "end-of-stream": { 317 | "version": "1.4.1", 318 | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", 319 | "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", 320 | "requires": { 321 | "once": "^1.4.0" 322 | } 323 | }, 324 | "ent": { 325 | "version": "2.2.0", 326 | "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz", 327 | "integrity": "sha1-6WQhkyWiHQX0RGai9obtbOX13R0=" 328 | }, 329 | "es6-promise": { 330 | "version": "4.2.5", 331 | "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.5.tgz", 332 | "integrity": "sha512-n6wvpdE43VFtJq+lUDYDBFUwV8TZbuGXLV4D6wKafg13ldznKsyEvatubnmUe31zcvelSzOHF+XbaT+Bl9ObDg==" 333 | }, 334 | "es6-promisify": { 335 | "version": "5.0.0", 336 | "resolved": "http://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", 337 | "integrity": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=", 338 | "requires": { 339 | "es6-promise": "^4.0.3" 340 | } 341 | }, 342 | "extend": { 343 | "version": "3.0.2", 344 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 345 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" 346 | }, 347 | "extsprintf": { 348 | "version": "1.3.0", 349 | "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", 350 | "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" 351 | }, 352 | "fast-deep-equal": { 353 | "version": "2.0.1", 354 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", 355 | "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=" 356 | }, 357 | "fast-json-stable-stringify": { 358 | "version": "2.0.0", 359 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", 360 | "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" 361 | }, 362 | "follow-redirects": { 363 | "version": "1.5.9", 364 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.9.tgz", 365 | "integrity": "sha512-Bh65EZI/RU8nx0wbYF9shkFZlqLP+6WT/5FnA3cE/djNSuKNHJEinGGZgu/cQEkeeb2GdFOgenAmn8qaqYke2w==", 366 | "requires": { 367 | "debug": "=3.1.0" 368 | } 369 | }, 370 | "forever-agent": { 371 | "version": "0.6.1", 372 | "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", 373 | "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" 374 | }, 375 | "form-data": { 376 | "version": "2.3.3", 377 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", 378 | "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", 379 | "requires": { 380 | "asynckit": "^0.4.0", 381 | "combined-stream": "^1.0.6", 382 | "mime-types": "^2.1.12" 383 | } 384 | }, 385 | "gcp-metadata": { 386 | "version": "0.7.0", 387 | "resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-0.7.0.tgz", 388 | "integrity": "sha512-ffjC09amcDWjh3VZdkDngIo7WoluyC5Ag9PAYxZbmQLOLNI8lvPtoKTSCyU54j2gwy5roZh6sSMTfkY2ct7K3g==", 389 | "requires": { 390 | "axios": "^0.18.0", 391 | "extend": "^3.0.1", 392 | "retry-axios": "0.3.2" 393 | } 394 | }, 395 | "gcs-resumable-upload": { 396 | "version": "0.13.0", 397 | "resolved": "https://registry.npmjs.org/gcs-resumable-upload/-/gcs-resumable-upload-0.13.0.tgz", 398 | "integrity": "sha512-hrSYPFJWyx8FDLJEK3XeqbNcCjkRqcuKSaUxL1RpwEAWAxtV+AdUH+NX3n7st/U6/JddQkdb1mmWAy3jgRDflw==", 399 | "requires": { 400 | "axios": "^0.18.0", 401 | "configstore": "^4.0.0", 402 | "google-auth-library": "^2.0.0", 403 | "pumpify": "^1.5.1", 404 | "request": "^2.87.0", 405 | "stream-events": "^1.0.4" 406 | } 407 | }, 408 | "getpass": { 409 | "version": "0.1.7", 410 | "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", 411 | "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", 412 | "requires": { 413 | "assert-plus": "^1.0.0" 414 | } 415 | }, 416 | "google-auth-library": { 417 | "version": "2.0.1", 418 | "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-2.0.1.tgz", 419 | "integrity": "sha512-CWLKZxqYw4SE+fE3GWbVT9r/10h75w8lB3cdmmLpLtCfccFDcsI84qI5rx7npemlrHtKJh3C2HUz4s6SihCeIQ==", 420 | "requires": { 421 | "axios": "^0.18.0", 422 | "gcp-metadata": "^0.7.0", 423 | "gtoken": "^2.3.0", 424 | "https-proxy-agent": "^2.2.1", 425 | "jws": "^3.1.5", 426 | "lodash.isstring": "^4.0.1", 427 | "lru-cache": "^4.1.3", 428 | "semver": "^5.5.0" 429 | } 430 | }, 431 | "google-p12-pem": { 432 | "version": "1.0.2", 433 | "resolved": "http://registry.npmjs.org/google-p12-pem/-/google-p12-pem-1.0.2.tgz", 434 | "integrity": "sha512-+EuKr4CLlGsnXx4XIJIVkcKYrsa2xkAmCvxRhX2HsazJzUBAJ35wARGeApHUn4nNfPD03Vl057FskNr20VaCyg==", 435 | "requires": { 436 | "node-forge": "^0.7.4", 437 | "pify": "^3.0.0" 438 | }, 439 | "dependencies": { 440 | "pify": { 441 | "version": "3.0.0", 442 | "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", 443 | "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" 444 | } 445 | } 446 | }, 447 | "graceful-fs": { 448 | "version": "4.1.15", 449 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", 450 | "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==" 451 | }, 452 | "gtoken": { 453 | "version": "2.3.0", 454 | "resolved": "http://registry.npmjs.org/gtoken/-/gtoken-2.3.0.tgz", 455 | "integrity": "sha512-Jc9/8mV630cZE9FC5tIlJCZNdUjwunvlwOtCz6IDlaiB4Sz68ki29a1+q97sWTnTYroiuF9B135rod9zrQdHLw==", 456 | "requires": { 457 | "axios": "^0.18.0", 458 | "google-p12-pem": "^1.0.0", 459 | "jws": "^3.1.4", 460 | "mime": "^2.2.0", 461 | "pify": "^3.0.0" 462 | }, 463 | "dependencies": { 464 | "pify": { 465 | "version": "3.0.0", 466 | "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", 467 | "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" 468 | } 469 | } 470 | }, 471 | "har-schema": { 472 | "version": "2.0.0", 473 | "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", 474 | "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" 475 | }, 476 | "har-validator": { 477 | "version": "5.1.3", 478 | "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", 479 | "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", 480 | "requires": { 481 | "ajv": "^6.5.5", 482 | "har-schema": "^2.0.0" 483 | } 484 | }, 485 | "hash-stream-validation": { 486 | "version": "0.2.1", 487 | "resolved": "https://registry.npmjs.org/hash-stream-validation/-/hash-stream-validation-0.2.1.tgz", 488 | "integrity": "sha1-7Mm5l7IYvluzEphii7gHhptz3NE=", 489 | "requires": { 490 | "through2": "^2.0.0" 491 | }, 492 | "dependencies": { 493 | "through2": { 494 | "version": "2.0.5", 495 | "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", 496 | "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", 497 | "requires": { 498 | "readable-stream": "~2.3.6", 499 | "xtend": "~4.0.1" 500 | } 501 | } 502 | } 503 | }, 504 | "http-signature": { 505 | "version": "1.2.0", 506 | "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", 507 | "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", 508 | "requires": { 509 | "assert-plus": "^1.0.0", 510 | "jsprim": "^1.2.2", 511 | "sshpk": "^1.7.0" 512 | } 513 | }, 514 | "https-proxy-agent": { 515 | "version": "2.2.1", 516 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz", 517 | "integrity": "sha512-HPCTS1LW51bcyMYbxUIOO4HEOlQ1/1qRaFWcyxvwaqUS9TY88aoEuHUY33kuAh1YhVVaDQhLZsnPd+XNARWZlQ==", 518 | "requires": { 519 | "agent-base": "^4.1.0", 520 | "debug": "^3.1.0" 521 | } 522 | }, 523 | "imurmurhash": { 524 | "version": "0.1.4", 525 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 526 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" 527 | }, 528 | "inherits": { 529 | "version": "2.0.3", 530 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", 531 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" 532 | }, 533 | "is": { 534 | "version": "3.2.1", 535 | "resolved": "https://registry.npmjs.org/is/-/is-3.2.1.tgz", 536 | "integrity": "sha1-0Kwq1V63sL7JJqUmb2xmKqqD3KU=" 537 | }, 538 | "is-buffer": { 539 | "version": "1.1.6", 540 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", 541 | "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" 542 | }, 543 | "is-obj": { 544 | "version": "1.0.1", 545 | "resolved": "http://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", 546 | "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" 547 | }, 548 | "is-stream-ended": { 549 | "version": "0.1.4", 550 | "resolved": "https://registry.npmjs.org/is-stream-ended/-/is-stream-ended-0.1.4.tgz", 551 | "integrity": "sha512-xj0XPvmr7bQFTvirqnFr50o0hQIh6ZItDqloxt5aJrR4NQsYeSsyFQERYGCAzfindAcnKjINnwEEgLx4IqVzQw==" 552 | }, 553 | "is-typedarray": { 554 | "version": "1.0.0", 555 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", 556 | "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" 557 | }, 558 | "isarray": { 559 | "version": "1.0.0", 560 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 561 | "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" 562 | }, 563 | "isstream": { 564 | "version": "0.1.2", 565 | "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", 566 | "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" 567 | }, 568 | "jsbn": { 569 | "version": "0.1.1", 570 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", 571 | "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" 572 | }, 573 | "json-schema": { 574 | "version": "0.2.3", 575 | "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", 576 | "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" 577 | }, 578 | "json-schema-traverse": { 579 | "version": "0.4.1", 580 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 581 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" 582 | }, 583 | "json-stringify-safe": { 584 | "version": "5.0.1", 585 | "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", 586 | "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" 587 | }, 588 | "jsprim": { 589 | "version": "1.4.1", 590 | "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", 591 | "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", 592 | "requires": { 593 | "assert-plus": "1.0.0", 594 | "extsprintf": "1.3.0", 595 | "json-schema": "0.2.3", 596 | "verror": "1.10.0" 597 | } 598 | }, 599 | "jwa": { 600 | "version": "1.1.6", 601 | "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.1.6.tgz", 602 | "integrity": "sha512-tBO/cf++BUsJkYql/kBbJroKOgHWEigTKBAjjBEmrMGYd1QMBC74Hr4Wo2zCZw6ZrVhlJPvoMrkcOnlWR/DJfw==", 603 | "requires": { 604 | "buffer-equal-constant-time": "1.0.1", 605 | "ecdsa-sig-formatter": "1.0.10", 606 | "safe-buffer": "^5.0.1" 607 | } 608 | }, 609 | "jws": { 610 | "version": "3.1.5", 611 | "resolved": "https://registry.npmjs.org/jws/-/jws-3.1.5.tgz", 612 | "integrity": "sha512-GsCSexFADNQUr8T5HPJvayTjvPIfoyJPtLQBwn5a4WZQchcrPMPMAWcC1AzJVRDKyD6ZPROPAxgv6rfHViO4uQ==", 613 | "requires": { 614 | "jwa": "^1.1.5", 615 | "safe-buffer": "^5.0.1" 616 | } 617 | }, 618 | "lodash": { 619 | "version": "4.17.11", 620 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", 621 | "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" 622 | }, 623 | "lodash.isstring": { 624 | "version": "4.0.1", 625 | "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", 626 | "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" 627 | }, 628 | "lru-cache": { 629 | "version": "4.1.3", 630 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz", 631 | "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==", 632 | "requires": { 633 | "pseudomap": "^1.0.2", 634 | "yallist": "^2.1.2" 635 | } 636 | }, 637 | "make-dir": { 638 | "version": "1.3.0", 639 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", 640 | "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", 641 | "requires": { 642 | "pify": "^3.0.0" 643 | }, 644 | "dependencies": { 645 | "pify": { 646 | "version": "3.0.0", 647 | "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", 648 | "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" 649 | } 650 | } 651 | }, 652 | "mime": { 653 | "version": "2.3.1", 654 | "resolved": "https://registry.npmjs.org/mime/-/mime-2.3.1.tgz", 655 | "integrity": "sha512-OEUllcVoydBHGN1z84yfQDimn58pZNNNXgZlHXSboxMlFvgI6MXSWpWKpFRra7H1HxpVhHTkrghfRW49k6yjeg==" 656 | }, 657 | "mime-db": { 658 | "version": "1.37.0", 659 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.37.0.tgz", 660 | "integrity": "sha512-R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg==" 661 | }, 662 | "mime-types": { 663 | "version": "2.1.21", 664 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.21.tgz", 665 | "integrity": "sha512-3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg==", 666 | "requires": { 667 | "mime-db": "~1.37.0" 668 | } 669 | }, 670 | "ms": { 671 | "version": "2.0.0", 672 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 673 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" 674 | }, 675 | "node-fetch": { 676 | "version": "2.3.0", 677 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.3.0.tgz", 678 | "integrity": "sha512-MOd8pV3fxENbryESLgVIeaGKrdl+uaYhCSSVkjeOb/31/njTpcis5aWfdqgNlHIrKOLRbMnfPINPOML2CIFeXA==" 679 | }, 680 | "node-forge": { 681 | "version": "0.7.6", 682 | "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.6.tgz", 683 | "integrity": "sha512-sol30LUpz1jQFBjOKwbjxijiE3b6pjd74YwfD0fJOKPjF+fONKb2Yg8rYgS6+bK6VDl+/wfr4IYpC7jDzLUIfw==" 684 | }, 685 | "oauth-sign": { 686 | "version": "0.9.0", 687 | "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", 688 | "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" 689 | }, 690 | "once": { 691 | "version": "1.4.0", 692 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 693 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 694 | "requires": { 695 | "wrappy": "1" 696 | } 697 | }, 698 | "performance-now": { 699 | "version": "2.1.0", 700 | "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", 701 | "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" 702 | }, 703 | "pify": { 704 | "version": "4.0.1", 705 | "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", 706 | "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" 707 | }, 708 | "process-nextick-args": { 709 | "version": "2.0.0", 710 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", 711 | "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" 712 | }, 713 | "pseudomap": { 714 | "version": "1.0.2", 715 | "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", 716 | "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" 717 | }, 718 | "psl": { 719 | "version": "1.1.29", 720 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz", 721 | "integrity": "sha512-AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ==" 722 | }, 723 | "pump": { 724 | "version": "2.0.1", 725 | "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", 726 | "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", 727 | "requires": { 728 | "end-of-stream": "^1.1.0", 729 | "once": "^1.3.1" 730 | } 731 | }, 732 | "pumpify": { 733 | "version": "1.5.1", 734 | "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", 735 | "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", 736 | "requires": { 737 | "duplexify": "^3.6.0", 738 | "inherits": "^2.0.3", 739 | "pump": "^2.0.0" 740 | } 741 | }, 742 | "punycode": { 743 | "version": "2.1.1", 744 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", 745 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" 746 | }, 747 | "qs": { 748 | "version": "6.5.2", 749 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", 750 | "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" 751 | }, 752 | "readable-stream": { 753 | "version": "2.3.6", 754 | "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", 755 | "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", 756 | "requires": { 757 | "core-util-is": "~1.0.0", 758 | "inherits": "~2.0.3", 759 | "isarray": "~1.0.0", 760 | "process-nextick-args": "~2.0.0", 761 | "safe-buffer": "~5.1.1", 762 | "string_decoder": "~1.1.1", 763 | "util-deprecate": "~1.0.1" 764 | } 765 | }, 766 | "request": { 767 | "version": "2.88.0", 768 | "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", 769 | "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", 770 | "requires": { 771 | "aws-sign2": "~0.7.0", 772 | "aws4": "^1.8.0", 773 | "caseless": "~0.12.0", 774 | "combined-stream": "~1.0.6", 775 | "extend": "~3.0.2", 776 | "forever-agent": "~0.6.1", 777 | "form-data": "~2.3.2", 778 | "har-validator": "~5.1.0", 779 | "http-signature": "~1.2.0", 780 | "is-typedarray": "~1.0.0", 781 | "isstream": "~0.1.2", 782 | "json-stringify-safe": "~5.0.1", 783 | "mime-types": "~2.1.19", 784 | "oauth-sign": "~0.9.0", 785 | "performance-now": "^2.1.0", 786 | "qs": "~6.5.2", 787 | "safe-buffer": "^5.1.2", 788 | "tough-cookie": "~2.4.3", 789 | "tunnel-agent": "^0.6.0", 790 | "uuid": "^3.3.2" 791 | } 792 | }, 793 | "retry-axios": { 794 | "version": "0.3.2", 795 | "resolved": "https://registry.npmjs.org/retry-axios/-/retry-axios-0.3.2.tgz", 796 | "integrity": "sha512-jp4YlI0qyDFfXiXGhkCOliBN1G7fRH03Nqy8YdShzGqbY5/9S2x/IR6C88ls2DFkbWuL3ASkP7QD3pVrNpPgwQ==" 797 | }, 798 | "retry-request": { 799 | "version": "4.0.0", 800 | "resolved": "https://registry.npmjs.org/retry-request/-/retry-request-4.0.0.tgz", 801 | "integrity": "sha512-S4HNLaWcMP6r8E4TMH52Y7/pM8uNayOcTDDQNBwsCccL1uI+Ol2TljxRDPzaNfbhOB30+XWP5NnZkB3LiJxi1w==", 802 | "requires": { 803 | "through2": "^2.0.0" 804 | }, 805 | "dependencies": { 806 | "through2": { 807 | "version": "2.0.5", 808 | "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", 809 | "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", 810 | "requires": { 811 | "readable-stream": "~2.3.6", 812 | "xtend": "~4.0.1" 813 | } 814 | } 815 | } 816 | }, 817 | "safe-buffer": { 818 | "version": "5.1.2", 819 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 820 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 821 | }, 822 | "safer-buffer": { 823 | "version": "2.1.2", 824 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 825 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 826 | }, 827 | "semver": { 828 | "version": "5.6.0", 829 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz", 830 | "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==" 831 | }, 832 | "signal-exit": { 833 | "version": "3.0.2", 834 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", 835 | "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" 836 | }, 837 | "snakeize": { 838 | "version": "0.1.0", 839 | "resolved": "https://registry.npmjs.org/snakeize/-/snakeize-0.1.0.tgz", 840 | "integrity": "sha1-EMCI2LWOsHazIpu1oE4jLOEmQi0=" 841 | }, 842 | "split-array-stream": { 843 | "version": "2.0.0", 844 | "resolved": "https://registry.npmjs.org/split-array-stream/-/split-array-stream-2.0.0.tgz", 845 | "integrity": "sha512-hmMswlVY91WvGMxs0k8MRgq8zb2mSen4FmDNc5AFiTWtrBpdZN6nwD6kROVe4vNL+ywrvbCKsWVCnEd4riELIg==", 846 | "requires": { 847 | "is-stream-ended": "^0.1.4" 848 | } 849 | }, 850 | "sshpk": { 851 | "version": "1.15.2", 852 | "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.15.2.tgz", 853 | "integrity": "sha512-Ra/OXQtuh0/enyl4ETZAfTaeksa6BXks5ZcjpSUNrjBr0DvrJKX+1fsKDPpT9TBXgHAFsa4510aNVgI8g/+SzA==", 854 | "requires": { 855 | "asn1": "~0.2.3", 856 | "assert-plus": "^1.0.0", 857 | "bcrypt-pbkdf": "^1.0.0", 858 | "dashdash": "^1.12.0", 859 | "ecc-jsbn": "~0.1.1", 860 | "getpass": "^0.1.1", 861 | "jsbn": "~0.1.0", 862 | "safer-buffer": "^2.0.2", 863 | "tweetnacl": "~0.14.0" 864 | } 865 | }, 866 | "stream-events": { 867 | "version": "1.0.5", 868 | "resolved": "https://registry.npmjs.org/stream-events/-/stream-events-1.0.5.tgz", 869 | "integrity": "sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg==", 870 | "requires": { 871 | "stubs": "^3.0.0" 872 | } 873 | }, 874 | "stream-shift": { 875 | "version": "1.0.0", 876 | "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", 877 | "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=" 878 | }, 879 | "string_decoder": { 880 | "version": "1.1.1", 881 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 882 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 883 | "requires": { 884 | "safe-buffer": "~5.1.0" 885 | } 886 | }, 887 | "stubs": { 888 | "version": "3.0.0", 889 | "resolved": "https://registry.npmjs.org/stubs/-/stubs-3.0.0.tgz", 890 | "integrity": "sha1-6NK6H6nJBXAwPAMLaQD31fiavls=" 891 | }, 892 | "teeny-request": { 893 | "version": "3.11.0", 894 | "resolved": "https://registry.npmjs.org/teeny-request/-/teeny-request-3.11.0.tgz", 895 | "integrity": "sha512-bBULmB5Lk2RaEdz2MJMl4+T5+IHSZojDV9ZrxcIv5q1xJvHwCqhfS5nE3JR1D+a4cl6Anhj61CHNuiTM6SRnyg==", 896 | "requires": { 897 | "https-proxy-agent": "^2.2.1", 898 | "node-fetch": "^2.2.0", 899 | "uuid": "^3.3.2" 900 | } 901 | }, 902 | "through2": { 903 | "version": "3.0.0", 904 | "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.0.tgz", 905 | "integrity": "sha512-8B+sevlqP4OiCjonI1Zw03Sf8PuV1eRsYQgLad5eonILOdyeRsY27A/2Ze8IlvlMvq31OH+3fz/styI7Ya62yQ==", 906 | "requires": { 907 | "readable-stream": "2 || 3", 908 | "xtend": "~4.0.1" 909 | } 910 | }, 911 | "tough-cookie": { 912 | "version": "2.4.3", 913 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", 914 | "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", 915 | "requires": { 916 | "psl": "^1.1.24", 917 | "punycode": "^1.4.1" 918 | }, 919 | "dependencies": { 920 | "punycode": { 921 | "version": "1.4.1", 922 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", 923 | "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" 924 | } 925 | } 926 | }, 927 | "tunnel-agent": { 928 | "version": "0.6.0", 929 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", 930 | "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", 931 | "requires": { 932 | "safe-buffer": "^5.0.1" 933 | } 934 | }, 935 | "tweetnacl": { 936 | "version": "0.14.5", 937 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", 938 | "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" 939 | }, 940 | "typedarray": { 941 | "version": "0.0.6", 942 | "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", 943 | "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" 944 | }, 945 | "unique-string": { 946 | "version": "1.0.0", 947 | "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", 948 | "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", 949 | "requires": { 950 | "crypto-random-string": "^1.0.0" 951 | } 952 | }, 953 | "uri-js": { 954 | "version": "4.2.2", 955 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", 956 | "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", 957 | "requires": { 958 | "punycode": "^2.1.0" 959 | } 960 | }, 961 | "util-deprecate": { 962 | "version": "1.0.2", 963 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 964 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" 965 | }, 966 | "uuid": { 967 | "version": "3.3.2", 968 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", 969 | "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" 970 | }, 971 | "verror": { 972 | "version": "1.10.0", 973 | "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", 974 | "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", 975 | "requires": { 976 | "assert-plus": "^1.0.0", 977 | "core-util-is": "1.0.2", 978 | "extsprintf": "^1.2.0" 979 | } 980 | }, 981 | "wrappy": { 982 | "version": "1.0.2", 983 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 984 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" 985 | }, 986 | "write-file-atomic": { 987 | "version": "2.3.0", 988 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz", 989 | "integrity": "sha512-xuPeK4OdjWqtfi59ylvVL0Yn35SF3zgcAcv7rBPFHVaEapaDr4GdGgm3j7ckTwH9wHL7fGmgfAnb0+THrHb8tA==", 990 | "requires": { 991 | "graceful-fs": "^4.1.11", 992 | "imurmurhash": "^0.1.4", 993 | "signal-exit": "^3.0.2" 994 | } 995 | }, 996 | "xdg-basedir": { 997 | "version": "3.0.0", 998 | "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", 999 | "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=" 1000 | }, 1001 | "xtend": { 1002 | "version": "4.0.1", 1003 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", 1004 | "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" 1005 | }, 1006 | "yallist": { 1007 | "version": "2.1.2", 1008 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", 1009 | "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" 1010 | } 1011 | } 1012 | } 1013 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cloudbuildbadge", 3 | "version": "1.0.0", 4 | "description": "A cloud function that changes GitHub badges depending on Cloud Build status.", 5 | "main": "index.js", 6 | "dependencies": { 7 | "@google-cloud/storage": "^2.3.1" 8 | }, 9 | "devDependencies": {}, 10 | "scripts": { 11 | "test": "echo \"Error: no test specified\" && exit 1" 12 | }, 13 | "author": "", 14 | "license": "ISC" 15 | } 16 | --------------------------------------------------------------------------------