├── function-scantrigger-node
├── .gitignore
├── package.json
├── .gcloudignore
├── CONTRIBUTING.md
├── README.md
├── index.js
├── LICENSE
└── package-lock.json
├── .gitignore
├── appengine-malwarescanningservice-node
├── .dockerignore
├── package.json
├── bootstrap.sh
├── Dockerfile
├── CONTRIBUTING.md
├── app.yaml
├── README.md
├── server.js
├── LICENSE
└── package-lock.json
├── CONTRIBUTING.md
├── README.md
└── LICENSE
/function-scantrigger-node/.gitignore:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .DS_Store
3 | .bin
4 | unscanned_files
5 | run.sh
--------------------------------------------------------------------------------
/appengine-malwarescanningservice-node/.dockerignore:
--------------------------------------------------------------------------------
1 | npm_modules
2 | sampleoutput.txt
3 | app.yaml
4 | run.sh
--------------------------------------------------------------------------------
/function-scantrigger-node/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "function_malware_scanner",
3 | "version": "1.0.0",
4 | "description": "Triggers the Malware Scanner service when a document is uploaded to GCS",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "author": "Google Inc.",
10 | "license": "Apache-2.0",
11 | "dependencies": {
12 | "request": "^2.88.0",
13 | "request-promise": "^4.2.4"
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/function-scantrigger-node/.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 | #!include:.gitignore
18 |
--------------------------------------------------------------------------------
/appengine-malwarescanningservice-node/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "clamav_appengine_flex_tutorial",
3 | "version": "1.0.0",
4 | "description": "Service to scan documents for the malware and move the analyzed documents to appropriate buckets",
5 | "main": "index.js",
6 | "scripts": {
7 | "start": "nodemon server.js",
8 | "test": "echo \"Error: no test specified\" && exit 1"
9 | },
10 | "author": "Google Inc.",
11 | "license": "Apache-2.0",
12 | "dependencies": {
13 | "@google-cloud/storage": "^2.4.2",
14 | "body-parser": "^1.18.3",
15 | "clamdjs": "^1.0.1",
16 | "express": "^4.16.4",
17 | "nodemon": "^1.18.10"
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/appengine-malwarescanningservice-node/bootstrap.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # Copyright 2019 Google LLC
4 | #
5 | # Licensed under the Apache License, Version 2.0 (the "License");
6 | # you may not use this file except in compliance with the License.
7 | # You may obtain a copy of the License at
8 | #
9 | # https://www.apache.org/licenses/LICENSE-2.0
10 | #
11 | # Unless required by applicable law or agreed to in writing, software
12 | # distributed under the License is distributed on an "AS IS" BASIS,
13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | # See the License for the specific language governing permissions and
15 | # limitations under the License.
16 |
17 | # Get latest definitions
18 | freshclam
19 |
20 | # Reload Services
21 | service clamav-daemon force-reload
22 | service clamav-freshclam force-reload
23 |
24 | # Run node process
25 | npm start
--------------------------------------------------------------------------------
/appengine-malwarescanningservice-node/Dockerfile:
--------------------------------------------------------------------------------
1 | # Copyright 2019 Google LLC
2 |
3 | # Licensed under the Apache License, Version 2.0 (the "License");
4 | # you may not use this file except in compliance with the License.
5 | # You may obtain a copy of the License at
6 |
7 | # https://www.apache.org/licenses/LICENSE-2.0
8 |
9 | # Unless required by applicable law or agreed to in writing, software
10 | # distributed under the License is distributed on an "AS IS" BASIS,
11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 | # See the License for the specific language governing permissions and
13 | # limitations under the License.
14 |
15 | FROM node:10.15-stretch
16 | WORKDIR /app
17 | COPY . /app
18 | RUN apt-get update && \
19 | npm install && \
20 | apt-get install clamav-daemon -y && \
21 | freshclam && \
22 | echo "TCPSocket 3310" >> /etc/clamav/clamd.conf && \
23 | echo "TCPAddr 127.0.0.1" >> /etc/clamav/clamd.conf && \
24 | mkdir /unscanned_files
25 | CMD ["sh", "bootstrap.sh"]
26 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # How to Contribute
2 |
3 | We'd love to accept your patches and contributions to this project. There are
4 | just a few small guidelines you need to follow.
5 |
6 | ## Contributor License Agreement
7 |
8 | Contributions to this project must be accompanied by a Contributor License
9 | Agreement. You (or your employer) retain the copyright to your contribution;
10 | this simply gives us permission to use and redistribute your contributions as
11 | part of the project. Head over to to see
12 | your current agreements on file or to sign a new one.
13 |
14 | You generally only need to submit a CLA once, so if you've already submitted one
15 | (even if it was for a different project), you probably don't need to do it
16 | again.
17 |
18 | ## Code reviews
19 |
20 | All submissions, including submissions by project members, require review. We
21 | use GitHub pull requests for this purpose. Consult
22 | [GitHub Help](https://help.github.com/articles/about-pull-requests/) for more
23 | information on using pull requests.
24 |
25 | ## Community Guidelines
26 |
27 | This project follows [Google's Open Source Community
28 | Guidelines](https://opensource.google.com/conduct/).
--------------------------------------------------------------------------------
/function-scantrigger-node/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # How to Contribute
2 |
3 | We'd love to accept your patches and contributions to this project. There are
4 | just a few small guidelines you need to follow.
5 |
6 | ## Contributor License Agreement
7 |
8 | Contributions to this project must be accompanied by a Contributor License
9 | Agreement. You (or your employer) retain the copyright to your contribution;
10 | this simply gives us permission to use and redistribute your contributions as
11 | part of the project. Head over to to see
12 | your current agreements on file or to sign a new one.
13 |
14 | You generally only need to submit a CLA once, so if you've already submitted one
15 | (even if it was for a different project), you probably don't need to do it
16 | again.
17 |
18 | ## Code reviews
19 |
20 | All submissions, including submissions by project members, require review. We
21 | use GitHub pull requests for this purpose. Consult
22 | [GitHub Help](https://help.github.com/articles/about-pull-requests/) for more
23 | information on using pull requests.
24 |
25 | ## Community Guidelines
26 |
27 | This project follows [Google's Open Source Community
28 | Guidelines](https://opensource.google.com/conduct/).
--------------------------------------------------------------------------------
/appengine-malwarescanningservice-node/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # How to Contribute
2 |
3 | We'd love to accept your patches and contributions to this project. There are
4 | just a few small guidelines you need to follow.
5 |
6 | ## Contributor License Agreement
7 |
8 | Contributions to this project must be accompanied by a Contributor License
9 | Agreement. You (or your employer) retain the copyright to your contribution;
10 | this simply gives us permission to use and redistribute your contributions as
11 | part of the project. Head over to to see
12 | your current agreements on file or to sign a new one.
13 |
14 | You generally only need to submit a CLA once, so if you've already submitted one
15 | (even if it was for a different project), you probably don't need to do it
16 | again.
17 |
18 | ## Code reviews
19 |
20 | All submissions, including submissions by project members, require review. We
21 | use GitHub pull requests for this purpose. Consult
22 | [GitHub Help](https://help.github.com/articles/about-pull-requests/) for more
23 | information on using pull requests.
24 |
25 | ## Community Guidelines
26 |
27 | This project follows [Google's Open Source Community
28 | Guidelines](https://opensource.google.com/conduct/).
--------------------------------------------------------------------------------
/appengine-malwarescanningservice-node/app.yaml:
--------------------------------------------------------------------------------
1 | # Copyright 2019 Google LLC
2 | #
3 | # Licensed under the Apache License, Version 2.0 (the "License");
4 | # you may not use this file except in compliance with the License.
5 | # You may obtain a copy of the License at
6 | #
7 | # https://www.apache.org/licenses/LICENSE-2.0
8 | #
9 | # Unless required by applicable law or agreed to in writing, software
10 | # distributed under the License is distributed on an "AS IS" BASIS,
11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 | # See the License for the specific language governing permissions and
13 | # limitations under the License.
14 |
15 | # This sample incurs costs to run on the App Engine flexible environment.
16 | # The settings below are to reduce costs during testing and are not appropriate
17 | # for production use. For more information, see:
18 | # https://cloud.google.com/appengine/docs/flexible/nodejs/configuring-your-app-with-app-yaml
19 |
20 | runtime: custom
21 | env: flex
22 |
23 | # Remove the following line if this is the first App Engine service in
24 | # your GCP account.
25 | service: malware-scanner
26 |
27 | automatic_scaling:
28 | min_num_instances: 1
29 | max_num_instances: 2
30 | resources:
31 | cpu: 1
32 | memory_gb: 4
33 | disk_size_gb: 10
34 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Malware Scanner Service
2 |
3 | This repository contains the code to build a pipeline that scans documents
4 | uploaded to GCS for malware. It illustrates how to use App Engine Flex and Cloud
5 | Functions to build such a pipeline.
6 |
7 | ## How to use this example
8 |
9 | Use the [tutorial](https://cloud.google.com/solutions/automating-malware-scanning-for-documents-uploaded-to-cloud-storage) to understand how to configure your Google Cloud Platform project to use Cloud functions and App Engine Flex.
10 |
11 | 1. Check it out from GitHub.
12 | 2. Create a new local repository and copy the files from this repo into it.
13 | 3. Develop and enhance it for your use case
14 |
15 | ## Quickstart
16 |
17 | Clone this repository
18 |
19 | ```sh
20 | git clone https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner.git
21 | ```
22 |
23 | Change directory to one of the example directories
24 |
25 | Follow the walkthrough in the tutorial associated with the Nodejs example for
26 | configuration details of Cloud platform products (Cloud Storage, Cloud Functions
27 | and App Engine Flex) and adapt accordingly using the accompanying README for
28 | each example.
29 |
30 | ## License
31 |
32 | Copyright 2019 Google LLC
33 |
34 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use
35 | this file except in compliance with the License. You may obtain a copy of the
36 | License at
37 |
38 | https://www.apache.org/licenses/LICENSE-2.0
39 |
40 | Unless required by applicable law or agreed to in writing, software distributed
41 | under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
42 | CONDITIONS OF ANY KIND, either express or implied. See the License for the
43 | specific language governing permissions and limitations under the License.
--------------------------------------------------------------------------------
/function-scantrigger-node/README.md:
--------------------------------------------------------------------------------
1 | # Cloud Function that requests document scan by invoking the Malware Scanner service
2 |
3 | Pre-reqs : See the tutorial that accompanies the code example at the following [link](https://cloud.google.com/solutions/automating-malware-scanning-for-documents-uploaded-to-cloud-storage)
4 |
5 | This directory contains the code to create a background function that is
6 | triggered in response to GCS events. It invokes the Malware Scanner service
7 | running in App Engine Flex to request the newly uploaded document to be scanned
8 | for malware.
9 |
10 | ## How to use this example
11 |
12 | Use the tutorial to understand how to configure your Google Cloud Platform
13 | project to use Cloud functions and App Engine Flex.
14 |
15 | 1. Clone it from GitHub.
16 | 2. Develop and enhance it for your use case
17 |
18 | ## Quickstart
19 |
20 | Clone this repository
21 |
22 | ```sh
23 | git clone https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner.git
24 | ```
25 |
26 | Change directory to one of the example directories
27 |
28 | Follow the walkthrough in the tutorial associated with the Nodejs example for
29 | configuration details of Cloud platform products (Cloud Storage, Cloud Functions
30 | and App Engine Flex) and adapt accordingly using the accompanying README for
31 | each example.
32 |
33 | ## License
34 |
35 | Copyright 2019 Google LLC
36 |
37 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use
38 | this file except in compliance with the License. You may obtain a copy of the
39 | License at
40 |
41 | https://www.apache.org/licenses/LICENSE-2.0
42 |
43 | Unless required by applicable law or agreed to in writing, software distributed
44 | under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
45 | CONDITIONS OF ANY KIND, either express or implied. See the License for the
46 | specific language governing permissions and limitations under the License.
--------------------------------------------------------------------------------
/function-scantrigger-node/index.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2019 Google LLC
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 | * https://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 | const request = require('request-promise');
18 |
19 | /**
20 | * Background Cloud Function that handles the 'google.storage.object.finalize'
21 | * event. It invokes the Malware Scanner service running in App Engine Flex
22 | * requesting a scan for the uploaded document.
23 | *
24 | * @param {object} data The event payload.
25 | * @param {object} context The event metadata.
26 | */
27 | exports.requestMalwareScan = async (data, context) => {
28 |
29 | const file = data;
30 | console.log(` Event ${context.eventId}`);
31 | console.log(` Event Type: ${context.eventType}`);
32 | console.log(` Bucket: ${file.bucket}`);
33 | console.log(` File: ${file.name}`);
34 |
35 | let options = {
36 | method: 'POST',
37 | uri: process.env.SCAN_SERVICE_URL,
38 | body: {
39 | location: `gs://${file.bucket}/${file.name}`,
40 | filename: file.name,
41 | bucketname: file.bucket
42 | },
43 | json: true
44 | }
45 |
46 | try {
47 | if(context.eventType === "google.storage.object.finalize") {
48 | await request(options);
49 | console.log(`Malware scan succeeded for: ${file.name}`);
50 | } else {
51 | console.log('Malware scanning is only invoked when documents are uploaded or updated');
52 | }
53 | } catch(e) {
54 | console.error(`Error occurred while scanning ${file.name}`, e);
55 | }
56 | }
--------------------------------------------------------------------------------
/appengine-malwarescanningservice-node/README.md:
--------------------------------------------------------------------------------
1 | # Malware Scanner Service
2 |
3 | Pre-reqs : See the tutorial that accompanies the code example at the following [link](https://cloud.google.com/solutions/automating-malware-scanning-for-documents-uploaded-to-cloud-storage)
4 |
5 | This directory contains the code to build a pipeline that scans documents
6 | uploaded to GCS for malware. It illustrates how to use App Engine Flex to build
7 | such a pipeline. This service is invoked from a background function that
8 | responds to a GCS event i.e. when a document is uploaded to a predetermined GCS
9 | bucket. This service downloads a copy of the document into the Docker container
10 | running in App Engine Flex and requests a ClamAV scan. Upon completion, the
11 | service moves the scanned document apprpropriately based on the outcome i.e.
12 | clean vs infected. It also deletes the local copy of the document.
13 |
14 | ## How to use this example
15 |
16 | Use the tutorial to understand how to configure your Google Cloud Platform
17 | project to use Cloud functions and App Engine Flex.
18 |
19 | 1. Clone it from GitHub.
20 | 2. Develop and enhance it for your use case
21 |
22 | ## Quickstart
23 |
24 | Clone this repository
25 |
26 | ```sh
27 | git clone https://github.com/GoogleCloudPlatform/docker-clamav-malware-scanner.git
28 | ```
29 |
30 | Change directory to one of the example directories
31 |
32 | Follow the walkthrough in the tutorial associated with the Nodejs example for
33 | configuration details of Cloud platform products (Cloud Storage, Cloud Functions
34 | and App Engine Flex) and adapt accordingly using the accompanying README for
35 | each example.
36 |
37 | ## License
38 |
39 | Copyright 2019 Google LLC
40 |
41 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use
42 | this file except in compliance with the License. You may obtain a copy of the
43 | License at
44 |
45 | https://www.apache.org/licenses/LICENSE-2.0
46 |
47 | Unless required by applicable law or agreed to in writing, software distributed
48 | under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
49 | CONDITIONS OF ANY KIND, either express or implied. See the License for the
50 | specific language governing permissions and limitations under the License.
51 |
--------------------------------------------------------------------------------
/appengine-malwarescanningservice-node/server.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2019 Google LLC
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 | * https://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 | const clamd = require('clamdjs');
18 | const express = require('express');
19 | const fs = require('fs');
20 | const bodyParser = require('body-parser');
21 | const {Storage} = require('@google-cloud/storage');
22 |
23 | const app = express();
24 | const PORT = process.env.PORT || 8080;
25 | const scanner = clamd.createScanner('127.0.0.1', 3310);
26 |
27 | app.use(bodyParser.json());
28 |
29 | // Creates a client
30 | const storage = new Storage();
31 |
32 | const run = () => app.listen(PORT, () => {
33 | console.log(`Server started on port ${PORT}`);
34 | })
35 |
36 | /**
37 | * Route that is invoked by a Cloud Function when a malware scan is requested
38 | * for a document uploaded to GCS.
39 | *
40 | * @param {object} req The request payload
41 | * @param {object} res The HTTP response object
42 | */
43 | app.post('/scan', async (req, res) => {
44 | console.log('Request body', req.body);
45 | let filename = req.body.filename;
46 | let unscannedbucket = req.body.bucketname;
47 | let scannedbucket = req.body.scannedbucketname;
48 | let quarantinedbucket = req.body.quarantinedbucketname;
49 |
50 | console.log(`unscannedbucket is: ${unscannedbucket}`);
51 | console.log(`scannedbucket is: ${scannedbucket}`);
52 | console.log(`quarantinedbucket is: ${quarantinedbucket}`);
53 |
54 | try {
55 | const options = {
56 | destination: `/unscanned_files/${filename}`
57 | };
58 |
59 | //Downloads the file
60 | await storage
61 | .bucket(unscannedbucket)
62 | .file(req.body.filename)
63 | .download(options);
64 |
65 | console.log(`Filename is: /unscanned_files/${filename}`);
66 | console.log(`New DFT Repo Code`);
67 |
68 | const result = await scanner.scanFile(`/unscanned_files/${filename}`);
69 |
70 | console.log(`Scan file successfully`);
71 | if (result.indexOf('OK') > -1) {
72 |
73 | console.log(`Move document to the bucket that holds clean documents`);
74 | // Move document to the bucket that holds clean documents
75 | await moveProcessedFile(filename, true, unscannedbucket, scannedbucket, quarantinedbucket);
76 |
77 | // Log scan outcome for document
78 | console.log(`Scan status for ${filename}: CLEAN`)
79 |
80 | // Respond to API client
81 | res.json({status: 'clean'});
82 | } else {
83 | // Move document to the bucket that holds infected documents
84 | console.log(`Move document to the bucket that holds infected documents`);
85 | await moveProcessedFile(filename, false, unscannedbucket, scannedbucket, quarantinedbucket);
86 |
87 | // Log scan outcome for document
88 | console.log(`Scan status for ${filename}: INFECTED`)
89 |
90 | // Respond to API client
91 | res.json({
92 | message: result,
93 | status: 'infected'
94 | });
95 | }
96 | } catch(e) {
97 | console.error(`Error processing the file ${filename}`, e)
98 | res.status(500).json({
99 | message: e.toString(),
100 | status: 'error'
101 | });
102 | } finally {
103 | // Delete file from the local directory on the container
104 | deleteLocalCopy(`/unscanned_files/${filename}`, filename);
105 | }
106 | })
107 |
108 |
109 | const deleteLocalCopy = (loc, filename) => {
110 | fs.unlink(loc, (err) => {
111 | if (err) {
112 | console.error(`Error deleting file ${filename}`);
113 | } else {
114 | console.log(`File ${filename} was deleted successfully`);
115 | }
116 | })
117 | }
118 |
119 | const moveProcessedFile = async (filename, isClean, unscannedbucket, scannedbucket, quarantinedbucket) => {
120 | // Get the bucket which is declared as an environment variable
121 |
122 | let srcbucket = storage.bucket(unscannedbucket);
123 | const srcfile = srcbucket.file(filename);
124 | const destinationBucketName = isClean ? `gs://${scannedbucket}` : `gs://${quarantinedbucket}`;
125 | const destinationBucket = storage.bucket(destinationBucketName);
126 | await srcfile.move(destinationBucket);
127 | }
128 |
129 | run();
130 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 |
2 | Apache License
3 | Version 2.0, January 2004
4 | http://www.apache.org/licenses/
5 |
6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7 |
8 | 1. Definitions.
9 |
10 | "License" shall mean the terms and conditions for use, reproduction,
11 | and distribution as defined by Sections 1 through 9 of this document.
12 |
13 | "Licensor" shall mean the copyright owner or entity authorized by
14 | the copyright owner that is granting the License.
15 |
16 | "Legal Entity" shall mean the union of the acting entity and all
17 | other entities that control, are controlled by, or are under common
18 | control with that entity. For the purposes of this definition,
19 | "control" means (i) the power, direct or indirect, to cause the
20 | direction or management of such entity, whether by contract or
21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
22 | outstanding shares, or (iii) beneficial ownership of such entity.
23 |
24 | "You" (or "Your") shall mean an individual or Legal Entity
25 | exercising permissions granted by this License.
26 |
27 | "Source" form shall mean the preferred form for making modifications,
28 | including but not limited to software source code, documentation
29 | source, and configuration files.
30 |
31 | "Object" form shall mean any form resulting from mechanical
32 | transformation or translation of a Source form, including but
33 | not limited to compiled object code, generated documentation,
34 | and conversions to other media types.
35 |
36 | "Work" shall mean the work of authorship, whether in Source or
37 | Object form, made available under the License, as indicated by a
38 | copyright notice that is included in or attached to the work
39 | (an example is provided in the Appendix below).
40 |
41 | "Derivative Works" shall mean any work, whether in Source or Object
42 | form, that is based on (or derived from) the Work and for which the
43 | editorial revisions, annotations, elaborations, or other modifications
44 | represent, as a whole, an original work of authorship. For the purposes
45 | of this License, Derivative Works shall not include works that remain
46 | separable from, or merely link (or bind by name) to the interfaces of,
47 | the Work and Derivative Works thereof.
48 |
49 | "Contribution" shall mean any work of authorship, including
50 | the original version of the Work and any modifications or additions
51 | to that Work or Derivative Works thereof, that is intentionally
52 | submitted to Licensor for inclusion in the Work by the copyright owner
53 | or by an individual or Legal Entity authorized to submit on behalf of
54 | the copyright owner. For the purposes of this definition, "submitted"
55 | means any form of electronic, verbal, or written communication sent
56 | to the Licensor or its representatives, including but not limited to
57 | communication on electronic mailing lists, source code control systems,
58 | and issue tracking systems that are managed by, or on behalf of, the
59 | Licensor for the purpose of discussing and improving the Work, but
60 | excluding communication that is conspicuously marked or otherwise
61 | designated in writing by the copyright owner as "Not a Contribution."
62 |
63 | "Contributor" shall mean Licensor and any individual or Legal Entity
64 | on behalf of whom a Contribution has been received by Licensor and
65 | subsequently incorporated within the Work.
66 |
67 | 2. Grant of Copyright License. Subject to the terms and conditions of
68 | this License, each Contributor hereby grants to You a perpetual,
69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70 | copyright license to reproduce, prepare Derivative Works of,
71 | publicly display, publicly perform, sublicense, and distribute the
72 | Work and such Derivative Works in Source or Object form.
73 |
74 | 3. Grant of Patent License. Subject to the terms and conditions of
75 | this License, each Contributor hereby grants to You a perpetual,
76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77 | (except as stated in this section) patent license to make, have made,
78 | use, offer to sell, sell, import, and otherwise transfer the Work,
79 | where such license applies only to those patent claims licensable
80 | by such Contributor that are necessarily infringed by their
81 | Contribution(s) alone or by combination of their Contribution(s)
82 | with the Work to which such Contribution(s) was submitted. If You
83 | institute patent litigation against any entity (including a
84 | cross-claim or counterclaim in a lawsuit) alleging that the Work
85 | or a Contribution incorporated within the Work constitutes direct
86 | or contributory patent infringement, then any patent licenses
87 | granted to You under this License for that Work shall terminate
88 | as of the date such litigation is filed.
89 |
90 | 4. Redistribution. You may reproduce and distribute copies of the
91 | Work or Derivative Works thereof in any medium, with or without
92 | modifications, and in Source or Object form, provided that You
93 | meet the following conditions:
94 |
95 | (a) You must give any other recipients of the Work or
96 | Derivative Works a copy of this License; and
97 |
98 | (b) You must cause any modified files to carry prominent notices
99 | stating that You changed the files; and
100 |
101 | (c) You must retain, in the Source form of any Derivative Works
102 | that You distribute, all copyright, patent, trademark, and
103 | attribution notices from the Source form of the Work,
104 | excluding those notices that do not pertain to any part of
105 | the Derivative Works; and
106 |
107 | (d) If the Work includes a "NOTICE" text file as part of its
108 | distribution, then any Derivative Works that You distribute must
109 | include a readable copy of the attribution notices contained
110 | within such NOTICE file, excluding those notices that do not
111 | pertain to any part of the Derivative Works, in at least one
112 | of the following places: within a NOTICE text file distributed
113 | as part of the Derivative Works; within the Source form or
114 | documentation, if provided along with the Derivative Works; or,
115 | within a display generated by the Derivative Works, if and
116 | wherever such third-party notices normally appear. The contents
117 | of the NOTICE file are for informational purposes only and
118 | do not modify the License. You may add Your own attribution
119 | notices within Derivative Works that You distribute, alongside
120 | or as an addendum to the NOTICE text from the Work, provided
121 | that such additional attribution notices cannot be construed
122 | as modifying the License.
123 |
124 | You may add Your own copyright statement to Your modifications and
125 | may provide additional or different license terms and conditions
126 | for use, reproduction, or distribution of Your modifications, or
127 | for any such Derivative Works as a whole, provided Your use,
128 | reproduction, and distribution of the Work otherwise complies with
129 | the conditions stated in this License.
130 |
131 | 5. Submission of Contributions. Unless You explicitly state otherwise,
132 | any Contribution intentionally submitted for inclusion in the Work
133 | by You to the Licensor shall be under the terms and conditions of
134 | this License, without any additional terms or conditions.
135 | Notwithstanding the above, nothing herein shall supersede or modify
136 | the terms of any separate license agreement you may have executed
137 | with Licensor regarding such Contributions.
138 |
139 | 6. Trademarks. This License does not grant permission to use the trade
140 | names, trademarks, service marks, or product names of the Licensor,
141 | except as required for reasonable and customary use in describing the
142 | origin of the Work and reproducing the content of the NOTICE file.
143 |
144 | 7. Disclaimer of Warranty. Unless required by applicable law or
145 | agreed to in writing, Licensor provides the Work (and each
146 | Contributor provides its Contributions) on an "AS IS" BASIS,
147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148 | implied, including, without limitation, any warranties or conditions
149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150 | PARTICULAR PURPOSE. You are solely responsible for determining the
151 | appropriateness of using or redistributing the Work and assume any
152 | risks associated with Your exercise of permissions under this License.
153 |
154 | 8. Limitation of Liability. In no event and under no legal theory,
155 | whether in tort (including negligence), contract, or otherwise,
156 | unless required by applicable law (such as deliberate and grossly
157 | negligent acts) or agreed to in writing, shall any Contributor be
158 | liable to You for damages, including any direct, indirect, special,
159 | incidental, or consequential damages of any character arising as a
160 | result of this License or out of the use or inability to use the
161 | Work (including but not limited to damages for loss of goodwill,
162 | work stoppage, computer failure or malfunction, or any and all
163 | other commercial damages or losses), even if such Contributor
164 | has been advised of the possibility of such damages.
165 |
166 | 9. Accepting Warranty or Additional Liability. While redistributing
167 | the Work or Derivative Works thereof, You may choose to offer,
168 | and charge a fee for, acceptance of support, warranty, indemnity,
169 | or other liability obligations and/or rights consistent with this
170 | License. However, in accepting such obligations, You may act only
171 | on Your own behalf and on Your sole responsibility, not on behalf
172 | of any other Contributor, and only if You agree to indemnify,
173 | defend, and hold each Contributor harmless for any liability
174 | incurred by, or claims asserted against, such Contributor by reason
175 | of your accepting any such warranty or additional liability.
176 |
177 | END OF TERMS AND CONDITIONS
178 |
179 | APPENDIX: How to apply the Apache License to your work.
180 |
181 | To apply the Apache License to your work, attach the following
182 | boilerplate notice, with the fields enclosed by brackets "[]"
183 | replaced with your own identifying information. (Don't include
184 | the brackets!) The text should be enclosed in the appropriate
185 | comment syntax for the file format. We also recommend that a
186 | file or class name and description of purpose be included on the
187 | same "printed page" as the copyright notice for easier
188 | identification within third-party archives.
189 |
190 | Copyright [yyyy] [name of copyright owner]
191 |
192 | Licensed under the Apache License, Version 2.0 (the "License");
193 | you may not use this file except in compliance with the License.
194 | You may obtain a copy of the License at
195 |
196 | http://www.apache.org/licenses/LICENSE-2.0
197 |
198 | Unless required by applicable law or agreed to in writing, software
199 | distributed under the License is distributed on an "AS IS" BASIS,
200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201 | See the License for the specific language governing permissions and
202 | limitations under the License.
--------------------------------------------------------------------------------
/function-scantrigger-node/LICENSE:
--------------------------------------------------------------------------------
1 |
2 | Apache License
3 | Version 2.0, January 2004
4 | http://www.apache.org/licenses/
5 |
6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7 |
8 | 1. Definitions.
9 |
10 | "License" shall mean the terms and conditions for use, reproduction,
11 | and distribution as defined by Sections 1 through 9 of this document.
12 |
13 | "Licensor" shall mean the copyright owner or entity authorized by
14 | the copyright owner that is granting the License.
15 |
16 | "Legal Entity" shall mean the union of the acting entity and all
17 | other entities that control, are controlled by, or are under common
18 | control with that entity. For the purposes of this definition,
19 | "control" means (i) the power, direct or indirect, to cause the
20 | direction or management of such entity, whether by contract or
21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
22 | outstanding shares, or (iii) beneficial ownership of such entity.
23 |
24 | "You" (or "Your") shall mean an individual or Legal Entity
25 | exercising permissions granted by this License.
26 |
27 | "Source" form shall mean the preferred form for making modifications,
28 | including but not limited to software source code, documentation
29 | source, and configuration files.
30 |
31 | "Object" form shall mean any form resulting from mechanical
32 | transformation or translation of a Source form, including but
33 | not limited to compiled object code, generated documentation,
34 | and conversions to other media types.
35 |
36 | "Work" shall mean the work of authorship, whether in Source or
37 | Object form, made available under the License, as indicated by a
38 | copyright notice that is included in or attached to the work
39 | (an example is provided in the Appendix below).
40 |
41 | "Derivative Works" shall mean any work, whether in Source or Object
42 | form, that is based on (or derived from) the Work and for which the
43 | editorial revisions, annotations, elaborations, or other modifications
44 | represent, as a whole, an original work of authorship. For the purposes
45 | of this License, Derivative Works shall not include works that remain
46 | separable from, or merely link (or bind by name) to the interfaces of,
47 | the Work and Derivative Works thereof.
48 |
49 | "Contribution" shall mean any work of authorship, including
50 | the original version of the Work and any modifications or additions
51 | to that Work or Derivative Works thereof, that is intentionally
52 | submitted to Licensor for inclusion in the Work by the copyright owner
53 | or by an individual or Legal Entity authorized to submit on behalf of
54 | the copyright owner. For the purposes of this definition, "submitted"
55 | means any form of electronic, verbal, or written communication sent
56 | to the Licensor or its representatives, including but not limited to
57 | communication on electronic mailing lists, source code control systems,
58 | and issue tracking systems that are managed by, or on behalf of, the
59 | Licensor for the purpose of discussing and improving the Work, but
60 | excluding communication that is conspicuously marked or otherwise
61 | designated in writing by the copyright owner as "Not a Contribution."
62 |
63 | "Contributor" shall mean Licensor and any individual or Legal Entity
64 | on behalf of whom a Contribution has been received by Licensor and
65 | subsequently incorporated within the Work.
66 |
67 | 2. Grant of Copyright License. Subject to the terms and conditions of
68 | this License, each Contributor hereby grants to You a perpetual,
69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70 | copyright license to reproduce, prepare Derivative Works of,
71 | publicly display, publicly perform, sublicense, and distribute the
72 | Work and such Derivative Works in Source or Object form.
73 |
74 | 3. Grant of Patent License. Subject to the terms and conditions of
75 | this License, each Contributor hereby grants to You a perpetual,
76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77 | (except as stated in this section) patent license to make, have made,
78 | use, offer to sell, sell, import, and otherwise transfer the Work,
79 | where such license applies only to those patent claims licensable
80 | by such Contributor that are necessarily infringed by their
81 | Contribution(s) alone or by combination of their Contribution(s)
82 | with the Work to which such Contribution(s) was submitted. If You
83 | institute patent litigation against any entity (including a
84 | cross-claim or counterclaim in a lawsuit) alleging that the Work
85 | or a Contribution incorporated within the Work constitutes direct
86 | or contributory patent infringement, then any patent licenses
87 | granted to You under this License for that Work shall terminate
88 | as of the date such litigation is filed.
89 |
90 | 4. Redistribution. You may reproduce and distribute copies of the
91 | Work or Derivative Works thereof in any medium, with or without
92 | modifications, and in Source or Object form, provided that You
93 | meet the following conditions:
94 |
95 | (a) You must give any other recipients of the Work or
96 | Derivative Works a copy of this License; and
97 |
98 | (b) You must cause any modified files to carry prominent notices
99 | stating that You changed the files; and
100 |
101 | (c) You must retain, in the Source form of any Derivative Works
102 | that You distribute, all copyright, patent, trademark, and
103 | attribution notices from the Source form of the Work,
104 | excluding those notices that do not pertain to any part of
105 | the Derivative Works; and
106 |
107 | (d) If the Work includes a "NOTICE" text file as part of its
108 | distribution, then any Derivative Works that You distribute must
109 | include a readable copy of the attribution notices contained
110 | within such NOTICE file, excluding those notices that do not
111 | pertain to any part of the Derivative Works, in at least one
112 | of the following places: within a NOTICE text file distributed
113 | as part of the Derivative Works; within the Source form or
114 | documentation, if provided along with the Derivative Works; or,
115 | within a display generated by the Derivative Works, if and
116 | wherever such third-party notices normally appear. The contents
117 | of the NOTICE file are for informational purposes only and
118 | do not modify the License. You may add Your own attribution
119 | notices within Derivative Works that You distribute, alongside
120 | or as an addendum to the NOTICE text from the Work, provided
121 | that such additional attribution notices cannot be construed
122 | as modifying the License.
123 |
124 | You may add Your own copyright statement to Your modifications and
125 | may provide additional or different license terms and conditions
126 | for use, reproduction, or distribution of Your modifications, or
127 | for any such Derivative Works as a whole, provided Your use,
128 | reproduction, and distribution of the Work otherwise complies with
129 | the conditions stated in this License.
130 |
131 | 5. Submission of Contributions. Unless You explicitly state otherwise,
132 | any Contribution intentionally submitted for inclusion in the Work
133 | by You to the Licensor shall be under the terms and conditions of
134 | this License, without any additional terms or conditions.
135 | Notwithstanding the above, nothing herein shall supersede or modify
136 | the terms of any separate license agreement you may have executed
137 | with Licensor regarding such Contributions.
138 |
139 | 6. Trademarks. This License does not grant permission to use the trade
140 | names, trademarks, service marks, or product names of the Licensor,
141 | except as required for reasonable and customary use in describing the
142 | origin of the Work and reproducing the content of the NOTICE file.
143 |
144 | 7. Disclaimer of Warranty. Unless required by applicable law or
145 | agreed to in writing, Licensor provides the Work (and each
146 | Contributor provides its Contributions) on an "AS IS" BASIS,
147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148 | implied, including, without limitation, any warranties or conditions
149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150 | PARTICULAR PURPOSE. You are solely responsible for determining the
151 | appropriateness of using or redistributing the Work and assume any
152 | risks associated with Your exercise of permissions under this License.
153 |
154 | 8. Limitation of Liability. In no event and under no legal theory,
155 | whether in tort (including negligence), contract, or otherwise,
156 | unless required by applicable law (such as deliberate and grossly
157 | negligent acts) or agreed to in writing, shall any Contributor be
158 | liable to You for damages, including any direct, indirect, special,
159 | incidental, or consequential damages of any character arising as a
160 | result of this License or out of the use or inability to use the
161 | Work (including but not limited to damages for loss of goodwill,
162 | work stoppage, computer failure or malfunction, or any and all
163 | other commercial damages or losses), even if such Contributor
164 | has been advised of the possibility of such damages.
165 |
166 | 9. Accepting Warranty or Additional Liability. While redistributing
167 | the Work or Derivative Works thereof, You may choose to offer,
168 | and charge a fee for, acceptance of support, warranty, indemnity,
169 | or other liability obligations and/or rights consistent with this
170 | License. However, in accepting such obligations, You may act only
171 | on Your own behalf and on Your sole responsibility, not on behalf
172 | of any other Contributor, and only if You agree to indemnify,
173 | defend, and hold each Contributor harmless for any liability
174 | incurred by, or claims asserted against, such Contributor by reason
175 | of your accepting any such warranty or additional liability.
176 |
177 | END OF TERMS AND CONDITIONS
178 |
179 | APPENDIX: How to apply the Apache License to your work.
180 |
181 | To apply the Apache License to your work, attach the following
182 | boilerplate notice, with the fields enclosed by brackets "[]"
183 | replaced with your own identifying information. (Don't include
184 | the brackets!) The text should be enclosed in the appropriate
185 | comment syntax for the file format. We also recommend that a
186 | file or class name and description of purpose be included on the
187 | same "printed page" as the copyright notice for easier
188 | identification within third-party archives.
189 |
190 | Copyright [yyyy] [name of copyright owner]
191 |
192 | Licensed under the Apache License, Version 2.0 (the "License");
193 | you may not use this file except in compliance with the License.
194 | You may obtain a copy of the License at
195 |
196 | http://www.apache.org/licenses/LICENSE-2.0
197 |
198 | Unless required by applicable law or agreed to in writing, software
199 | distributed under the License is distributed on an "AS IS" BASIS,
200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201 | See the License for the specific language governing permissions and
202 | limitations under the License.
--------------------------------------------------------------------------------
/appengine-malwarescanningservice-node/LICENSE:
--------------------------------------------------------------------------------
1 |
2 | Apache License
3 | Version 2.0, January 2004
4 | http://www.apache.org/licenses/
5 |
6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7 |
8 | 1. Definitions.
9 |
10 | "License" shall mean the terms and conditions for use, reproduction,
11 | and distribution as defined by Sections 1 through 9 of this document.
12 |
13 | "Licensor" shall mean the copyright owner or entity authorized by
14 | the copyright owner that is granting the License.
15 |
16 | "Legal Entity" shall mean the union of the acting entity and all
17 | other entities that control, are controlled by, or are under common
18 | control with that entity. For the purposes of this definition,
19 | "control" means (i) the power, direct or indirect, to cause the
20 | direction or management of such entity, whether by contract or
21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
22 | outstanding shares, or (iii) beneficial ownership of such entity.
23 |
24 | "You" (or "Your") shall mean an individual or Legal Entity
25 | exercising permissions granted by this License.
26 |
27 | "Source" form shall mean the preferred form for making modifications,
28 | including but not limited to software source code, documentation
29 | source, and configuration files.
30 |
31 | "Object" form shall mean any form resulting from mechanical
32 | transformation or translation of a Source form, including but
33 | not limited to compiled object code, generated documentation,
34 | and conversions to other media types.
35 |
36 | "Work" shall mean the work of authorship, whether in Source or
37 | Object form, made available under the License, as indicated by a
38 | copyright notice that is included in or attached to the work
39 | (an example is provided in the Appendix below).
40 |
41 | "Derivative Works" shall mean any work, whether in Source or Object
42 | form, that is based on (or derived from) the Work and for which the
43 | editorial revisions, annotations, elaborations, or other modifications
44 | represent, as a whole, an original work of authorship. For the purposes
45 | of this License, Derivative Works shall not include works that remain
46 | separable from, or merely link (or bind by name) to the interfaces of,
47 | the Work and Derivative Works thereof.
48 |
49 | "Contribution" shall mean any work of authorship, including
50 | the original version of the Work and any modifications or additions
51 | to that Work or Derivative Works thereof, that is intentionally
52 | submitted to Licensor for inclusion in the Work by the copyright owner
53 | or by an individual or Legal Entity authorized to submit on behalf of
54 | the copyright owner. For the purposes of this definition, "submitted"
55 | means any form of electronic, verbal, or written communication sent
56 | to the Licensor or its representatives, including but not limited to
57 | communication on electronic mailing lists, source code control systems,
58 | and issue tracking systems that are managed by, or on behalf of, the
59 | Licensor for the purpose of discussing and improving the Work, but
60 | excluding communication that is conspicuously marked or otherwise
61 | designated in writing by the copyright owner as "Not a Contribution."
62 |
63 | "Contributor" shall mean Licensor and any individual or Legal Entity
64 | on behalf of whom a Contribution has been received by Licensor and
65 | subsequently incorporated within the Work.
66 |
67 | 2. Grant of Copyright License. Subject to the terms and conditions of
68 | this License, each Contributor hereby grants to You a perpetual,
69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70 | copyright license to reproduce, prepare Derivative Works of,
71 | publicly display, publicly perform, sublicense, and distribute the
72 | Work and such Derivative Works in Source or Object form.
73 |
74 | 3. Grant of Patent License. Subject to the terms and conditions of
75 | this License, each Contributor hereby grants to You a perpetual,
76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77 | (except as stated in this section) patent license to make, have made,
78 | use, offer to sell, sell, import, and otherwise transfer the Work,
79 | where such license applies only to those patent claims licensable
80 | by such Contributor that are necessarily infringed by their
81 | Contribution(s) alone or by combination of their Contribution(s)
82 | with the Work to which such Contribution(s) was submitted. If You
83 | institute patent litigation against any entity (including a
84 | cross-claim or counterclaim in a lawsuit) alleging that the Work
85 | or a Contribution incorporated within the Work constitutes direct
86 | or contributory patent infringement, then any patent licenses
87 | granted to You under this License for that Work shall terminate
88 | as of the date such litigation is filed.
89 |
90 | 4. Redistribution. You may reproduce and distribute copies of the
91 | Work or Derivative Works thereof in any medium, with or without
92 | modifications, and in Source or Object form, provided that You
93 | meet the following conditions:
94 |
95 | (a) You must give any other recipients of the Work or
96 | Derivative Works a copy of this License; and
97 |
98 | (b) You must cause any modified files to carry prominent notices
99 | stating that You changed the files; and
100 |
101 | (c) You must retain, in the Source form of any Derivative Works
102 | that You distribute, all copyright, patent, trademark, and
103 | attribution notices from the Source form of the Work,
104 | excluding those notices that do not pertain to any part of
105 | the Derivative Works; and
106 |
107 | (d) If the Work includes a "NOTICE" text file as part of its
108 | distribution, then any Derivative Works that You distribute must
109 | include a readable copy of the attribution notices contained
110 | within such NOTICE file, excluding those notices that do not
111 | pertain to any part of the Derivative Works, in at least one
112 | of the following places: within a NOTICE text file distributed
113 | as part of the Derivative Works; within the Source form or
114 | documentation, if provided along with the Derivative Works; or,
115 | within a display generated by the Derivative Works, if and
116 | wherever such third-party notices normally appear. The contents
117 | of the NOTICE file are for informational purposes only and
118 | do not modify the License. You may add Your own attribution
119 | notices within Derivative Works that You distribute, alongside
120 | or as an addendum to the NOTICE text from the Work, provided
121 | that such additional attribution notices cannot be construed
122 | as modifying the License.
123 |
124 | You may add Your own copyright statement to Your modifications and
125 | may provide additional or different license terms and conditions
126 | for use, reproduction, or distribution of Your modifications, or
127 | for any such Derivative Works as a whole, provided Your use,
128 | reproduction, and distribution of the Work otherwise complies with
129 | the conditions stated in this License.
130 |
131 | 5. Submission of Contributions. Unless You explicitly state otherwise,
132 | any Contribution intentionally submitted for inclusion in the Work
133 | by You to the Licensor shall be under the terms and conditions of
134 | this License, without any additional terms or conditions.
135 | Notwithstanding the above, nothing herein shall supersede or modify
136 | the terms of any separate license agreement you may have executed
137 | with Licensor regarding such Contributions.
138 |
139 | 6. Trademarks. This License does not grant permission to use the trade
140 | names, trademarks, service marks, or product names of the Licensor,
141 | except as required for reasonable and customary use in describing the
142 | origin of the Work and reproducing the content of the NOTICE file.
143 |
144 | 7. Disclaimer of Warranty. Unless required by applicable law or
145 | agreed to in writing, Licensor provides the Work (and each
146 | Contributor provides its Contributions) on an "AS IS" BASIS,
147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148 | implied, including, without limitation, any warranties or conditions
149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150 | PARTICULAR PURPOSE. You are solely responsible for determining the
151 | appropriateness of using or redistributing the Work and assume any
152 | risks associated with Your exercise of permissions under this License.
153 |
154 | 8. Limitation of Liability. In no event and under no legal theory,
155 | whether in tort (including negligence), contract, or otherwise,
156 | unless required by applicable law (such as deliberate and grossly
157 | negligent acts) or agreed to in writing, shall any Contributor be
158 | liable to You for damages, including any direct, indirect, special,
159 | incidental, or consequential damages of any character arising as a
160 | result of this License or out of the use or inability to use the
161 | Work (including but not limited to damages for loss of goodwill,
162 | work stoppage, computer failure or malfunction, or any and all
163 | other commercial damages or losses), even if such Contributor
164 | has been advised of the possibility of such damages.
165 |
166 | 9. Accepting Warranty or Additional Liability. While redistributing
167 | the Work or Derivative Works thereof, You may choose to offer,
168 | and charge a fee for, acceptance of support, warranty, indemnity,
169 | or other liability obligations and/or rights consistent with this
170 | License. However, in accepting such obligations, You may act only
171 | on Your own behalf and on Your sole responsibility, not on behalf
172 | of any other Contributor, and only if You agree to indemnify,
173 | defend, and hold each Contributor harmless for any liability
174 | incurred by, or claims asserted against, such Contributor by reason
175 | of your accepting any such warranty or additional liability.
176 |
177 | END OF TERMS AND CONDITIONS
178 |
179 | APPENDIX: How to apply the Apache License to your work.
180 |
181 | To apply the Apache License to your work, attach the following
182 | boilerplate notice, with the fields enclosed by brackets "[]"
183 | replaced with your own identifying information. (Don't include
184 | the brackets!) The text should be enclosed in the appropriate
185 | comment syntax for the file format. We also recommend that a
186 | file or class name and description of purpose be included on the
187 | same "printed page" as the copyright notice for easier
188 | identification within third-party archives.
189 |
190 | Copyright [yyyy] [name of copyright owner]
191 |
192 | Licensed under the Apache License, Version 2.0 (the "License");
193 | you may not use this file except in compliance with the License.
194 | You may obtain a copy of the License at
195 |
196 | http://www.apache.org/licenses/LICENSE-2.0
197 |
198 | Unless required by applicable law or agreed to in writing, software
199 | distributed under the License is distributed on an "AS IS" BASIS,
200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201 | See the License for the specific language governing permissions and
202 | limitations under the License.
--------------------------------------------------------------------------------
/function-scantrigger-node/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "function_malware_scanner",
3 | "version": "1.0.0",
4 | "lockfileVersion": 1,
5 | "requires": true,
6 | "dependencies": {
7 | "ajv": {
8 | "version": "6.10.0",
9 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz",
10 | "integrity": "sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==",
11 | "requires": {
12 | "fast-deep-equal": "^2.0.1",
13 | "fast-json-stable-stringify": "^2.0.0",
14 | "json-schema-traverse": "^0.4.1",
15 | "uri-js": "^4.2.2"
16 | }
17 | },
18 | "asn1": {
19 | "version": "0.2.4",
20 | "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
21 | "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==",
22 | "requires": {
23 | "safer-buffer": "~2.1.0"
24 | }
25 | },
26 | "assert-plus": {
27 | "version": "1.0.0",
28 | "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
29 | "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
30 | },
31 | "asynckit": {
32 | "version": "0.4.0",
33 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
34 | "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
35 | },
36 | "aws-sign2": {
37 | "version": "0.7.0",
38 | "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
39 | "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg="
40 | },
41 | "aws4": {
42 | "version": "1.8.0",
43 | "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz",
44 | "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ=="
45 | },
46 | "bcrypt-pbkdf": {
47 | "version": "1.0.2",
48 | "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
49 | "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
50 | "requires": {
51 | "tweetnacl": "^0.14.3"
52 | }
53 | },
54 | "bluebird": {
55 | "version": "3.5.3",
56 | "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.3.tgz",
57 | "integrity": "sha512-/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw=="
58 | },
59 | "caseless": {
60 | "version": "0.12.0",
61 | "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
62 | "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
63 | },
64 | "combined-stream": {
65 | "version": "1.0.7",
66 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz",
67 | "integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==",
68 | "requires": {
69 | "delayed-stream": "~1.0.0"
70 | }
71 | },
72 | "core-util-is": {
73 | "version": "1.0.2",
74 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
75 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
76 | },
77 | "dashdash": {
78 | "version": "1.14.1",
79 | "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
80 | "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
81 | "requires": {
82 | "assert-plus": "^1.0.0"
83 | }
84 | },
85 | "delayed-stream": {
86 | "version": "1.0.0",
87 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
88 | "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
89 | },
90 | "ecc-jsbn": {
91 | "version": "0.1.2",
92 | "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
93 | "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
94 | "requires": {
95 | "jsbn": "~0.1.0",
96 | "safer-buffer": "^2.1.0"
97 | }
98 | },
99 | "extend": {
100 | "version": "3.0.2",
101 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
102 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
103 | },
104 | "extsprintf": {
105 | "version": "1.3.0",
106 | "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
107 | "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU="
108 | },
109 | "fast-deep-equal": {
110 | "version": "2.0.1",
111 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz",
112 | "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk="
113 | },
114 | "fast-json-stable-stringify": {
115 | "version": "2.0.0",
116 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
117 | "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I="
118 | },
119 | "forever-agent": {
120 | "version": "0.6.1",
121 | "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
122 | "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE="
123 | },
124 | "form-data": {
125 | "version": "2.3.3",
126 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
127 | "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
128 | "requires": {
129 | "asynckit": "^0.4.0",
130 | "combined-stream": "^1.0.6",
131 | "mime-types": "^2.1.12"
132 | }
133 | },
134 | "getpass": {
135 | "version": "0.1.7",
136 | "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
137 | "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
138 | "requires": {
139 | "assert-plus": "^1.0.0"
140 | }
141 | },
142 | "har-schema": {
143 | "version": "2.0.0",
144 | "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
145 | "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI="
146 | },
147 | "har-validator": {
148 | "version": "5.1.3",
149 | "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz",
150 | "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==",
151 | "requires": {
152 | "ajv": "^6.5.5",
153 | "har-schema": "^2.0.0"
154 | }
155 | },
156 | "http-signature": {
157 | "version": "1.2.0",
158 | "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
159 | "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
160 | "requires": {
161 | "assert-plus": "^1.0.0",
162 | "jsprim": "^1.2.2",
163 | "sshpk": "^1.7.0"
164 | }
165 | },
166 | "is-typedarray": {
167 | "version": "1.0.0",
168 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
169 | "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="
170 | },
171 | "isstream": {
172 | "version": "0.1.2",
173 | "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
174 | "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo="
175 | },
176 | "jsbn": {
177 | "version": "0.1.1",
178 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
179 | "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM="
180 | },
181 | "json-schema": {
182 | "version": "0.2.3",
183 | "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
184 | "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM="
185 | },
186 | "json-schema-traverse": {
187 | "version": "0.4.1",
188 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
189 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
190 | },
191 | "json-stringify-safe": {
192 | "version": "5.0.1",
193 | "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
194 | "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
195 | },
196 | "jsprim": {
197 | "version": "1.4.1",
198 | "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
199 | "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
200 | "requires": {
201 | "assert-plus": "1.0.0",
202 | "extsprintf": "1.3.0",
203 | "json-schema": "0.2.3",
204 | "verror": "1.10.0"
205 | }
206 | },
207 | "lodash": {
208 | "version": "4.17.11",
209 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz",
210 | "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg=="
211 | },
212 | "mime-db": {
213 | "version": "1.38.0",
214 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz",
215 | "integrity": "sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg=="
216 | },
217 | "mime-types": {
218 | "version": "2.1.22",
219 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz",
220 | "integrity": "sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog==",
221 | "requires": {
222 | "mime-db": "~1.38.0"
223 | }
224 | },
225 | "oauth-sign": {
226 | "version": "0.9.0",
227 | "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
228 | "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="
229 | },
230 | "performance-now": {
231 | "version": "2.1.0",
232 | "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
233 | "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns="
234 | },
235 | "psl": {
236 | "version": "1.1.31",
237 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.31.tgz",
238 | "integrity": "sha512-/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw=="
239 | },
240 | "punycode": {
241 | "version": "2.1.1",
242 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
243 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
244 | },
245 | "qs": {
246 | "version": "6.5.2",
247 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
248 | "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="
249 | },
250 | "request": {
251 | "version": "2.88.0",
252 | "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz",
253 | "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==",
254 | "requires": {
255 | "aws-sign2": "~0.7.0",
256 | "aws4": "^1.8.0",
257 | "caseless": "~0.12.0",
258 | "combined-stream": "~1.0.6",
259 | "extend": "~3.0.2",
260 | "forever-agent": "~0.6.1",
261 | "form-data": "~2.3.2",
262 | "har-validator": "~5.1.0",
263 | "http-signature": "~1.2.0",
264 | "is-typedarray": "~1.0.0",
265 | "isstream": "~0.1.2",
266 | "json-stringify-safe": "~5.0.1",
267 | "mime-types": "~2.1.19",
268 | "oauth-sign": "~0.9.0",
269 | "performance-now": "^2.1.0",
270 | "qs": "~6.5.2",
271 | "safe-buffer": "^5.1.2",
272 | "tough-cookie": "~2.4.3",
273 | "tunnel-agent": "^0.6.0",
274 | "uuid": "^3.3.2"
275 | }
276 | },
277 | "request-promise": {
278 | "version": "4.2.4",
279 | "resolved": "https://registry.npmjs.org/request-promise/-/request-promise-4.2.4.tgz",
280 | "integrity": "sha512-8wgMrvE546PzbR5WbYxUQogUnUDfM0S7QIFZMID+J73vdFARkFy+HElj4T+MWYhpXwlLp0EQ8Zoj8xUA0he4Vg==",
281 | "requires": {
282 | "bluebird": "^3.5.0",
283 | "request-promise-core": "1.1.2",
284 | "stealthy-require": "^1.1.1",
285 | "tough-cookie": "^2.3.3"
286 | }
287 | },
288 | "request-promise-core": {
289 | "version": "1.1.2",
290 | "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.2.tgz",
291 | "integrity": "sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag==",
292 | "requires": {
293 | "lodash": "^4.17.11"
294 | }
295 | },
296 | "safe-buffer": {
297 | "version": "5.1.2",
298 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
299 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
300 | },
301 | "safer-buffer": {
302 | "version": "2.1.2",
303 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
304 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
305 | },
306 | "sshpk": {
307 | "version": "1.16.1",
308 | "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz",
309 | "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==",
310 | "requires": {
311 | "asn1": "~0.2.3",
312 | "assert-plus": "^1.0.0",
313 | "bcrypt-pbkdf": "^1.0.0",
314 | "dashdash": "^1.12.0",
315 | "ecc-jsbn": "~0.1.1",
316 | "getpass": "^0.1.1",
317 | "jsbn": "~0.1.0",
318 | "safer-buffer": "^2.0.2",
319 | "tweetnacl": "~0.14.0"
320 | }
321 | },
322 | "stealthy-require": {
323 | "version": "1.1.1",
324 | "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz",
325 | "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks="
326 | },
327 | "tough-cookie": {
328 | "version": "2.4.3",
329 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz",
330 | "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==",
331 | "requires": {
332 | "psl": "^1.1.24",
333 | "punycode": "^1.4.1"
334 | },
335 | "dependencies": {
336 | "punycode": {
337 | "version": "1.4.1",
338 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
339 | "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4="
340 | }
341 | }
342 | },
343 | "tunnel-agent": {
344 | "version": "0.6.0",
345 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
346 | "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
347 | "requires": {
348 | "safe-buffer": "^5.0.1"
349 | }
350 | },
351 | "tweetnacl": {
352 | "version": "0.14.5",
353 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
354 | "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q="
355 | },
356 | "uri-js": {
357 | "version": "4.2.2",
358 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz",
359 | "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==",
360 | "requires": {
361 | "punycode": "^2.1.0"
362 | }
363 | },
364 | "uuid": {
365 | "version": "3.3.2",
366 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz",
367 | "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA=="
368 | },
369 | "verror": {
370 | "version": "1.10.0",
371 | "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
372 | "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
373 | "requires": {
374 | "assert-plus": "^1.0.0",
375 | "core-util-is": "1.0.2",
376 | "extsprintf": "^1.2.0"
377 | }
378 | }
379 | }
380 | }
381 |
--------------------------------------------------------------------------------
/appengine-malwarescanningservice-node/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "clamav_appengine_flex_tutorial",
3 | "version": "1.0.0",
4 | "lockfileVersion": 1,
5 | "requires": true,
6 | "dependencies": {
7 | "@google-cloud/common": {
8 | "version": "0.31.0",
9 | "resolved": "https://registry.npmjs.org/@google-cloud/common/-/common-0.31.0.tgz",
10 | "integrity": "sha512-mO7WFavzqmr24btNb2zimUh+M3fGnIKGbkR1VT6ZG3yDV+S7BiZPmPiFHKRJVrxwi5sA9U6X6fpNpHgj7j2a2w==",
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": "^3.0.0",
21 | "pify": "^4.0.0",
22 | "retry-request": "^4.0.0"
23 | }
24 | },
25 | "@google-cloud/paginator": {
26 | "version": "0.1.2",
27 | "resolved": "https://registry.npmjs.org/@google-cloud/paginator/-/paginator-0.1.2.tgz",
28 | "integrity": "sha512-XL09cuPSEPyyNifavxWJRYkUFr5zCJ9njcFjqc1AqSQ2QIKycwdTxOP/zHsAWj0xN3rw1ApevA8o+8VAD4R6hw==",
29 | "requires": {
30 | "arrify": "^1.0.1",
31 | "extend": "^3.0.1",
32 | "is": "^3.2.1",
33 | "split-array-stream": "^2.0.0",
34 | "stream-events": "^1.0.4"
35 | }
36 | },
37 | "@google-cloud/projectify": {
38 | "version": "0.3.3",
39 | "resolved": "https://registry.npmjs.org/@google-cloud/projectify/-/projectify-0.3.3.tgz",
40 | "integrity": "sha512-7522YHQ4IhaafgSunsFF15nG0TGVmxgXidy9cITMe+256RgqfcrfWphiMufW+Ou4kqagW/u3yxwbzVEW3dk2Uw=="
41 | },
42 | "@google-cloud/promisify": {
43 | "version": "0.3.1",
44 | "resolved": "https://registry.npmjs.org/@google-cloud/promisify/-/promisify-0.3.1.tgz",
45 | "integrity": "sha512-QzB0/IMvB0eFxFK7Eqh+bfC8NLv3E9ScjWQrPOk6GgfNroxcVITdTlT8NRsRrcp5+QQJVPLkRqKG0PUdaWXmHw=="
46 | },
47 | "@google-cloud/storage": {
48 | "version": "2.4.2",
49 | "resolved": "https://registry.npmjs.org/@google-cloud/storage/-/storage-2.4.2.tgz",
50 | "integrity": "sha512-G4rlt5h2oypPYU2ZtmF3N0FpE47aRvsxp8NmZEdlScd5LgjDAu5Ha01hMOA/ZHBVsUlOGFfa+TxU5Ei/56+0Gg==",
51 | "requires": {
52 | "@google-cloud/common": "^0.31.0",
53 | "@google-cloud/paginator": "^0.1.0",
54 | "@google-cloud/promisify": "^0.3.0",
55 | "arrify": "^1.0.0",
56 | "async": "^2.0.1",
57 | "compressible": "^2.0.12",
58 | "concat-stream": "^2.0.0",
59 | "duplexify": "^3.5.0",
60 | "extend": "^3.0.0",
61 | "gcs-resumable-upload": "^0.14.1",
62 | "hash-stream-validation": "^0.2.1",
63 | "mime": "^2.2.0",
64 | "mime-types": "^2.0.8",
65 | "once": "^1.3.1",
66 | "pumpify": "^1.5.1",
67 | "snakeize": "^0.1.0",
68 | "stream-events": "^1.0.1",
69 | "teeny-request": "^3.11.3",
70 | "through2": "^3.0.0",
71 | "xdg-basedir": "^3.0.0"
72 | },
73 | "dependencies": {
74 | "mime": {
75 | "version": "2.4.0",
76 | "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.0.tgz",
77 | "integrity": "sha512-ikBcWwyqXQSHKtciCcctu9YfPbFYZ4+gbHEmE0Q8jzcTYQg5dHCr3g2wwAZjPoJfQVXZq6KXAjpXOTf5/cjT7w=="
78 | }
79 | }
80 | },
81 | "@types/caseless": {
82 | "version": "0.12.2",
83 | "resolved": "https://registry.npmjs.org/@types/caseless/-/caseless-0.12.2.tgz",
84 | "integrity": "sha512-6ckxMjBBD8URvjB6J3NcnuAn5Pkl7t3TizAg+xdlzzQGSPSmBcXf8KoIH0ua/i+tio+ZRUHEXp0HEmvaR4kt0w=="
85 | },
86 | "@types/duplexify": {
87 | "version": "3.6.0",
88 | "resolved": "https://registry.npmjs.org/@types/duplexify/-/duplexify-3.6.0.tgz",
89 | "integrity": "sha512-5zOA53RUlzN74bvrSGwjudssD9F3a797sDZQkiYpUOxW+WHaXTCPz4/d5Dgi6FKnOqZ2CpaTo0DhgIfsXAOE/A==",
90 | "requires": {
91 | "@types/node": "*"
92 | }
93 | },
94 | "@types/form-data": {
95 | "version": "2.2.1",
96 | "resolved": "https://registry.npmjs.org/@types/form-data/-/form-data-2.2.1.tgz",
97 | "integrity": "sha512-JAMFhOaHIciYVh8fb5/83nmuO/AHwmto+Hq7a9y8FzLDcC1KCU344XDOMEmahnrTFlHjgh4L0WJFczNIX2GxnQ==",
98 | "requires": {
99 | "@types/node": "*"
100 | }
101 | },
102 | "@types/node": {
103 | "version": "11.11.3",
104 | "resolved": "https://registry.npmjs.org/@types/node/-/node-11.11.3.tgz",
105 | "integrity": "sha512-wp6IOGu1lxsfnrD+5mX6qwSwWuqsdkKKxTN4aQc4wByHAKZJf9/D4KXPQ1POUjEbnCP5LMggB0OEFNY9OTsMqg=="
106 | },
107 | "@types/request": {
108 | "version": "2.48.1",
109 | "resolved": "https://registry.npmjs.org/@types/request/-/request-2.48.1.tgz",
110 | "integrity": "sha512-ZgEZ1TiD+KGA9LiAAPPJL68Id2UWfeSO62ijSXZjFJArVV+2pKcsVHmrcu+1oiE3q6eDGiFiSolRc4JHoerBBg==",
111 | "requires": {
112 | "@types/caseless": "*",
113 | "@types/form-data": "*",
114 | "@types/node": "*",
115 | "@types/tough-cookie": "*"
116 | }
117 | },
118 | "@types/tough-cookie": {
119 | "version": "2.3.5",
120 | "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-2.3.5.tgz",
121 | "integrity": "sha512-SCcK7mvGi3+ZNz833RRjFIxrn4gI1PPR3NtuIS+6vMkvmsGjosqTJwRt5bAEFLRz+wtJMWv8+uOnZf2hi2QXTg=="
122 | },
123 | "abbrev": {
124 | "version": "1.1.1",
125 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
126 | "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
127 | },
128 | "abort-controller": {
129 | "version": "2.0.3",
130 | "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-2.0.3.tgz",
131 | "integrity": "sha512-EPSq5wr2aFyAZ1PejJB32IX9Qd4Nwus+adnp7STYFM5/23nLPBazqZ1oor6ZqbH+4otaaGXTlC8RN5hq3C8w9Q==",
132 | "requires": {
133 | "event-target-shim": "^5.0.0"
134 | }
135 | },
136 | "accepts": {
137 | "version": "1.3.5",
138 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz",
139 | "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=",
140 | "requires": {
141 | "mime-types": "~2.1.18",
142 | "negotiator": "0.6.1"
143 | }
144 | },
145 | "agent-base": {
146 | "version": "4.2.1",
147 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.2.1.tgz",
148 | "integrity": "sha512-JVwXMr9nHYTUXsBFKUqhJwvlcYU/blreOEUkhNR2eXZIvwd+c+o5V4MgDPKWnMS/56awN3TRzIP+KoPn+roQtg==",
149 | "requires": {
150 | "es6-promisify": "^5.0.0"
151 | }
152 | },
153 | "ajv": {
154 | "version": "6.10.0",
155 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz",
156 | "integrity": "sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==",
157 | "requires": {
158 | "fast-deep-equal": "^2.0.1",
159 | "fast-json-stable-stringify": "^2.0.0",
160 | "json-schema-traverse": "^0.4.1",
161 | "uri-js": "^4.2.2"
162 | }
163 | },
164 | "ansi-align": {
165 | "version": "2.0.0",
166 | "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz",
167 | "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=",
168 | "requires": {
169 | "string-width": "^2.0.0"
170 | }
171 | },
172 | "ansi-regex": {
173 | "version": "3.0.0",
174 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
175 | "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg="
176 | },
177 | "ansi-styles": {
178 | "version": "3.2.1",
179 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
180 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
181 | "requires": {
182 | "color-convert": "^1.9.0"
183 | }
184 | },
185 | "anymatch": {
186 | "version": "2.0.0",
187 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
188 | "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
189 | "requires": {
190 | "micromatch": "^3.1.4",
191 | "normalize-path": "^2.1.1"
192 | },
193 | "dependencies": {
194 | "normalize-path": {
195 | "version": "2.1.1",
196 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
197 | "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
198 | "requires": {
199 | "remove-trailing-separator": "^1.0.1"
200 | }
201 | }
202 | }
203 | },
204 | "arr-diff": {
205 | "version": "4.0.0",
206 | "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
207 | "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA="
208 | },
209 | "arr-flatten": {
210 | "version": "1.1.0",
211 | "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
212 | "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
213 | },
214 | "arr-union": {
215 | "version": "3.1.0",
216 | "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
217 | "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ="
218 | },
219 | "array-flatten": {
220 | "version": "1.1.1",
221 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
222 | "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI="
223 | },
224 | "array-unique": {
225 | "version": "0.3.2",
226 | "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
227 | "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="
228 | },
229 | "arrify": {
230 | "version": "1.0.1",
231 | "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
232 | "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0="
233 | },
234 | "asn1": {
235 | "version": "0.2.4",
236 | "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
237 | "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==",
238 | "requires": {
239 | "safer-buffer": "~2.1.0"
240 | }
241 | },
242 | "assert-plus": {
243 | "version": "1.0.0",
244 | "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
245 | "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
246 | },
247 | "assign-symbols": {
248 | "version": "1.0.0",
249 | "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
250 | "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c="
251 | },
252 | "async": {
253 | "version": "2.6.2",
254 | "resolved": "https://registry.npmjs.org/async/-/async-2.6.2.tgz",
255 | "integrity": "sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==",
256 | "requires": {
257 | "lodash": "^4.17.11"
258 | }
259 | },
260 | "async-each": {
261 | "version": "1.0.1",
262 | "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
263 | "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0="
264 | },
265 | "asynckit": {
266 | "version": "0.4.0",
267 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
268 | "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
269 | },
270 | "atob": {
271 | "version": "2.1.2",
272 | "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
273 | "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="
274 | },
275 | "aws-sign2": {
276 | "version": "0.7.0",
277 | "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
278 | "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg="
279 | },
280 | "aws4": {
281 | "version": "1.8.0",
282 | "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz",
283 | "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ=="
284 | },
285 | "balanced-match": {
286 | "version": "1.0.0",
287 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
288 | "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
289 | },
290 | "base": {
291 | "version": "0.11.2",
292 | "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
293 | "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
294 | "requires": {
295 | "cache-base": "^1.0.1",
296 | "class-utils": "^0.3.5",
297 | "component-emitter": "^1.2.1",
298 | "define-property": "^1.0.0",
299 | "isobject": "^3.0.1",
300 | "mixin-deep": "^1.2.0",
301 | "pascalcase": "^0.1.1"
302 | },
303 | "dependencies": {
304 | "define-property": {
305 | "version": "1.0.0",
306 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
307 | "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
308 | "requires": {
309 | "is-descriptor": "^1.0.0"
310 | }
311 | },
312 | "is-accessor-descriptor": {
313 | "version": "1.0.0",
314 | "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
315 | "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
316 | "requires": {
317 | "kind-of": "^6.0.0"
318 | }
319 | },
320 | "is-data-descriptor": {
321 | "version": "1.0.0",
322 | "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
323 | "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
324 | "requires": {
325 | "kind-of": "^6.0.0"
326 | }
327 | },
328 | "is-descriptor": {
329 | "version": "1.0.2",
330 | "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
331 | "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
332 | "requires": {
333 | "is-accessor-descriptor": "^1.0.0",
334 | "is-data-descriptor": "^1.0.0",
335 | "kind-of": "^6.0.2"
336 | }
337 | }
338 | }
339 | },
340 | "base64-js": {
341 | "version": "1.3.0",
342 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz",
343 | "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw=="
344 | },
345 | "bcrypt-pbkdf": {
346 | "version": "1.0.2",
347 | "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
348 | "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
349 | "requires": {
350 | "tweetnacl": "^0.14.3"
351 | }
352 | },
353 | "bignumber.js": {
354 | "version": "7.2.1",
355 | "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-7.2.1.tgz",
356 | "integrity": "sha512-S4XzBk5sMB+Rcb/LNcpzXr57VRTxgAvaAEDAl1AwRx27j00hT84O6OkteE7u8UB3NuaaygCRrEpqox4uDOrbdQ=="
357 | },
358 | "binary-extensions": {
359 | "version": "1.13.0",
360 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.0.tgz",
361 | "integrity": "sha512-EgmjVLMn22z7eGGv3kcnHwSnJXmFHjISTY9E/S5lIcTD3Oxw05QTcBLNkJFzcb3cNueUdF/IN4U+d78V0zO8Hw=="
362 | },
363 | "body-parser": {
364 | "version": "1.18.3",
365 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz",
366 | "integrity": "sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ=",
367 | "requires": {
368 | "bytes": "3.0.0",
369 | "content-type": "~1.0.4",
370 | "debug": "2.6.9",
371 | "depd": "~1.1.2",
372 | "http-errors": "~1.6.3",
373 | "iconv-lite": "0.4.23",
374 | "on-finished": "~2.3.0",
375 | "qs": "6.5.2",
376 | "raw-body": "2.3.3",
377 | "type-is": "~1.6.16"
378 | }
379 | },
380 | "boxen": {
381 | "version": "1.3.0",
382 | "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz",
383 | "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==",
384 | "requires": {
385 | "ansi-align": "^2.0.0",
386 | "camelcase": "^4.0.0",
387 | "chalk": "^2.0.1",
388 | "cli-boxes": "^1.0.0",
389 | "string-width": "^2.0.0",
390 | "term-size": "^1.2.0",
391 | "widest-line": "^2.0.0"
392 | }
393 | },
394 | "brace-expansion": {
395 | "version": "1.1.11",
396 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
397 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
398 | "requires": {
399 | "balanced-match": "^1.0.0",
400 | "concat-map": "0.0.1"
401 | }
402 | },
403 | "braces": {
404 | "version": "2.3.2",
405 | "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
406 | "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
407 | "requires": {
408 | "arr-flatten": "^1.1.0",
409 | "array-unique": "^0.3.2",
410 | "extend-shallow": "^2.0.1",
411 | "fill-range": "^4.0.0",
412 | "isobject": "^3.0.1",
413 | "repeat-element": "^1.1.2",
414 | "snapdragon": "^0.8.1",
415 | "snapdragon-node": "^2.0.1",
416 | "split-string": "^3.0.2",
417 | "to-regex": "^3.0.1"
418 | },
419 | "dependencies": {
420 | "extend-shallow": {
421 | "version": "2.0.1",
422 | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
423 | "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
424 | "requires": {
425 | "is-extendable": "^0.1.0"
426 | }
427 | }
428 | }
429 | },
430 | "buffer-equal-constant-time": {
431 | "version": "1.0.1",
432 | "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
433 | "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk="
434 | },
435 | "buffer-from": {
436 | "version": "1.1.1",
437 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz",
438 | "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="
439 | },
440 | "bytes": {
441 | "version": "3.0.0",
442 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
443 | "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg="
444 | },
445 | "cache-base": {
446 | "version": "1.0.1",
447 | "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
448 | "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
449 | "requires": {
450 | "collection-visit": "^1.0.0",
451 | "component-emitter": "^1.2.1",
452 | "get-value": "^2.0.6",
453 | "has-value": "^1.0.0",
454 | "isobject": "^3.0.1",
455 | "set-value": "^2.0.0",
456 | "to-object-path": "^0.3.0",
457 | "union-value": "^1.0.0",
458 | "unset-value": "^1.0.0"
459 | }
460 | },
461 | "camelcase": {
462 | "version": "4.1.0",
463 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz",
464 | "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0="
465 | },
466 | "capture-stack-trace": {
467 | "version": "1.0.1",
468 | "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz",
469 | "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw=="
470 | },
471 | "caseless": {
472 | "version": "0.12.0",
473 | "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
474 | "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
475 | },
476 | "chalk": {
477 | "version": "2.4.2",
478 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
479 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
480 | "requires": {
481 | "ansi-styles": "^3.2.1",
482 | "escape-string-regexp": "^1.0.5",
483 | "supports-color": "^5.3.0"
484 | }
485 | },
486 | "chokidar": {
487 | "version": "2.1.2",
488 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.2.tgz",
489 | "integrity": "sha512-IwXUx0FXc5ibYmPC2XeEj5mpXoV66sR+t3jqu2NS2GYwCktt3KF1/Qqjws/NkegajBA4RbZ5+DDwlOiJsxDHEg==",
490 | "requires": {
491 | "anymatch": "^2.0.0",
492 | "async-each": "^1.0.1",
493 | "braces": "^2.3.2",
494 | "fsevents": "^1.2.7",
495 | "glob-parent": "^3.1.0",
496 | "inherits": "^2.0.3",
497 | "is-binary-path": "^1.0.0",
498 | "is-glob": "^4.0.0",
499 | "normalize-path": "^3.0.0",
500 | "path-is-absolute": "^1.0.0",
501 | "readdirp": "^2.2.1",
502 | "upath": "^1.1.0"
503 | }
504 | },
505 | "ci-info": {
506 | "version": "1.6.0",
507 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz",
508 | "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A=="
509 | },
510 | "clamdjs": {
511 | "version": "1.0.1",
512 | "resolved": "https://registry.npmjs.org/clamdjs/-/clamdjs-1.0.1.tgz",
513 | "integrity": "sha512-pAtUD0Cx9emsuuwtC90xwA3sfYuDD/zMJQUdzCX1JM8ChdGCBC8KoTkfXtV/Odf8Q378Xl5QWt9ZlVN5fxJERA=="
514 | },
515 | "class-utils": {
516 | "version": "0.3.6",
517 | "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
518 | "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
519 | "requires": {
520 | "arr-union": "^3.1.0",
521 | "define-property": "^0.2.5",
522 | "isobject": "^3.0.0",
523 | "static-extend": "^0.1.1"
524 | },
525 | "dependencies": {
526 | "define-property": {
527 | "version": "0.2.5",
528 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
529 | "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
530 | "requires": {
531 | "is-descriptor": "^0.1.0"
532 | }
533 | }
534 | }
535 | },
536 | "cli-boxes": {
537 | "version": "1.0.0",
538 | "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz",
539 | "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM="
540 | },
541 | "collection-visit": {
542 | "version": "1.0.0",
543 | "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
544 | "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
545 | "requires": {
546 | "map-visit": "^1.0.0",
547 | "object-visit": "^1.0.0"
548 | }
549 | },
550 | "color-convert": {
551 | "version": "1.9.3",
552 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
553 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
554 | "requires": {
555 | "color-name": "1.1.3"
556 | }
557 | },
558 | "color-name": {
559 | "version": "1.1.3",
560 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
561 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
562 | },
563 | "combined-stream": {
564 | "version": "1.0.7",
565 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz",
566 | "integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==",
567 | "requires": {
568 | "delayed-stream": "~1.0.0"
569 | }
570 | },
571 | "component-emitter": {
572 | "version": "1.2.1",
573 | "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz",
574 | "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY="
575 | },
576 | "compressible": {
577 | "version": "2.0.16",
578 | "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.16.tgz",
579 | "integrity": "sha512-JQfEOdnI7dASwCuSPWIeVYwc/zMsu/+tRhoUvEfXz2gxOA2DNjmG5vhtFdBlhWPPGo+RdT9S3tgc/uH5qgDiiA==",
580 | "requires": {
581 | "mime-db": ">= 1.38.0 < 2"
582 | }
583 | },
584 | "concat-map": {
585 | "version": "0.0.1",
586 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
587 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
588 | },
589 | "concat-stream": {
590 | "version": "2.0.0",
591 | "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz",
592 | "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==",
593 | "requires": {
594 | "buffer-from": "^1.0.0",
595 | "inherits": "^2.0.3",
596 | "readable-stream": "^3.0.2",
597 | "typedarray": "^0.0.6"
598 | },
599 | "dependencies": {
600 | "readable-stream": {
601 | "version": "3.2.0",
602 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.2.0.tgz",
603 | "integrity": "sha512-RV20kLjdmpZuTF1INEb9IA3L68Nmi+Ri7ppZqo78wj//Pn62fCoJyV9zalccNzDD/OuJpMG4f+pfMl8+L6QdGw==",
604 | "requires": {
605 | "inherits": "^2.0.3",
606 | "string_decoder": "^1.1.1",
607 | "util-deprecate": "^1.0.1"
608 | }
609 | }
610 | }
611 | },
612 | "configstore": {
613 | "version": "4.0.0",
614 | "resolved": "https://registry.npmjs.org/configstore/-/configstore-4.0.0.tgz",
615 | "integrity": "sha512-CmquAXFBocrzaSM8mtGPMM/HiWmyIpr4CcJl/rgY2uCObZ/S7cKU0silxslqJejl+t/T9HS8E0PUNQD81JGUEQ==",
616 | "requires": {
617 | "dot-prop": "^4.1.0",
618 | "graceful-fs": "^4.1.2",
619 | "make-dir": "^1.0.0",
620 | "unique-string": "^1.0.0",
621 | "write-file-atomic": "^2.0.0",
622 | "xdg-basedir": "^3.0.0"
623 | }
624 | },
625 | "content-disposition": {
626 | "version": "0.5.2",
627 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz",
628 | "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ="
629 | },
630 | "content-type": {
631 | "version": "1.0.4",
632 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
633 | "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="
634 | },
635 | "cookie": {
636 | "version": "0.3.1",
637 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz",
638 | "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s="
639 | },
640 | "cookie-signature": {
641 | "version": "1.0.6",
642 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
643 | "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw="
644 | },
645 | "copy-descriptor": {
646 | "version": "0.1.1",
647 | "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
648 | "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40="
649 | },
650 | "core-util-is": {
651 | "version": "1.0.2",
652 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
653 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
654 | },
655 | "create-error-class": {
656 | "version": "3.0.2",
657 | "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz",
658 | "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=",
659 | "requires": {
660 | "capture-stack-trace": "^1.0.0"
661 | }
662 | },
663 | "cross-spawn": {
664 | "version": "5.1.0",
665 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
666 | "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
667 | "requires": {
668 | "lru-cache": "^4.0.1",
669 | "shebang-command": "^1.2.0",
670 | "which": "^1.2.9"
671 | },
672 | "dependencies": {
673 | "lru-cache": {
674 | "version": "4.1.5",
675 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz",
676 | "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==",
677 | "requires": {
678 | "pseudomap": "^1.0.2",
679 | "yallist": "^2.1.2"
680 | }
681 | },
682 | "yallist": {
683 | "version": "2.1.2",
684 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz",
685 | "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI="
686 | }
687 | }
688 | },
689 | "crypto-random-string": {
690 | "version": "1.0.0",
691 | "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz",
692 | "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4="
693 | },
694 | "dashdash": {
695 | "version": "1.14.1",
696 | "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
697 | "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
698 | "requires": {
699 | "assert-plus": "^1.0.0"
700 | }
701 | },
702 | "debug": {
703 | "version": "2.6.9",
704 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
705 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
706 | "requires": {
707 | "ms": "2.0.0"
708 | }
709 | },
710 | "decode-uri-component": {
711 | "version": "0.2.0",
712 | "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
713 | "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU="
714 | },
715 | "deep-extend": {
716 | "version": "0.6.0",
717 | "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
718 | "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="
719 | },
720 | "define-property": {
721 | "version": "2.0.2",
722 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
723 | "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
724 | "requires": {
725 | "is-descriptor": "^1.0.2",
726 | "isobject": "^3.0.1"
727 | },
728 | "dependencies": {
729 | "is-accessor-descriptor": {
730 | "version": "1.0.0",
731 | "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
732 | "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
733 | "requires": {
734 | "kind-of": "^6.0.0"
735 | }
736 | },
737 | "is-data-descriptor": {
738 | "version": "1.0.0",
739 | "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
740 | "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
741 | "requires": {
742 | "kind-of": "^6.0.0"
743 | }
744 | },
745 | "is-descriptor": {
746 | "version": "1.0.2",
747 | "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
748 | "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
749 | "requires": {
750 | "is-accessor-descriptor": "^1.0.0",
751 | "is-data-descriptor": "^1.0.0",
752 | "kind-of": "^6.0.2"
753 | }
754 | }
755 | }
756 | },
757 | "delayed-stream": {
758 | "version": "1.0.0",
759 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
760 | "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
761 | },
762 | "depd": {
763 | "version": "1.1.2",
764 | "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
765 | "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak="
766 | },
767 | "destroy": {
768 | "version": "1.0.4",
769 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
770 | "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA="
771 | },
772 | "dot-prop": {
773 | "version": "4.2.0",
774 | "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz",
775 | "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==",
776 | "requires": {
777 | "is-obj": "^1.0.0"
778 | }
779 | },
780 | "duplexer3": {
781 | "version": "0.1.4",
782 | "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
783 | "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI="
784 | },
785 | "duplexify": {
786 | "version": "3.7.1",
787 | "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz",
788 | "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==",
789 | "requires": {
790 | "end-of-stream": "^1.0.0",
791 | "inherits": "^2.0.1",
792 | "readable-stream": "^2.0.0",
793 | "stream-shift": "^1.0.0"
794 | }
795 | },
796 | "ecc-jsbn": {
797 | "version": "0.1.2",
798 | "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
799 | "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
800 | "requires": {
801 | "jsbn": "~0.1.0",
802 | "safer-buffer": "^2.1.0"
803 | }
804 | },
805 | "ecdsa-sig-formatter": {
806 | "version": "1.0.11",
807 | "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
808 | "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
809 | "requires": {
810 | "safe-buffer": "^5.0.1"
811 | }
812 | },
813 | "ee-first": {
814 | "version": "1.1.1",
815 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
816 | "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
817 | },
818 | "encodeurl": {
819 | "version": "1.0.2",
820 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
821 | "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k="
822 | },
823 | "end-of-stream": {
824 | "version": "1.4.1",
825 | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz",
826 | "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==",
827 | "requires": {
828 | "once": "^1.4.0"
829 | }
830 | },
831 | "ent": {
832 | "version": "2.2.0",
833 | "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz",
834 | "integrity": "sha1-6WQhkyWiHQX0RGai9obtbOX13R0="
835 | },
836 | "es6-promise": {
837 | "version": "4.2.6",
838 | "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.6.tgz",
839 | "integrity": "sha512-aRVgGdnmW2OiySVPUC9e6m+plolMAJKjZnQlCwNSuK5yQ0JN61DZSO1X1Ufd1foqWRAlig0rhduTCHe7sVtK5Q=="
840 | },
841 | "es6-promisify": {
842 | "version": "5.0.0",
843 | "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz",
844 | "integrity": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=",
845 | "requires": {
846 | "es6-promise": "^4.0.3"
847 | }
848 | },
849 | "escape-html": {
850 | "version": "1.0.3",
851 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
852 | "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg="
853 | },
854 | "escape-string-regexp": {
855 | "version": "1.0.5",
856 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
857 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
858 | },
859 | "etag": {
860 | "version": "1.8.1",
861 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
862 | "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc="
863 | },
864 | "event-target-shim": {
865 | "version": "5.0.1",
866 | "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
867 | "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ=="
868 | },
869 | "execa": {
870 | "version": "0.7.0",
871 | "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz",
872 | "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=",
873 | "requires": {
874 | "cross-spawn": "^5.0.1",
875 | "get-stream": "^3.0.0",
876 | "is-stream": "^1.1.0",
877 | "npm-run-path": "^2.0.0",
878 | "p-finally": "^1.0.0",
879 | "signal-exit": "^3.0.0",
880 | "strip-eof": "^1.0.0"
881 | }
882 | },
883 | "expand-brackets": {
884 | "version": "2.1.4",
885 | "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
886 | "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
887 | "requires": {
888 | "debug": "^2.3.3",
889 | "define-property": "^0.2.5",
890 | "extend-shallow": "^2.0.1",
891 | "posix-character-classes": "^0.1.0",
892 | "regex-not": "^1.0.0",
893 | "snapdragon": "^0.8.1",
894 | "to-regex": "^3.0.1"
895 | },
896 | "dependencies": {
897 | "define-property": {
898 | "version": "0.2.5",
899 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
900 | "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
901 | "requires": {
902 | "is-descriptor": "^0.1.0"
903 | }
904 | },
905 | "extend-shallow": {
906 | "version": "2.0.1",
907 | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
908 | "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
909 | "requires": {
910 | "is-extendable": "^0.1.0"
911 | }
912 | }
913 | }
914 | },
915 | "express": {
916 | "version": "4.16.4",
917 | "resolved": "https://registry.npmjs.org/express/-/express-4.16.4.tgz",
918 | "integrity": "sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==",
919 | "requires": {
920 | "accepts": "~1.3.5",
921 | "array-flatten": "1.1.1",
922 | "body-parser": "1.18.3",
923 | "content-disposition": "0.5.2",
924 | "content-type": "~1.0.4",
925 | "cookie": "0.3.1",
926 | "cookie-signature": "1.0.6",
927 | "debug": "2.6.9",
928 | "depd": "~1.1.2",
929 | "encodeurl": "~1.0.2",
930 | "escape-html": "~1.0.3",
931 | "etag": "~1.8.1",
932 | "finalhandler": "1.1.1",
933 | "fresh": "0.5.2",
934 | "merge-descriptors": "1.0.1",
935 | "methods": "~1.1.2",
936 | "on-finished": "~2.3.0",
937 | "parseurl": "~1.3.2",
938 | "path-to-regexp": "0.1.7",
939 | "proxy-addr": "~2.0.4",
940 | "qs": "6.5.2",
941 | "range-parser": "~1.2.0",
942 | "safe-buffer": "5.1.2",
943 | "send": "0.16.2",
944 | "serve-static": "1.13.2",
945 | "setprototypeof": "1.1.0",
946 | "statuses": "~1.4.0",
947 | "type-is": "~1.6.16",
948 | "utils-merge": "1.0.1",
949 | "vary": "~1.1.2"
950 | }
951 | },
952 | "extend": {
953 | "version": "3.0.2",
954 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
955 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
956 | },
957 | "extend-shallow": {
958 | "version": "3.0.2",
959 | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
960 | "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
961 | "requires": {
962 | "assign-symbols": "^1.0.0",
963 | "is-extendable": "^1.0.1"
964 | },
965 | "dependencies": {
966 | "is-extendable": {
967 | "version": "1.0.1",
968 | "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
969 | "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
970 | "requires": {
971 | "is-plain-object": "^2.0.4"
972 | }
973 | }
974 | }
975 | },
976 | "extglob": {
977 | "version": "2.0.4",
978 | "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
979 | "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
980 | "requires": {
981 | "array-unique": "^0.3.2",
982 | "define-property": "^1.0.0",
983 | "expand-brackets": "^2.1.4",
984 | "extend-shallow": "^2.0.1",
985 | "fragment-cache": "^0.2.1",
986 | "regex-not": "^1.0.0",
987 | "snapdragon": "^0.8.1",
988 | "to-regex": "^3.0.1"
989 | },
990 | "dependencies": {
991 | "define-property": {
992 | "version": "1.0.0",
993 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
994 | "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
995 | "requires": {
996 | "is-descriptor": "^1.0.0"
997 | }
998 | },
999 | "extend-shallow": {
1000 | "version": "2.0.1",
1001 | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
1002 | "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
1003 | "requires": {
1004 | "is-extendable": "^0.1.0"
1005 | }
1006 | },
1007 | "is-accessor-descriptor": {
1008 | "version": "1.0.0",
1009 | "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
1010 | "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
1011 | "requires": {
1012 | "kind-of": "^6.0.0"
1013 | }
1014 | },
1015 | "is-data-descriptor": {
1016 | "version": "1.0.0",
1017 | "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
1018 | "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
1019 | "requires": {
1020 | "kind-of": "^6.0.0"
1021 | }
1022 | },
1023 | "is-descriptor": {
1024 | "version": "1.0.2",
1025 | "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
1026 | "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
1027 | "requires": {
1028 | "is-accessor-descriptor": "^1.0.0",
1029 | "is-data-descriptor": "^1.0.0",
1030 | "kind-of": "^6.0.2"
1031 | }
1032 | }
1033 | }
1034 | },
1035 | "extsprintf": {
1036 | "version": "1.3.0",
1037 | "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
1038 | "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU="
1039 | },
1040 | "fast-deep-equal": {
1041 | "version": "2.0.1",
1042 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz",
1043 | "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk="
1044 | },
1045 | "fast-json-stable-stringify": {
1046 | "version": "2.0.0",
1047 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
1048 | "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I="
1049 | },
1050 | "fast-text-encoding": {
1051 | "version": "1.0.0",
1052 | "resolved": "https://registry.npmjs.org/fast-text-encoding/-/fast-text-encoding-1.0.0.tgz",
1053 | "integrity": "sha512-R9bHCvweUxxwkDwhjav5vxpFvdPGlVngtqmx4pIZfSUhM/Q4NiIUHB456BAf+Q1Nwu3HEZYONtu+Rya+af4jiQ=="
1054 | },
1055 | "fill-range": {
1056 | "version": "4.0.0",
1057 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
1058 | "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
1059 | "requires": {
1060 | "extend-shallow": "^2.0.1",
1061 | "is-number": "^3.0.0",
1062 | "repeat-string": "^1.6.1",
1063 | "to-regex-range": "^2.1.0"
1064 | },
1065 | "dependencies": {
1066 | "extend-shallow": {
1067 | "version": "2.0.1",
1068 | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
1069 | "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
1070 | "requires": {
1071 | "is-extendable": "^0.1.0"
1072 | }
1073 | }
1074 | }
1075 | },
1076 | "finalhandler": {
1077 | "version": "1.1.1",
1078 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz",
1079 | "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==",
1080 | "requires": {
1081 | "debug": "2.6.9",
1082 | "encodeurl": "~1.0.2",
1083 | "escape-html": "~1.0.3",
1084 | "on-finished": "~2.3.0",
1085 | "parseurl": "~1.3.2",
1086 | "statuses": "~1.4.0",
1087 | "unpipe": "~1.0.0"
1088 | }
1089 | },
1090 | "for-in": {
1091 | "version": "1.0.2",
1092 | "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
1093 | "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA="
1094 | },
1095 | "forever-agent": {
1096 | "version": "0.6.1",
1097 | "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
1098 | "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE="
1099 | },
1100 | "form-data": {
1101 | "version": "2.3.3",
1102 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
1103 | "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
1104 | "requires": {
1105 | "asynckit": "^0.4.0",
1106 | "combined-stream": "^1.0.6",
1107 | "mime-types": "^2.1.12"
1108 | }
1109 | },
1110 | "forwarded": {
1111 | "version": "0.1.2",
1112 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz",
1113 | "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ="
1114 | },
1115 | "fragment-cache": {
1116 | "version": "0.2.1",
1117 | "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
1118 | "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
1119 | "requires": {
1120 | "map-cache": "^0.2.2"
1121 | }
1122 | },
1123 | "fresh": {
1124 | "version": "0.5.2",
1125 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
1126 | "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac="
1127 | },
1128 | "fsevents": {
1129 | "version": "1.2.7",
1130 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.7.tgz",
1131 | "integrity": "sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw==",
1132 | "optional": true,
1133 | "requires": {
1134 | "nan": "^2.9.2",
1135 | "node-pre-gyp": "^0.10.0"
1136 | },
1137 | "dependencies": {
1138 | "abbrev": {
1139 | "version": "1.1.1",
1140 | "bundled": true,
1141 | "optional": true
1142 | },
1143 | "ansi-regex": {
1144 | "version": "2.1.1",
1145 | "bundled": true
1146 | },
1147 | "aproba": {
1148 | "version": "1.2.0",
1149 | "bundled": true,
1150 | "optional": true
1151 | },
1152 | "are-we-there-yet": {
1153 | "version": "1.1.5",
1154 | "bundled": true,
1155 | "optional": true,
1156 | "requires": {
1157 | "delegates": "^1.0.0",
1158 | "readable-stream": "^2.0.6"
1159 | }
1160 | },
1161 | "balanced-match": {
1162 | "version": "1.0.0",
1163 | "bundled": true
1164 | },
1165 | "brace-expansion": {
1166 | "version": "1.1.11",
1167 | "bundled": true,
1168 | "requires": {
1169 | "balanced-match": "^1.0.0",
1170 | "concat-map": "0.0.1"
1171 | }
1172 | },
1173 | "chownr": {
1174 | "version": "1.1.1",
1175 | "bundled": true,
1176 | "optional": true
1177 | },
1178 | "code-point-at": {
1179 | "version": "1.1.0",
1180 | "bundled": true
1181 | },
1182 | "concat-map": {
1183 | "version": "0.0.1",
1184 | "bundled": true
1185 | },
1186 | "console-control-strings": {
1187 | "version": "1.1.0",
1188 | "bundled": true
1189 | },
1190 | "core-util-is": {
1191 | "version": "1.0.2",
1192 | "bundled": true,
1193 | "optional": true
1194 | },
1195 | "debug": {
1196 | "version": "2.6.9",
1197 | "bundled": true,
1198 | "optional": true,
1199 | "requires": {
1200 | "ms": "2.0.0"
1201 | }
1202 | },
1203 | "deep-extend": {
1204 | "version": "0.6.0",
1205 | "bundled": true,
1206 | "optional": true
1207 | },
1208 | "delegates": {
1209 | "version": "1.0.0",
1210 | "bundled": true,
1211 | "optional": true
1212 | },
1213 | "detect-libc": {
1214 | "version": "1.0.3",
1215 | "bundled": true,
1216 | "optional": true
1217 | },
1218 | "fs-minipass": {
1219 | "version": "1.2.5",
1220 | "bundled": true,
1221 | "optional": true,
1222 | "requires": {
1223 | "minipass": "^2.2.1"
1224 | }
1225 | },
1226 | "fs.realpath": {
1227 | "version": "1.0.0",
1228 | "bundled": true,
1229 | "optional": true
1230 | },
1231 | "gauge": {
1232 | "version": "2.7.4",
1233 | "bundled": true,
1234 | "optional": true,
1235 | "requires": {
1236 | "aproba": "^1.0.3",
1237 | "console-control-strings": "^1.0.0",
1238 | "has-unicode": "^2.0.0",
1239 | "object-assign": "^4.1.0",
1240 | "signal-exit": "^3.0.0",
1241 | "string-width": "^1.0.1",
1242 | "strip-ansi": "^3.0.1",
1243 | "wide-align": "^1.1.0"
1244 | }
1245 | },
1246 | "glob": {
1247 | "version": "7.1.3",
1248 | "bundled": true,
1249 | "optional": true,
1250 | "requires": {
1251 | "fs.realpath": "^1.0.0",
1252 | "inflight": "^1.0.4",
1253 | "inherits": "2",
1254 | "minimatch": "^3.0.4",
1255 | "once": "^1.3.0",
1256 | "path-is-absolute": "^1.0.0"
1257 | }
1258 | },
1259 | "has-unicode": {
1260 | "version": "2.0.1",
1261 | "bundled": true,
1262 | "optional": true
1263 | },
1264 | "iconv-lite": {
1265 | "version": "0.4.24",
1266 | "bundled": true,
1267 | "optional": true,
1268 | "requires": {
1269 | "safer-buffer": ">= 2.1.2 < 3"
1270 | }
1271 | },
1272 | "ignore-walk": {
1273 | "version": "3.0.1",
1274 | "bundled": true,
1275 | "optional": true,
1276 | "requires": {
1277 | "minimatch": "^3.0.4"
1278 | }
1279 | },
1280 | "inflight": {
1281 | "version": "1.0.6",
1282 | "bundled": true,
1283 | "optional": true,
1284 | "requires": {
1285 | "once": "^1.3.0",
1286 | "wrappy": "1"
1287 | }
1288 | },
1289 | "inherits": {
1290 | "version": "2.0.3",
1291 | "bundled": true
1292 | },
1293 | "ini": {
1294 | "version": "1.3.5",
1295 | "bundled": true,
1296 | "optional": true
1297 | },
1298 | "is-fullwidth-code-point": {
1299 | "version": "1.0.0",
1300 | "bundled": true,
1301 | "requires": {
1302 | "number-is-nan": "^1.0.0"
1303 | }
1304 | },
1305 | "isarray": {
1306 | "version": "1.0.0",
1307 | "bundled": true,
1308 | "optional": true
1309 | },
1310 | "minimatch": {
1311 | "version": "3.0.4",
1312 | "bundled": true,
1313 | "requires": {
1314 | "brace-expansion": "^1.1.7"
1315 | }
1316 | },
1317 | "minimist": {
1318 | "version": "0.0.8",
1319 | "bundled": true
1320 | },
1321 | "minipass": {
1322 | "version": "2.3.5",
1323 | "bundled": true,
1324 | "requires": {
1325 | "safe-buffer": "^5.1.2",
1326 | "yallist": "^3.0.0"
1327 | }
1328 | },
1329 | "minizlib": {
1330 | "version": "1.2.1",
1331 | "bundled": true,
1332 | "optional": true,
1333 | "requires": {
1334 | "minipass": "^2.2.1"
1335 | }
1336 | },
1337 | "mkdirp": {
1338 | "version": "0.5.1",
1339 | "bundled": true,
1340 | "requires": {
1341 | "minimist": "0.0.8"
1342 | }
1343 | },
1344 | "ms": {
1345 | "version": "2.0.0",
1346 | "bundled": true,
1347 | "optional": true
1348 | },
1349 | "needle": {
1350 | "version": "2.2.4",
1351 | "bundled": true,
1352 | "optional": true,
1353 | "requires": {
1354 | "debug": "^2.1.2",
1355 | "iconv-lite": "^0.4.4",
1356 | "sax": "^1.2.4"
1357 | }
1358 | },
1359 | "node-pre-gyp": {
1360 | "version": "0.10.3",
1361 | "bundled": true,
1362 | "optional": true,
1363 | "requires": {
1364 | "detect-libc": "^1.0.2",
1365 | "mkdirp": "^0.5.1",
1366 | "needle": "^2.2.1",
1367 | "nopt": "^4.0.1",
1368 | "npm-packlist": "^1.1.6",
1369 | "npmlog": "^4.0.2",
1370 | "rc": "^1.2.7",
1371 | "rimraf": "^2.6.1",
1372 | "semver": "^5.3.0",
1373 | "tar": "^4"
1374 | }
1375 | },
1376 | "nopt": {
1377 | "version": "4.0.1",
1378 | "bundled": true,
1379 | "optional": true,
1380 | "requires": {
1381 | "abbrev": "1",
1382 | "osenv": "^0.1.4"
1383 | }
1384 | },
1385 | "npm-bundled": {
1386 | "version": "1.0.5",
1387 | "bundled": true,
1388 | "optional": true
1389 | },
1390 | "npm-packlist": {
1391 | "version": "1.2.0",
1392 | "bundled": true,
1393 | "optional": true,
1394 | "requires": {
1395 | "ignore-walk": "^3.0.1",
1396 | "npm-bundled": "^1.0.1"
1397 | }
1398 | },
1399 | "npmlog": {
1400 | "version": "4.1.2",
1401 | "bundled": true,
1402 | "optional": true,
1403 | "requires": {
1404 | "are-we-there-yet": "~1.1.2",
1405 | "console-control-strings": "~1.1.0",
1406 | "gauge": "~2.7.3",
1407 | "set-blocking": "~2.0.0"
1408 | }
1409 | },
1410 | "number-is-nan": {
1411 | "version": "1.0.1",
1412 | "bundled": true
1413 | },
1414 | "object-assign": {
1415 | "version": "4.1.1",
1416 | "bundled": true,
1417 | "optional": true
1418 | },
1419 | "once": {
1420 | "version": "1.4.0",
1421 | "bundled": true,
1422 | "requires": {
1423 | "wrappy": "1"
1424 | }
1425 | },
1426 | "os-homedir": {
1427 | "version": "1.0.2",
1428 | "bundled": true,
1429 | "optional": true
1430 | },
1431 | "os-tmpdir": {
1432 | "version": "1.0.2",
1433 | "bundled": true,
1434 | "optional": true
1435 | },
1436 | "osenv": {
1437 | "version": "0.1.5",
1438 | "bundled": true,
1439 | "optional": true,
1440 | "requires": {
1441 | "os-homedir": "^1.0.0",
1442 | "os-tmpdir": "^1.0.0"
1443 | }
1444 | },
1445 | "path-is-absolute": {
1446 | "version": "1.0.1",
1447 | "bundled": true,
1448 | "optional": true
1449 | },
1450 | "process-nextick-args": {
1451 | "version": "2.0.0",
1452 | "bundled": true,
1453 | "optional": true
1454 | },
1455 | "rc": {
1456 | "version": "1.2.8",
1457 | "bundled": true,
1458 | "optional": true,
1459 | "requires": {
1460 | "deep-extend": "^0.6.0",
1461 | "ini": "~1.3.0",
1462 | "minimist": "^1.2.0",
1463 | "strip-json-comments": "~2.0.1"
1464 | },
1465 | "dependencies": {
1466 | "minimist": {
1467 | "version": "1.2.0",
1468 | "bundled": true,
1469 | "optional": true
1470 | }
1471 | }
1472 | },
1473 | "readable-stream": {
1474 | "version": "2.3.6",
1475 | "bundled": true,
1476 | "optional": true,
1477 | "requires": {
1478 | "core-util-is": "~1.0.0",
1479 | "inherits": "~2.0.3",
1480 | "isarray": "~1.0.0",
1481 | "process-nextick-args": "~2.0.0",
1482 | "safe-buffer": "~5.1.1",
1483 | "string_decoder": "~1.1.1",
1484 | "util-deprecate": "~1.0.1"
1485 | }
1486 | },
1487 | "rimraf": {
1488 | "version": "2.6.3",
1489 | "bundled": true,
1490 | "optional": true,
1491 | "requires": {
1492 | "glob": "^7.1.3"
1493 | }
1494 | },
1495 | "safe-buffer": {
1496 | "version": "5.1.2",
1497 | "bundled": true
1498 | },
1499 | "safer-buffer": {
1500 | "version": "2.1.2",
1501 | "bundled": true,
1502 | "optional": true
1503 | },
1504 | "sax": {
1505 | "version": "1.2.4",
1506 | "bundled": true,
1507 | "optional": true
1508 | },
1509 | "semver": {
1510 | "version": "5.6.0",
1511 | "bundled": true,
1512 | "optional": true
1513 | },
1514 | "set-blocking": {
1515 | "version": "2.0.0",
1516 | "bundled": true,
1517 | "optional": true
1518 | },
1519 | "signal-exit": {
1520 | "version": "3.0.2",
1521 | "bundled": true,
1522 | "optional": true
1523 | },
1524 | "string-width": {
1525 | "version": "1.0.2",
1526 | "bundled": true,
1527 | "requires": {
1528 | "code-point-at": "^1.0.0",
1529 | "is-fullwidth-code-point": "^1.0.0",
1530 | "strip-ansi": "^3.0.0"
1531 | }
1532 | },
1533 | "string_decoder": {
1534 | "version": "1.1.1",
1535 | "bundled": true,
1536 | "optional": true,
1537 | "requires": {
1538 | "safe-buffer": "~5.1.0"
1539 | }
1540 | },
1541 | "strip-ansi": {
1542 | "version": "3.0.1",
1543 | "bundled": true,
1544 | "requires": {
1545 | "ansi-regex": "^2.0.0"
1546 | }
1547 | },
1548 | "strip-json-comments": {
1549 | "version": "2.0.1",
1550 | "bundled": true,
1551 | "optional": true
1552 | },
1553 | "tar": {
1554 | "version": "4.4.8",
1555 | "bundled": true,
1556 | "optional": true,
1557 | "requires": {
1558 | "chownr": "^1.1.1",
1559 | "fs-minipass": "^1.2.5",
1560 | "minipass": "^2.3.4",
1561 | "minizlib": "^1.1.1",
1562 | "mkdirp": "^0.5.0",
1563 | "safe-buffer": "^5.1.2",
1564 | "yallist": "^3.0.2"
1565 | }
1566 | },
1567 | "util-deprecate": {
1568 | "version": "1.0.2",
1569 | "bundled": true,
1570 | "optional": true
1571 | },
1572 | "wide-align": {
1573 | "version": "1.1.3",
1574 | "bundled": true,
1575 | "optional": true,
1576 | "requires": {
1577 | "string-width": "^1.0.2 || 2"
1578 | }
1579 | },
1580 | "wrappy": {
1581 | "version": "1.0.2",
1582 | "bundled": true
1583 | },
1584 | "yallist": {
1585 | "version": "3.0.3",
1586 | "bundled": true
1587 | }
1588 | }
1589 | },
1590 | "gaxios": {
1591 | "version": "1.8.2",
1592 | "resolved": "https://registry.npmjs.org/gaxios/-/gaxios-1.8.2.tgz",
1593 | "integrity": "sha512-Mp6zmABg+0CxJA4b7DEWQ4ZWQzEaWxRNmHAcvCO+HU3dfoFTY925bdpZrTkLWPEtKjS9RBJKrJInzb+VtvAVYA==",
1594 | "requires": {
1595 | "abort-controller": "^2.0.2",
1596 | "extend": "^3.0.2",
1597 | "https-proxy-agent": "^2.2.1",
1598 | "node-fetch": "^2.3.0"
1599 | }
1600 | },
1601 | "gcp-metadata": {
1602 | "version": "0.9.3",
1603 | "resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-0.9.3.tgz",
1604 | "integrity": "sha512-caV4S84xAjENtpezLCT/GILEAF5h/bC4cNqZFmt/tjTn8t+JBtTkQrgBrJu3857YdsnlM8rxX/PMcKGtE8hUlw==",
1605 | "requires": {
1606 | "gaxios": "^1.0.2",
1607 | "json-bigint": "^0.3.0"
1608 | }
1609 | },
1610 | "gcs-resumable-upload": {
1611 | "version": "0.14.1",
1612 | "resolved": "https://registry.npmjs.org/gcs-resumable-upload/-/gcs-resumable-upload-0.14.1.tgz",
1613 | "integrity": "sha512-vkIxLeVyW20DdcyhI8GvOkISV62y7+fKAdelUTn8F5en8AmPduqro5xz3VoHkj/RJ3PQmqNovYYaYPyPHwebzw==",
1614 | "requires": {
1615 | "configstore": "^4.0.0",
1616 | "google-auth-library": "^3.0.0",
1617 | "pumpify": "^1.5.1",
1618 | "request": "^2.87.0",
1619 | "stream-events": "^1.0.4"
1620 | }
1621 | },
1622 | "get-stream": {
1623 | "version": "3.0.0",
1624 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
1625 | "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ="
1626 | },
1627 | "get-value": {
1628 | "version": "2.0.6",
1629 | "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
1630 | "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg="
1631 | },
1632 | "getpass": {
1633 | "version": "0.1.7",
1634 | "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
1635 | "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
1636 | "requires": {
1637 | "assert-plus": "^1.0.0"
1638 | }
1639 | },
1640 | "glob-parent": {
1641 | "version": "3.1.0",
1642 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
1643 | "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
1644 | "requires": {
1645 | "is-glob": "^3.1.0",
1646 | "path-dirname": "^1.0.0"
1647 | },
1648 | "dependencies": {
1649 | "is-glob": {
1650 | "version": "3.1.0",
1651 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
1652 | "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
1653 | "requires": {
1654 | "is-extglob": "^2.1.0"
1655 | }
1656 | }
1657 | }
1658 | },
1659 | "global-dirs": {
1660 | "version": "0.1.1",
1661 | "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz",
1662 | "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=",
1663 | "requires": {
1664 | "ini": "^1.3.4"
1665 | }
1666 | },
1667 | "google-auth-library": {
1668 | "version": "3.1.0",
1669 | "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-3.1.0.tgz",
1670 | "integrity": "sha512-EntjrOgSffw5EhZGoV8+ROPwEK/aQpoMZaULw3bKailEGdjaUI25PmmFc4AN6vG/Q24YEUiuLxtTXa1Usar5Eg==",
1671 | "requires": {
1672 | "base64-js": "^1.3.0",
1673 | "fast-text-encoding": "^1.0.0",
1674 | "gaxios": "^1.2.1",
1675 | "gcp-metadata": "^0.9.3",
1676 | "gtoken": "^2.3.2",
1677 | "https-proxy-agent": "^2.2.1",
1678 | "jws": "^3.1.5",
1679 | "lru-cache": "^5.0.0",
1680 | "semver": "^5.5.0"
1681 | }
1682 | },
1683 | "google-p12-pem": {
1684 | "version": "1.0.4",
1685 | "resolved": "https://registry.npmjs.org/google-p12-pem/-/google-p12-pem-1.0.4.tgz",
1686 | "integrity": "sha512-SwLAUJqUfTB2iS+wFfSS/G9p7bt4eWcc2LyfvmUXe7cWp6p3mpxDo6LLI29MXdU6wvPcQ/up298X7GMC5ylAlA==",
1687 | "requires": {
1688 | "node-forge": "^0.8.0",
1689 | "pify": "^4.0.0"
1690 | }
1691 | },
1692 | "got": {
1693 | "version": "6.7.1",
1694 | "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz",
1695 | "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=",
1696 | "requires": {
1697 | "create-error-class": "^3.0.0",
1698 | "duplexer3": "^0.1.4",
1699 | "get-stream": "^3.0.0",
1700 | "is-redirect": "^1.0.0",
1701 | "is-retry-allowed": "^1.0.0",
1702 | "is-stream": "^1.0.0",
1703 | "lowercase-keys": "^1.0.0",
1704 | "safe-buffer": "^5.0.1",
1705 | "timed-out": "^4.0.0",
1706 | "unzip-response": "^2.0.1",
1707 | "url-parse-lax": "^1.0.0"
1708 | }
1709 | },
1710 | "graceful-fs": {
1711 | "version": "4.1.15",
1712 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz",
1713 | "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA=="
1714 | },
1715 | "gtoken": {
1716 | "version": "2.3.2",
1717 | "resolved": "https://registry.npmjs.org/gtoken/-/gtoken-2.3.2.tgz",
1718 | "integrity": "sha512-F8EObUGyC8Qd3WXTloNULZBwfUsOABoHElihB1F6zGhT/cy38iPL09wGLRY712I+hQnOyA+sYlgPFX2cOKz0qg==",
1719 | "requires": {
1720 | "gaxios": "^1.0.4",
1721 | "google-p12-pem": "^1.0.0",
1722 | "jws": "^3.1.5",
1723 | "mime": "^2.2.0",
1724 | "pify": "^4.0.0"
1725 | },
1726 | "dependencies": {
1727 | "mime": {
1728 | "version": "2.4.0",
1729 | "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.0.tgz",
1730 | "integrity": "sha512-ikBcWwyqXQSHKtciCcctu9YfPbFYZ4+gbHEmE0Q8jzcTYQg5dHCr3g2wwAZjPoJfQVXZq6KXAjpXOTf5/cjT7w=="
1731 | }
1732 | }
1733 | },
1734 | "har-schema": {
1735 | "version": "2.0.0",
1736 | "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
1737 | "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI="
1738 | },
1739 | "har-validator": {
1740 | "version": "5.1.3",
1741 | "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz",
1742 | "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==",
1743 | "requires": {
1744 | "ajv": "^6.5.5",
1745 | "har-schema": "^2.0.0"
1746 | }
1747 | },
1748 | "has-flag": {
1749 | "version": "3.0.0",
1750 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
1751 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
1752 | },
1753 | "has-value": {
1754 | "version": "1.0.0",
1755 | "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz",
1756 | "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=",
1757 | "requires": {
1758 | "get-value": "^2.0.6",
1759 | "has-values": "^1.0.0",
1760 | "isobject": "^3.0.0"
1761 | }
1762 | },
1763 | "has-values": {
1764 | "version": "1.0.0",
1765 | "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz",
1766 | "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=",
1767 | "requires": {
1768 | "is-number": "^3.0.0",
1769 | "kind-of": "^4.0.0"
1770 | },
1771 | "dependencies": {
1772 | "kind-of": {
1773 | "version": "4.0.0",
1774 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
1775 | "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
1776 | "requires": {
1777 | "is-buffer": "^1.1.5"
1778 | }
1779 | }
1780 | }
1781 | },
1782 | "hash-stream-validation": {
1783 | "version": "0.2.1",
1784 | "resolved": "https://registry.npmjs.org/hash-stream-validation/-/hash-stream-validation-0.2.1.tgz",
1785 | "integrity": "sha1-7Mm5l7IYvluzEphii7gHhptz3NE=",
1786 | "requires": {
1787 | "through2": "^2.0.0"
1788 | },
1789 | "dependencies": {
1790 | "through2": {
1791 | "version": "2.0.5",
1792 | "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
1793 | "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
1794 | "requires": {
1795 | "readable-stream": "~2.3.6",
1796 | "xtend": "~4.0.1"
1797 | }
1798 | }
1799 | }
1800 | },
1801 | "http-errors": {
1802 | "version": "1.6.3",
1803 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz",
1804 | "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=",
1805 | "requires": {
1806 | "depd": "~1.1.2",
1807 | "inherits": "2.0.3",
1808 | "setprototypeof": "1.1.0",
1809 | "statuses": ">= 1.4.0 < 2"
1810 | }
1811 | },
1812 | "http-signature": {
1813 | "version": "1.2.0",
1814 | "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
1815 | "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
1816 | "requires": {
1817 | "assert-plus": "^1.0.0",
1818 | "jsprim": "^1.2.2",
1819 | "sshpk": "^1.7.0"
1820 | }
1821 | },
1822 | "https-proxy-agent": {
1823 | "version": "2.2.1",
1824 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz",
1825 | "integrity": "sha512-HPCTS1LW51bcyMYbxUIOO4HEOlQ1/1qRaFWcyxvwaqUS9TY88aoEuHUY33kuAh1YhVVaDQhLZsnPd+XNARWZlQ==",
1826 | "requires": {
1827 | "agent-base": "^4.1.0",
1828 | "debug": "^3.1.0"
1829 | },
1830 | "dependencies": {
1831 | "debug": {
1832 | "version": "3.2.6",
1833 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
1834 | "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
1835 | "requires": {
1836 | "ms": "^2.1.1"
1837 | }
1838 | },
1839 | "ms": {
1840 | "version": "2.1.1",
1841 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
1842 | "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="
1843 | }
1844 | }
1845 | },
1846 | "iconv-lite": {
1847 | "version": "0.4.23",
1848 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz",
1849 | "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==",
1850 | "requires": {
1851 | "safer-buffer": ">= 2.1.2 < 3"
1852 | }
1853 | },
1854 | "ignore-by-default": {
1855 | "version": "1.0.1",
1856 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
1857 | "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk="
1858 | },
1859 | "import-lazy": {
1860 | "version": "2.1.0",
1861 | "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz",
1862 | "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM="
1863 | },
1864 | "imurmurhash": {
1865 | "version": "0.1.4",
1866 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
1867 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o="
1868 | },
1869 | "inherits": {
1870 | "version": "2.0.3",
1871 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
1872 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
1873 | },
1874 | "ini": {
1875 | "version": "1.3.5",
1876 | "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
1877 | "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw=="
1878 | },
1879 | "ipaddr.js": {
1880 | "version": "1.8.0",
1881 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz",
1882 | "integrity": "sha1-6qM9bd16zo9/b+DJygRA5wZzix4="
1883 | },
1884 | "is": {
1885 | "version": "3.3.0",
1886 | "resolved": "https://registry.npmjs.org/is/-/is-3.3.0.tgz",
1887 | "integrity": "sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg=="
1888 | },
1889 | "is-accessor-descriptor": {
1890 | "version": "0.1.6",
1891 | "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
1892 | "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
1893 | "requires": {
1894 | "kind-of": "^3.0.2"
1895 | },
1896 | "dependencies": {
1897 | "kind-of": {
1898 | "version": "3.2.2",
1899 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
1900 | "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
1901 | "requires": {
1902 | "is-buffer": "^1.1.5"
1903 | }
1904 | }
1905 | }
1906 | },
1907 | "is-binary-path": {
1908 | "version": "1.0.1",
1909 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
1910 | "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=",
1911 | "requires": {
1912 | "binary-extensions": "^1.0.0"
1913 | }
1914 | },
1915 | "is-buffer": {
1916 | "version": "1.1.6",
1917 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
1918 | "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="
1919 | },
1920 | "is-ci": {
1921 | "version": "1.2.1",
1922 | "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz",
1923 | "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==",
1924 | "requires": {
1925 | "ci-info": "^1.5.0"
1926 | }
1927 | },
1928 | "is-data-descriptor": {
1929 | "version": "0.1.4",
1930 | "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
1931 | "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
1932 | "requires": {
1933 | "kind-of": "^3.0.2"
1934 | },
1935 | "dependencies": {
1936 | "kind-of": {
1937 | "version": "3.2.2",
1938 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
1939 | "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
1940 | "requires": {
1941 | "is-buffer": "^1.1.5"
1942 | }
1943 | }
1944 | }
1945 | },
1946 | "is-descriptor": {
1947 | "version": "0.1.6",
1948 | "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
1949 | "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
1950 | "requires": {
1951 | "is-accessor-descriptor": "^0.1.6",
1952 | "is-data-descriptor": "^0.1.4",
1953 | "kind-of": "^5.0.0"
1954 | },
1955 | "dependencies": {
1956 | "kind-of": {
1957 | "version": "5.1.0",
1958 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
1959 | "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
1960 | }
1961 | }
1962 | },
1963 | "is-extendable": {
1964 | "version": "0.1.1",
1965 | "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
1966 | "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik="
1967 | },
1968 | "is-extglob": {
1969 | "version": "2.1.1",
1970 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1971 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI="
1972 | },
1973 | "is-fullwidth-code-point": {
1974 | "version": "2.0.0",
1975 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
1976 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8="
1977 | },
1978 | "is-glob": {
1979 | "version": "4.0.0",
1980 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz",
1981 | "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=",
1982 | "requires": {
1983 | "is-extglob": "^2.1.1"
1984 | }
1985 | },
1986 | "is-installed-globally": {
1987 | "version": "0.1.0",
1988 | "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz",
1989 | "integrity": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=",
1990 | "requires": {
1991 | "global-dirs": "^0.1.0",
1992 | "is-path-inside": "^1.0.0"
1993 | }
1994 | },
1995 | "is-npm": {
1996 | "version": "1.0.0",
1997 | "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz",
1998 | "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ="
1999 | },
2000 | "is-number": {
2001 | "version": "3.0.0",
2002 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
2003 | "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
2004 | "requires": {
2005 | "kind-of": "^3.0.2"
2006 | },
2007 | "dependencies": {
2008 | "kind-of": {
2009 | "version": "3.2.2",
2010 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
2011 | "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
2012 | "requires": {
2013 | "is-buffer": "^1.1.5"
2014 | }
2015 | }
2016 | }
2017 | },
2018 | "is-obj": {
2019 | "version": "1.0.1",
2020 | "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
2021 | "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8="
2022 | },
2023 | "is-path-inside": {
2024 | "version": "1.0.1",
2025 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz",
2026 | "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=",
2027 | "requires": {
2028 | "path-is-inside": "^1.0.1"
2029 | }
2030 | },
2031 | "is-plain-object": {
2032 | "version": "2.0.4",
2033 | "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
2034 | "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
2035 | "requires": {
2036 | "isobject": "^3.0.1"
2037 | }
2038 | },
2039 | "is-redirect": {
2040 | "version": "1.0.0",
2041 | "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz",
2042 | "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ="
2043 | },
2044 | "is-retry-allowed": {
2045 | "version": "1.1.0",
2046 | "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz",
2047 | "integrity": "sha1-EaBgVotnM5REAz0BJaYaINVk+zQ="
2048 | },
2049 | "is-stream": {
2050 | "version": "1.1.0",
2051 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
2052 | "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
2053 | },
2054 | "is-stream-ended": {
2055 | "version": "0.1.4",
2056 | "resolved": "https://registry.npmjs.org/is-stream-ended/-/is-stream-ended-0.1.4.tgz",
2057 | "integrity": "sha512-xj0XPvmr7bQFTvirqnFr50o0hQIh6ZItDqloxt5aJrR4NQsYeSsyFQERYGCAzfindAcnKjINnwEEgLx4IqVzQw=="
2058 | },
2059 | "is-typedarray": {
2060 | "version": "1.0.0",
2061 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
2062 | "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="
2063 | },
2064 | "is-windows": {
2065 | "version": "1.0.2",
2066 | "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
2067 | "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="
2068 | },
2069 | "isarray": {
2070 | "version": "1.0.0",
2071 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
2072 | "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
2073 | },
2074 | "isexe": {
2075 | "version": "2.0.0",
2076 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
2077 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA="
2078 | },
2079 | "isobject": {
2080 | "version": "3.0.1",
2081 | "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
2082 | "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
2083 | },
2084 | "isstream": {
2085 | "version": "0.1.2",
2086 | "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
2087 | "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo="
2088 | },
2089 | "jsbn": {
2090 | "version": "0.1.1",
2091 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
2092 | "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM="
2093 | },
2094 | "json-bigint": {
2095 | "version": "0.3.0",
2096 | "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-0.3.0.tgz",
2097 | "integrity": "sha1-DM2RLEuCcNBfBW+9E4FLU9OCWx4=",
2098 | "requires": {
2099 | "bignumber.js": "^7.0.0"
2100 | }
2101 | },
2102 | "json-schema": {
2103 | "version": "0.2.3",
2104 | "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
2105 | "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM="
2106 | },
2107 | "json-schema-traverse": {
2108 | "version": "0.4.1",
2109 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
2110 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
2111 | },
2112 | "json-stringify-safe": {
2113 | "version": "5.0.1",
2114 | "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
2115 | "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
2116 | },
2117 | "jsprim": {
2118 | "version": "1.4.1",
2119 | "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
2120 | "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
2121 | "requires": {
2122 | "assert-plus": "1.0.0",
2123 | "extsprintf": "1.3.0",
2124 | "json-schema": "0.2.3",
2125 | "verror": "1.10.0"
2126 | }
2127 | },
2128 | "jwa": {
2129 | "version": "1.4.0",
2130 | "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.0.tgz",
2131 | "integrity": "sha512-mt6IHaq0ZZWDBspg0Pheu3r9sVNMEZn+GJe1zcdYyhFcDSclp3J8xEdO4PjZolZ2i8xlaVU1LetHM0nJejYsEw==",
2132 | "requires": {
2133 | "buffer-equal-constant-time": "1.0.1",
2134 | "ecdsa-sig-formatter": "1.0.11",
2135 | "safe-buffer": "^5.0.1"
2136 | }
2137 | },
2138 | "jws": {
2139 | "version": "3.2.1",
2140 | "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.1.tgz",
2141 | "integrity": "sha512-bGA2omSrFUkd72dhh05bIAN832znP4wOU3lfuXtRBuGTbsmNmDXMQg28f0Vsxaxgk4myF5YkKQpz6qeRpMgX9g==",
2142 | "requires": {
2143 | "jwa": "^1.2.0",
2144 | "safe-buffer": "^5.0.1"
2145 | }
2146 | },
2147 | "kind-of": {
2148 | "version": "6.0.2",
2149 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
2150 | "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
2151 | },
2152 | "latest-version": {
2153 | "version": "3.1.0",
2154 | "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz",
2155 | "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=",
2156 | "requires": {
2157 | "package-json": "^4.0.0"
2158 | }
2159 | },
2160 | "lodash": {
2161 | "version": "4.17.11",
2162 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz",
2163 | "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg=="
2164 | },
2165 | "lowercase-keys": {
2166 | "version": "1.0.1",
2167 | "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
2168 | "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA=="
2169 | },
2170 | "lru-cache": {
2171 | "version": "5.1.1",
2172 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
2173 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
2174 | "requires": {
2175 | "yallist": "^3.0.2"
2176 | }
2177 | },
2178 | "make-dir": {
2179 | "version": "1.3.0",
2180 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz",
2181 | "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==",
2182 | "requires": {
2183 | "pify": "^3.0.0"
2184 | },
2185 | "dependencies": {
2186 | "pify": {
2187 | "version": "3.0.0",
2188 | "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
2189 | "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY="
2190 | }
2191 | }
2192 | },
2193 | "map-cache": {
2194 | "version": "0.2.2",
2195 | "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
2196 | "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8="
2197 | },
2198 | "map-visit": {
2199 | "version": "1.0.0",
2200 | "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
2201 | "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=",
2202 | "requires": {
2203 | "object-visit": "^1.0.0"
2204 | }
2205 | },
2206 | "media-typer": {
2207 | "version": "0.3.0",
2208 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
2209 | "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g="
2210 | },
2211 | "merge-descriptors": {
2212 | "version": "1.0.1",
2213 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
2214 | "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E="
2215 | },
2216 | "methods": {
2217 | "version": "1.1.2",
2218 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
2219 | "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4="
2220 | },
2221 | "micromatch": {
2222 | "version": "3.1.10",
2223 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
2224 | "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
2225 | "requires": {
2226 | "arr-diff": "^4.0.0",
2227 | "array-unique": "^0.3.2",
2228 | "braces": "^2.3.1",
2229 | "define-property": "^2.0.2",
2230 | "extend-shallow": "^3.0.2",
2231 | "extglob": "^2.0.4",
2232 | "fragment-cache": "^0.2.1",
2233 | "kind-of": "^6.0.2",
2234 | "nanomatch": "^1.2.9",
2235 | "object.pick": "^1.3.0",
2236 | "regex-not": "^1.0.0",
2237 | "snapdragon": "^0.8.1",
2238 | "to-regex": "^3.0.2"
2239 | }
2240 | },
2241 | "mime": {
2242 | "version": "1.4.1",
2243 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz",
2244 | "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ=="
2245 | },
2246 | "mime-db": {
2247 | "version": "1.38.0",
2248 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz",
2249 | "integrity": "sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg=="
2250 | },
2251 | "mime-types": {
2252 | "version": "2.1.22",
2253 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz",
2254 | "integrity": "sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog==",
2255 | "requires": {
2256 | "mime-db": "~1.38.0"
2257 | }
2258 | },
2259 | "minimatch": {
2260 | "version": "3.0.4",
2261 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
2262 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
2263 | "requires": {
2264 | "brace-expansion": "^1.1.7"
2265 | }
2266 | },
2267 | "minimist": {
2268 | "version": "1.2.0",
2269 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
2270 | "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
2271 | },
2272 | "mixin-deep": {
2273 | "version": "1.3.1",
2274 | "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz",
2275 | "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==",
2276 | "requires": {
2277 | "for-in": "^1.0.2",
2278 | "is-extendable": "^1.0.1"
2279 | },
2280 | "dependencies": {
2281 | "is-extendable": {
2282 | "version": "1.0.1",
2283 | "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
2284 | "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
2285 | "requires": {
2286 | "is-plain-object": "^2.0.4"
2287 | }
2288 | }
2289 | }
2290 | },
2291 | "ms": {
2292 | "version": "2.0.0",
2293 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
2294 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
2295 | },
2296 | "nan": {
2297 | "version": "2.12.1",
2298 | "resolved": "https://registry.npmjs.org/nan/-/nan-2.12.1.tgz",
2299 | "integrity": "sha512-JY7V6lRkStKcKTvHO5NVSQRv+RV+FIL5pvDoLiAtSL9pKlC5x9PKQcZDsq7m4FO4d57mkhC6Z+QhAh3Jdk5JFw==",
2300 | "optional": true
2301 | },
2302 | "nanomatch": {
2303 | "version": "1.2.13",
2304 | "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
2305 | "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
2306 | "requires": {
2307 | "arr-diff": "^4.0.0",
2308 | "array-unique": "^0.3.2",
2309 | "define-property": "^2.0.2",
2310 | "extend-shallow": "^3.0.2",
2311 | "fragment-cache": "^0.2.1",
2312 | "is-windows": "^1.0.2",
2313 | "kind-of": "^6.0.2",
2314 | "object.pick": "^1.3.0",
2315 | "regex-not": "^1.0.0",
2316 | "snapdragon": "^0.8.1",
2317 | "to-regex": "^3.0.1"
2318 | }
2319 | },
2320 | "negotiator": {
2321 | "version": "0.6.1",
2322 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz",
2323 | "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk="
2324 | },
2325 | "node-fetch": {
2326 | "version": "2.3.0",
2327 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.3.0.tgz",
2328 | "integrity": "sha512-MOd8pV3fxENbryESLgVIeaGKrdl+uaYhCSSVkjeOb/31/njTpcis5aWfdqgNlHIrKOLRbMnfPINPOML2CIFeXA=="
2329 | },
2330 | "node-forge": {
2331 | "version": "0.8.1",
2332 | "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.8.1.tgz",
2333 | "integrity": "sha512-C/42HVb5eRtnDgRKOFx4bJH6LwbGQwbEHOC/trQwQSR6xWAUR/jlWoUJnxOmFTvdmDIZtjl2VH4dl3VpQuIz5g=="
2334 | },
2335 | "nodemon": {
2336 | "version": "1.18.10",
2337 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-1.18.10.tgz",
2338 | "integrity": "sha512-we51yBb1TfEvZamFchRgcfLbVYgg0xlGbyXmOtbBzDwxwgewYS/YbZ5tnlnsH51+AoSTTsT3A2E/FloUbtH8cQ==",
2339 | "requires": {
2340 | "chokidar": "^2.1.0",
2341 | "debug": "^3.1.0",
2342 | "ignore-by-default": "^1.0.1",
2343 | "minimatch": "^3.0.4",
2344 | "pstree.remy": "^1.1.6",
2345 | "semver": "^5.5.0",
2346 | "supports-color": "^5.2.0",
2347 | "touch": "^3.1.0",
2348 | "undefsafe": "^2.0.2",
2349 | "update-notifier": "^2.5.0"
2350 | },
2351 | "dependencies": {
2352 | "debug": {
2353 | "version": "3.2.6",
2354 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
2355 | "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
2356 | "requires": {
2357 | "ms": "^2.1.1"
2358 | }
2359 | },
2360 | "ms": {
2361 | "version": "2.1.1",
2362 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
2363 | "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="
2364 | }
2365 | }
2366 | },
2367 | "nopt": {
2368 | "version": "1.0.10",
2369 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz",
2370 | "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=",
2371 | "requires": {
2372 | "abbrev": "1"
2373 | }
2374 | },
2375 | "normalize-path": {
2376 | "version": "3.0.0",
2377 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
2378 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
2379 | },
2380 | "npm-run-path": {
2381 | "version": "2.0.2",
2382 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
2383 | "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
2384 | "requires": {
2385 | "path-key": "^2.0.0"
2386 | }
2387 | },
2388 | "oauth-sign": {
2389 | "version": "0.9.0",
2390 | "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
2391 | "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="
2392 | },
2393 | "object-copy": {
2394 | "version": "0.1.0",
2395 | "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz",
2396 | "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=",
2397 | "requires": {
2398 | "copy-descriptor": "^0.1.0",
2399 | "define-property": "^0.2.5",
2400 | "kind-of": "^3.0.3"
2401 | },
2402 | "dependencies": {
2403 | "define-property": {
2404 | "version": "0.2.5",
2405 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
2406 | "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
2407 | "requires": {
2408 | "is-descriptor": "^0.1.0"
2409 | }
2410 | },
2411 | "kind-of": {
2412 | "version": "3.2.2",
2413 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
2414 | "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
2415 | "requires": {
2416 | "is-buffer": "^1.1.5"
2417 | }
2418 | }
2419 | }
2420 | },
2421 | "object-visit": {
2422 | "version": "1.0.1",
2423 | "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz",
2424 | "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=",
2425 | "requires": {
2426 | "isobject": "^3.0.0"
2427 | }
2428 | },
2429 | "object.pick": {
2430 | "version": "1.3.0",
2431 | "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz",
2432 | "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=",
2433 | "requires": {
2434 | "isobject": "^3.0.1"
2435 | }
2436 | },
2437 | "on-finished": {
2438 | "version": "2.3.0",
2439 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
2440 | "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
2441 | "requires": {
2442 | "ee-first": "1.1.1"
2443 | }
2444 | },
2445 | "once": {
2446 | "version": "1.4.0",
2447 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
2448 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
2449 | "requires": {
2450 | "wrappy": "1"
2451 | }
2452 | },
2453 | "p-finally": {
2454 | "version": "1.0.0",
2455 | "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
2456 | "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4="
2457 | },
2458 | "package-json": {
2459 | "version": "4.0.1",
2460 | "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz",
2461 | "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=",
2462 | "requires": {
2463 | "got": "^6.7.1",
2464 | "registry-auth-token": "^3.0.1",
2465 | "registry-url": "^3.0.3",
2466 | "semver": "^5.1.0"
2467 | }
2468 | },
2469 | "parseurl": {
2470 | "version": "1.3.2",
2471 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz",
2472 | "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M="
2473 | },
2474 | "pascalcase": {
2475 | "version": "0.1.1",
2476 | "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz",
2477 | "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ="
2478 | },
2479 | "path-dirname": {
2480 | "version": "1.0.2",
2481 | "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz",
2482 | "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA="
2483 | },
2484 | "path-is-absolute": {
2485 | "version": "1.0.1",
2486 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
2487 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
2488 | },
2489 | "path-is-inside": {
2490 | "version": "1.0.2",
2491 | "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
2492 | "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM="
2493 | },
2494 | "path-key": {
2495 | "version": "2.0.1",
2496 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
2497 | "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A="
2498 | },
2499 | "path-to-regexp": {
2500 | "version": "0.1.7",
2501 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
2502 | "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w="
2503 | },
2504 | "performance-now": {
2505 | "version": "2.1.0",
2506 | "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
2507 | "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns="
2508 | },
2509 | "pify": {
2510 | "version": "4.0.1",
2511 | "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
2512 | "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g=="
2513 | },
2514 | "posix-character-classes": {
2515 | "version": "0.1.1",
2516 | "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz",
2517 | "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs="
2518 | },
2519 | "prepend-http": {
2520 | "version": "1.0.4",
2521 | "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz",
2522 | "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw="
2523 | },
2524 | "process-nextick-args": {
2525 | "version": "2.0.0",
2526 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
2527 | "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw=="
2528 | },
2529 | "proxy-addr": {
2530 | "version": "2.0.4",
2531 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz",
2532 | "integrity": "sha512-5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA==",
2533 | "requires": {
2534 | "forwarded": "~0.1.2",
2535 | "ipaddr.js": "1.8.0"
2536 | }
2537 | },
2538 | "pseudomap": {
2539 | "version": "1.0.2",
2540 | "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz",
2541 | "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM="
2542 | },
2543 | "psl": {
2544 | "version": "1.1.31",
2545 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.31.tgz",
2546 | "integrity": "sha512-/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw=="
2547 | },
2548 | "pstree.remy": {
2549 | "version": "1.1.6",
2550 | "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.6.tgz",
2551 | "integrity": "sha512-NdF35+QsqD7EgNEI5mkI/X+UwaxVEbQaz9f4IooEmMUv6ZPmlTQYGjBPJGgrlzNdjSvIy4MWMg6Q6vCgBO2K+w=="
2552 | },
2553 | "pump": {
2554 | "version": "2.0.1",
2555 | "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz",
2556 | "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==",
2557 | "requires": {
2558 | "end-of-stream": "^1.1.0",
2559 | "once": "^1.3.1"
2560 | }
2561 | },
2562 | "pumpify": {
2563 | "version": "1.5.1",
2564 | "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz",
2565 | "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==",
2566 | "requires": {
2567 | "duplexify": "^3.6.0",
2568 | "inherits": "^2.0.3",
2569 | "pump": "^2.0.0"
2570 | }
2571 | },
2572 | "punycode": {
2573 | "version": "2.1.1",
2574 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
2575 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
2576 | },
2577 | "qs": {
2578 | "version": "6.5.2",
2579 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
2580 | "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="
2581 | },
2582 | "range-parser": {
2583 | "version": "1.2.0",
2584 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz",
2585 | "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4="
2586 | },
2587 | "raw-body": {
2588 | "version": "2.3.3",
2589 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz",
2590 | "integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==",
2591 | "requires": {
2592 | "bytes": "3.0.0",
2593 | "http-errors": "1.6.3",
2594 | "iconv-lite": "0.4.23",
2595 | "unpipe": "1.0.0"
2596 | }
2597 | },
2598 | "rc": {
2599 | "version": "1.2.8",
2600 | "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
2601 | "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
2602 | "requires": {
2603 | "deep-extend": "^0.6.0",
2604 | "ini": "~1.3.0",
2605 | "minimist": "^1.2.0",
2606 | "strip-json-comments": "~2.0.1"
2607 | }
2608 | },
2609 | "readable-stream": {
2610 | "version": "2.3.6",
2611 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
2612 | "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
2613 | "requires": {
2614 | "core-util-is": "~1.0.0",
2615 | "inherits": "~2.0.3",
2616 | "isarray": "~1.0.0",
2617 | "process-nextick-args": "~2.0.0",
2618 | "safe-buffer": "~5.1.1",
2619 | "string_decoder": "~1.1.1",
2620 | "util-deprecate": "~1.0.1"
2621 | }
2622 | },
2623 | "readdirp": {
2624 | "version": "2.2.1",
2625 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz",
2626 | "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==",
2627 | "requires": {
2628 | "graceful-fs": "^4.1.11",
2629 | "micromatch": "^3.1.10",
2630 | "readable-stream": "^2.0.2"
2631 | }
2632 | },
2633 | "regex-not": {
2634 | "version": "1.0.2",
2635 | "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
2636 | "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
2637 | "requires": {
2638 | "extend-shallow": "^3.0.2",
2639 | "safe-regex": "^1.1.0"
2640 | }
2641 | },
2642 | "registry-auth-token": {
2643 | "version": "3.3.2",
2644 | "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.2.tgz",
2645 | "integrity": "sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==",
2646 | "requires": {
2647 | "rc": "^1.1.6",
2648 | "safe-buffer": "^5.0.1"
2649 | }
2650 | },
2651 | "registry-url": {
2652 | "version": "3.1.0",
2653 | "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz",
2654 | "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=",
2655 | "requires": {
2656 | "rc": "^1.0.1"
2657 | }
2658 | },
2659 | "remove-trailing-separator": {
2660 | "version": "1.1.0",
2661 | "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
2662 | "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8="
2663 | },
2664 | "repeat-element": {
2665 | "version": "1.1.3",
2666 | "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz",
2667 | "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g=="
2668 | },
2669 | "repeat-string": {
2670 | "version": "1.6.1",
2671 | "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
2672 | "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc="
2673 | },
2674 | "request": {
2675 | "version": "2.88.0",
2676 | "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz",
2677 | "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==",
2678 | "requires": {
2679 | "aws-sign2": "~0.7.0",
2680 | "aws4": "^1.8.0",
2681 | "caseless": "~0.12.0",
2682 | "combined-stream": "~1.0.6",
2683 | "extend": "~3.0.2",
2684 | "forever-agent": "~0.6.1",
2685 | "form-data": "~2.3.2",
2686 | "har-validator": "~5.1.0",
2687 | "http-signature": "~1.2.0",
2688 | "is-typedarray": "~1.0.0",
2689 | "isstream": "~0.1.2",
2690 | "json-stringify-safe": "~5.0.1",
2691 | "mime-types": "~2.1.19",
2692 | "oauth-sign": "~0.9.0",
2693 | "performance-now": "^2.1.0",
2694 | "qs": "~6.5.2",
2695 | "safe-buffer": "^5.1.2",
2696 | "tough-cookie": "~2.4.3",
2697 | "tunnel-agent": "^0.6.0",
2698 | "uuid": "^3.3.2"
2699 | }
2700 | },
2701 | "resolve-url": {
2702 | "version": "0.2.1",
2703 | "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz",
2704 | "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo="
2705 | },
2706 | "ret": {
2707 | "version": "0.1.15",
2708 | "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
2709 | "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="
2710 | },
2711 | "retry-request": {
2712 | "version": "4.0.0",
2713 | "resolved": "https://registry.npmjs.org/retry-request/-/retry-request-4.0.0.tgz",
2714 | "integrity": "sha512-S4HNLaWcMP6r8E4TMH52Y7/pM8uNayOcTDDQNBwsCccL1uI+Ol2TljxRDPzaNfbhOB30+XWP5NnZkB3LiJxi1w==",
2715 | "requires": {
2716 | "through2": "^2.0.0"
2717 | },
2718 | "dependencies": {
2719 | "through2": {
2720 | "version": "2.0.5",
2721 | "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
2722 | "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
2723 | "requires": {
2724 | "readable-stream": "~2.3.6",
2725 | "xtend": "~4.0.1"
2726 | }
2727 | }
2728 | }
2729 | },
2730 | "safe-buffer": {
2731 | "version": "5.1.2",
2732 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
2733 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
2734 | },
2735 | "safe-regex": {
2736 | "version": "1.1.0",
2737 | "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz",
2738 | "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=",
2739 | "requires": {
2740 | "ret": "~0.1.10"
2741 | }
2742 | },
2743 | "safer-buffer": {
2744 | "version": "2.1.2",
2745 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
2746 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
2747 | },
2748 | "semver": {
2749 | "version": "5.6.0",
2750 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz",
2751 | "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg=="
2752 | },
2753 | "semver-diff": {
2754 | "version": "2.1.0",
2755 | "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz",
2756 | "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=",
2757 | "requires": {
2758 | "semver": "^5.0.3"
2759 | }
2760 | },
2761 | "send": {
2762 | "version": "0.16.2",
2763 | "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz",
2764 | "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==",
2765 | "requires": {
2766 | "debug": "2.6.9",
2767 | "depd": "~1.1.2",
2768 | "destroy": "~1.0.4",
2769 | "encodeurl": "~1.0.2",
2770 | "escape-html": "~1.0.3",
2771 | "etag": "~1.8.1",
2772 | "fresh": "0.5.2",
2773 | "http-errors": "~1.6.2",
2774 | "mime": "1.4.1",
2775 | "ms": "2.0.0",
2776 | "on-finished": "~2.3.0",
2777 | "range-parser": "~1.2.0",
2778 | "statuses": "~1.4.0"
2779 | }
2780 | },
2781 | "serve-static": {
2782 | "version": "1.13.2",
2783 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz",
2784 | "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==",
2785 | "requires": {
2786 | "encodeurl": "~1.0.2",
2787 | "escape-html": "~1.0.3",
2788 | "parseurl": "~1.3.2",
2789 | "send": "0.16.2"
2790 | }
2791 | },
2792 | "set-value": {
2793 | "version": "2.0.0",
2794 | "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz",
2795 | "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==",
2796 | "requires": {
2797 | "extend-shallow": "^2.0.1",
2798 | "is-extendable": "^0.1.1",
2799 | "is-plain-object": "^2.0.3",
2800 | "split-string": "^3.0.1"
2801 | },
2802 | "dependencies": {
2803 | "extend-shallow": {
2804 | "version": "2.0.1",
2805 | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
2806 | "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
2807 | "requires": {
2808 | "is-extendable": "^0.1.0"
2809 | }
2810 | }
2811 | }
2812 | },
2813 | "setprototypeof": {
2814 | "version": "1.1.0",
2815 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
2816 | "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="
2817 | },
2818 | "shebang-command": {
2819 | "version": "1.2.0",
2820 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
2821 | "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
2822 | "requires": {
2823 | "shebang-regex": "^1.0.0"
2824 | }
2825 | },
2826 | "shebang-regex": {
2827 | "version": "1.0.0",
2828 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
2829 | "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM="
2830 | },
2831 | "signal-exit": {
2832 | "version": "3.0.2",
2833 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz",
2834 | "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0="
2835 | },
2836 | "snakeize": {
2837 | "version": "0.1.0",
2838 | "resolved": "https://registry.npmjs.org/snakeize/-/snakeize-0.1.0.tgz",
2839 | "integrity": "sha1-EMCI2LWOsHazIpu1oE4jLOEmQi0="
2840 | },
2841 | "snapdragon": {
2842 | "version": "0.8.2",
2843 | "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
2844 | "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
2845 | "requires": {
2846 | "base": "^0.11.1",
2847 | "debug": "^2.2.0",
2848 | "define-property": "^0.2.5",
2849 | "extend-shallow": "^2.0.1",
2850 | "map-cache": "^0.2.2",
2851 | "source-map": "^0.5.6",
2852 | "source-map-resolve": "^0.5.0",
2853 | "use": "^3.1.0"
2854 | },
2855 | "dependencies": {
2856 | "define-property": {
2857 | "version": "0.2.5",
2858 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
2859 | "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
2860 | "requires": {
2861 | "is-descriptor": "^0.1.0"
2862 | }
2863 | },
2864 | "extend-shallow": {
2865 | "version": "2.0.1",
2866 | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
2867 | "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
2868 | "requires": {
2869 | "is-extendable": "^0.1.0"
2870 | }
2871 | }
2872 | }
2873 | },
2874 | "snapdragon-node": {
2875 | "version": "2.1.1",
2876 | "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
2877 | "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
2878 | "requires": {
2879 | "define-property": "^1.0.0",
2880 | "isobject": "^3.0.0",
2881 | "snapdragon-util": "^3.0.1"
2882 | },
2883 | "dependencies": {
2884 | "define-property": {
2885 | "version": "1.0.0",
2886 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
2887 | "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
2888 | "requires": {
2889 | "is-descriptor": "^1.0.0"
2890 | }
2891 | },
2892 | "is-accessor-descriptor": {
2893 | "version": "1.0.0",
2894 | "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
2895 | "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
2896 | "requires": {
2897 | "kind-of": "^6.0.0"
2898 | }
2899 | },
2900 | "is-data-descriptor": {
2901 | "version": "1.0.0",
2902 | "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
2903 | "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
2904 | "requires": {
2905 | "kind-of": "^6.0.0"
2906 | }
2907 | },
2908 | "is-descriptor": {
2909 | "version": "1.0.2",
2910 | "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
2911 | "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
2912 | "requires": {
2913 | "is-accessor-descriptor": "^1.0.0",
2914 | "is-data-descriptor": "^1.0.0",
2915 | "kind-of": "^6.0.2"
2916 | }
2917 | }
2918 | }
2919 | },
2920 | "snapdragon-util": {
2921 | "version": "3.0.1",
2922 | "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
2923 | "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
2924 | "requires": {
2925 | "kind-of": "^3.2.0"
2926 | },
2927 | "dependencies": {
2928 | "kind-of": {
2929 | "version": "3.2.2",
2930 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
2931 | "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
2932 | "requires": {
2933 | "is-buffer": "^1.1.5"
2934 | }
2935 | }
2936 | }
2937 | },
2938 | "source-map": {
2939 | "version": "0.5.7",
2940 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
2941 | "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
2942 | },
2943 | "source-map-resolve": {
2944 | "version": "0.5.2",
2945 | "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz",
2946 | "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==",
2947 | "requires": {
2948 | "atob": "^2.1.1",
2949 | "decode-uri-component": "^0.2.0",
2950 | "resolve-url": "^0.2.1",
2951 | "source-map-url": "^0.4.0",
2952 | "urix": "^0.1.0"
2953 | }
2954 | },
2955 | "source-map-url": {
2956 | "version": "0.4.0",
2957 | "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz",
2958 | "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM="
2959 | },
2960 | "split-array-stream": {
2961 | "version": "2.0.0",
2962 | "resolved": "https://registry.npmjs.org/split-array-stream/-/split-array-stream-2.0.0.tgz",
2963 | "integrity": "sha512-hmMswlVY91WvGMxs0k8MRgq8zb2mSen4FmDNc5AFiTWtrBpdZN6nwD6kROVe4vNL+ywrvbCKsWVCnEd4riELIg==",
2964 | "requires": {
2965 | "is-stream-ended": "^0.1.4"
2966 | }
2967 | },
2968 | "split-string": {
2969 | "version": "3.1.0",
2970 | "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
2971 | "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
2972 | "requires": {
2973 | "extend-shallow": "^3.0.0"
2974 | }
2975 | },
2976 | "sshpk": {
2977 | "version": "1.16.1",
2978 | "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz",
2979 | "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==",
2980 | "requires": {
2981 | "asn1": "~0.2.3",
2982 | "assert-plus": "^1.0.0",
2983 | "bcrypt-pbkdf": "^1.0.0",
2984 | "dashdash": "^1.12.0",
2985 | "ecc-jsbn": "~0.1.1",
2986 | "getpass": "^0.1.1",
2987 | "jsbn": "~0.1.0",
2988 | "safer-buffer": "^2.0.2",
2989 | "tweetnacl": "~0.14.0"
2990 | }
2991 | },
2992 | "static-extend": {
2993 | "version": "0.1.2",
2994 | "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz",
2995 | "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=",
2996 | "requires": {
2997 | "define-property": "^0.2.5",
2998 | "object-copy": "^0.1.0"
2999 | },
3000 | "dependencies": {
3001 | "define-property": {
3002 | "version": "0.2.5",
3003 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
3004 | "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
3005 | "requires": {
3006 | "is-descriptor": "^0.1.0"
3007 | }
3008 | }
3009 | }
3010 | },
3011 | "statuses": {
3012 | "version": "1.4.0",
3013 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz",
3014 | "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew=="
3015 | },
3016 | "stream-events": {
3017 | "version": "1.0.5",
3018 | "resolved": "https://registry.npmjs.org/stream-events/-/stream-events-1.0.5.tgz",
3019 | "integrity": "sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg==",
3020 | "requires": {
3021 | "stubs": "^3.0.0"
3022 | }
3023 | },
3024 | "stream-shift": {
3025 | "version": "1.0.0",
3026 | "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz",
3027 | "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI="
3028 | },
3029 | "string-width": {
3030 | "version": "2.1.1",
3031 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
3032 | "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
3033 | "requires": {
3034 | "is-fullwidth-code-point": "^2.0.0",
3035 | "strip-ansi": "^4.0.0"
3036 | }
3037 | },
3038 | "string_decoder": {
3039 | "version": "1.1.1",
3040 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
3041 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
3042 | "requires": {
3043 | "safe-buffer": "~5.1.0"
3044 | }
3045 | },
3046 | "strip-ansi": {
3047 | "version": "4.0.0",
3048 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
3049 | "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
3050 | "requires": {
3051 | "ansi-regex": "^3.0.0"
3052 | }
3053 | },
3054 | "strip-eof": {
3055 | "version": "1.0.0",
3056 | "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
3057 | "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8="
3058 | },
3059 | "strip-json-comments": {
3060 | "version": "2.0.1",
3061 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
3062 | "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo="
3063 | },
3064 | "stubs": {
3065 | "version": "3.0.0",
3066 | "resolved": "https://registry.npmjs.org/stubs/-/stubs-3.0.0.tgz",
3067 | "integrity": "sha1-6NK6H6nJBXAwPAMLaQD31fiavls="
3068 | },
3069 | "supports-color": {
3070 | "version": "5.5.0",
3071 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
3072 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
3073 | "requires": {
3074 | "has-flag": "^3.0.0"
3075 | }
3076 | },
3077 | "teeny-request": {
3078 | "version": "3.11.3",
3079 | "resolved": "https://registry.npmjs.org/teeny-request/-/teeny-request-3.11.3.tgz",
3080 | "integrity": "sha512-CKncqSF7sH6p4rzCgkb/z/Pcos5efl0DmolzvlqRQUNcpRIruOhY9+T1FsIlyEbfWd7MsFpodROOwHYh2BaXzw==",
3081 | "requires": {
3082 | "https-proxy-agent": "^2.2.1",
3083 | "node-fetch": "^2.2.0",
3084 | "uuid": "^3.3.2"
3085 | }
3086 | },
3087 | "term-size": {
3088 | "version": "1.2.0",
3089 | "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz",
3090 | "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=",
3091 | "requires": {
3092 | "execa": "^0.7.0"
3093 | }
3094 | },
3095 | "through2": {
3096 | "version": "3.0.1",
3097 | "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.1.tgz",
3098 | "integrity": "sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==",
3099 | "requires": {
3100 | "readable-stream": "2 || 3"
3101 | }
3102 | },
3103 | "timed-out": {
3104 | "version": "4.0.1",
3105 | "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz",
3106 | "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8="
3107 | },
3108 | "to-object-path": {
3109 | "version": "0.3.0",
3110 | "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz",
3111 | "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=",
3112 | "requires": {
3113 | "kind-of": "^3.0.2"
3114 | },
3115 | "dependencies": {
3116 | "kind-of": {
3117 | "version": "3.2.2",
3118 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
3119 | "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
3120 | "requires": {
3121 | "is-buffer": "^1.1.5"
3122 | }
3123 | }
3124 | }
3125 | },
3126 | "to-regex": {
3127 | "version": "3.0.2",
3128 | "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
3129 | "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
3130 | "requires": {
3131 | "define-property": "^2.0.2",
3132 | "extend-shallow": "^3.0.2",
3133 | "regex-not": "^1.0.2",
3134 | "safe-regex": "^1.1.0"
3135 | }
3136 | },
3137 | "to-regex-range": {
3138 | "version": "2.1.1",
3139 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
3140 | "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
3141 | "requires": {
3142 | "is-number": "^3.0.0",
3143 | "repeat-string": "^1.6.1"
3144 | }
3145 | },
3146 | "touch": {
3147 | "version": "3.1.0",
3148 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz",
3149 | "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==",
3150 | "requires": {
3151 | "nopt": "~1.0.10"
3152 | }
3153 | },
3154 | "tough-cookie": {
3155 | "version": "2.4.3",
3156 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz",
3157 | "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==",
3158 | "requires": {
3159 | "psl": "^1.1.24",
3160 | "punycode": "^1.4.1"
3161 | },
3162 | "dependencies": {
3163 | "punycode": {
3164 | "version": "1.4.1",
3165 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
3166 | "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4="
3167 | }
3168 | }
3169 | },
3170 | "tunnel-agent": {
3171 | "version": "0.6.0",
3172 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
3173 | "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
3174 | "requires": {
3175 | "safe-buffer": "^5.0.1"
3176 | }
3177 | },
3178 | "tweetnacl": {
3179 | "version": "0.14.5",
3180 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
3181 | "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q="
3182 | },
3183 | "type-is": {
3184 | "version": "1.6.16",
3185 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz",
3186 | "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==",
3187 | "requires": {
3188 | "media-typer": "0.3.0",
3189 | "mime-types": "~2.1.18"
3190 | }
3191 | },
3192 | "typedarray": {
3193 | "version": "0.0.6",
3194 | "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
3195 | "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c="
3196 | },
3197 | "undefsafe": {
3198 | "version": "2.0.2",
3199 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.2.tgz",
3200 | "integrity": "sha1-Il9rngM3Zj4Njnz9aG/Cg2zKznY=",
3201 | "requires": {
3202 | "debug": "^2.2.0"
3203 | }
3204 | },
3205 | "union-value": {
3206 | "version": "1.0.0",
3207 | "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz",
3208 | "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=",
3209 | "requires": {
3210 | "arr-union": "^3.1.0",
3211 | "get-value": "^2.0.6",
3212 | "is-extendable": "^0.1.1",
3213 | "set-value": "^0.4.3"
3214 | },
3215 | "dependencies": {
3216 | "extend-shallow": {
3217 | "version": "2.0.1",
3218 | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
3219 | "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
3220 | "requires": {
3221 | "is-extendable": "^0.1.0"
3222 | }
3223 | },
3224 | "set-value": {
3225 | "version": "0.4.3",
3226 | "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz",
3227 | "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=",
3228 | "requires": {
3229 | "extend-shallow": "^2.0.1",
3230 | "is-extendable": "^0.1.1",
3231 | "is-plain-object": "^2.0.1",
3232 | "to-object-path": "^0.3.0"
3233 | }
3234 | }
3235 | }
3236 | },
3237 | "unique-string": {
3238 | "version": "1.0.0",
3239 | "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz",
3240 | "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=",
3241 | "requires": {
3242 | "crypto-random-string": "^1.0.0"
3243 | }
3244 | },
3245 | "unpipe": {
3246 | "version": "1.0.0",
3247 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
3248 | "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw="
3249 | },
3250 | "unset-value": {
3251 | "version": "1.0.0",
3252 | "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz",
3253 | "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=",
3254 | "requires": {
3255 | "has-value": "^0.3.1",
3256 | "isobject": "^3.0.0"
3257 | },
3258 | "dependencies": {
3259 | "has-value": {
3260 | "version": "0.3.1",
3261 | "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz",
3262 | "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=",
3263 | "requires": {
3264 | "get-value": "^2.0.3",
3265 | "has-values": "^0.1.4",
3266 | "isobject": "^2.0.0"
3267 | },
3268 | "dependencies": {
3269 | "isobject": {
3270 | "version": "2.1.0",
3271 | "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
3272 | "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
3273 | "requires": {
3274 | "isarray": "1.0.0"
3275 | }
3276 | }
3277 | }
3278 | },
3279 | "has-values": {
3280 | "version": "0.1.4",
3281 | "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz",
3282 | "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E="
3283 | }
3284 | }
3285 | },
3286 | "unzip-response": {
3287 | "version": "2.0.1",
3288 | "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz",
3289 | "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c="
3290 | },
3291 | "upath": {
3292 | "version": "1.1.2",
3293 | "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.2.tgz",
3294 | "integrity": "sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q=="
3295 | },
3296 | "update-notifier": {
3297 | "version": "2.5.0",
3298 | "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz",
3299 | "integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==",
3300 | "requires": {
3301 | "boxen": "^1.2.1",
3302 | "chalk": "^2.0.1",
3303 | "configstore": "^3.0.0",
3304 | "import-lazy": "^2.1.0",
3305 | "is-ci": "^1.0.10",
3306 | "is-installed-globally": "^0.1.0",
3307 | "is-npm": "^1.0.0",
3308 | "latest-version": "^3.0.0",
3309 | "semver-diff": "^2.0.0",
3310 | "xdg-basedir": "^3.0.0"
3311 | },
3312 | "dependencies": {
3313 | "configstore": {
3314 | "version": "3.1.2",
3315 | "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz",
3316 | "integrity": "sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==",
3317 | "requires": {
3318 | "dot-prop": "^4.1.0",
3319 | "graceful-fs": "^4.1.2",
3320 | "make-dir": "^1.0.0",
3321 | "unique-string": "^1.0.0",
3322 | "write-file-atomic": "^2.0.0",
3323 | "xdg-basedir": "^3.0.0"
3324 | }
3325 | }
3326 | }
3327 | },
3328 | "uri-js": {
3329 | "version": "4.2.2",
3330 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz",
3331 | "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==",
3332 | "requires": {
3333 | "punycode": "^2.1.0"
3334 | }
3335 | },
3336 | "urix": {
3337 | "version": "0.1.0",
3338 | "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
3339 | "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI="
3340 | },
3341 | "url-parse-lax": {
3342 | "version": "1.0.0",
3343 | "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz",
3344 | "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=",
3345 | "requires": {
3346 | "prepend-http": "^1.0.1"
3347 | }
3348 | },
3349 | "use": {
3350 | "version": "3.1.1",
3351 | "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
3352 | "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ=="
3353 | },
3354 | "util-deprecate": {
3355 | "version": "1.0.2",
3356 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
3357 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
3358 | },
3359 | "utils-merge": {
3360 | "version": "1.0.1",
3361 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
3362 | "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM="
3363 | },
3364 | "uuid": {
3365 | "version": "3.3.2",
3366 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz",
3367 | "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA=="
3368 | },
3369 | "vary": {
3370 | "version": "1.1.2",
3371 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
3372 | "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw="
3373 | },
3374 | "verror": {
3375 | "version": "1.10.0",
3376 | "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
3377 | "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
3378 | "requires": {
3379 | "assert-plus": "^1.0.0",
3380 | "core-util-is": "1.0.2",
3381 | "extsprintf": "^1.2.0"
3382 | }
3383 | },
3384 | "which": {
3385 | "version": "1.3.1",
3386 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
3387 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
3388 | "requires": {
3389 | "isexe": "^2.0.0"
3390 | }
3391 | },
3392 | "widest-line": {
3393 | "version": "2.0.1",
3394 | "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz",
3395 | "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==",
3396 | "requires": {
3397 | "string-width": "^2.1.1"
3398 | }
3399 | },
3400 | "wrappy": {
3401 | "version": "1.0.2",
3402 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
3403 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
3404 | },
3405 | "write-file-atomic": {
3406 | "version": "2.4.2",
3407 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.2.tgz",
3408 | "integrity": "sha512-s0b6vB3xIVRLWywa6X9TOMA7k9zio0TMOsl9ZnDkliA/cfJlpHXAscj0gbHVJiTdIuAYpIyqS5GW91fqm6gG5g==",
3409 | "requires": {
3410 | "graceful-fs": "^4.1.11",
3411 | "imurmurhash": "^0.1.4",
3412 | "signal-exit": "^3.0.2"
3413 | }
3414 | },
3415 | "xdg-basedir": {
3416 | "version": "3.0.0",
3417 | "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz",
3418 | "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ="
3419 | },
3420 | "xtend": {
3421 | "version": "4.0.1",
3422 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz",
3423 | "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68="
3424 | },
3425 | "yallist": {
3426 | "version": "3.0.3",
3427 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz",
3428 | "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A=="
3429 | }
3430 | }
3431 | }
3432 |
--------------------------------------------------------------------------------