├── .ebextensions ├── create-dynamodb-table.config ├── create-sns-topic.config └── options.config ├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── misc └── theme-flow.png ├── package-lock.json ├── package.json ├── static ├── bootstrap │ ├── LICENSE │ ├── css │ │ ├── jumbotron-narrow.css │ │ └── theme │ │ │ ├── amelia │ │ │ └── bootstrap.css │ │ │ ├── default │ │ │ └── bootstrap.css │ │ │ ├── flatly │ │ │ └── bootstrap.css │ │ │ ├── slate │ │ │ └── bootstrap.css │ │ │ └── united │ │ │ └── bootstrap.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ └── bootstrap.min.js └── jquery │ ├── MIT-LICENSE.txt │ └── jquery-1.11.3.min.js └── views └── index.ejs /.ebextensions/create-dynamodb-table.config: -------------------------------------------------------------------------------- 1 | Resources: 2 | StartupSignupsTable: 3 | Type: AWS::DynamoDB::Table 4 | Properties: 5 | KeySchema: 6 | HashKeyElement: {AttributeName: email, AttributeType: S} 7 | ProvisionedThroughput: {ReadCapacityUnits: 1, WriteCapacityUnits: 1} 8 | -------------------------------------------------------------------------------- /.ebextensions/create-sns-topic.config: -------------------------------------------------------------------------------- 1 | Resources: 2 | NewSignupQueue: 3 | Type: AWS::SQS::Queue 4 | NewSignupTopic: 5 | Type: AWS::SNS::Topic 6 | Properties: 7 | Subscription: 8 | - Endpoint: 9 | Fn::GetOptionSetting: {DefaultValue: nobody@example.com, OptionName: NewSignupEmail} 10 | Protocol: email 11 | - Endpoint: 12 | Fn::GetAtt: [NewSignupQueue, Arn] 13 | Protocol: sqs 14 | AllowSNS2SQSPolicy: 15 | Type: AWS::SQS::QueuePolicy 16 | Properties: 17 | PolicyDocument: 18 | Id: PublicationPolicy 19 | Statement: 20 | - Action: ['sqs:SendMessage'] 21 | Condition: 22 | ArnEquals: 23 | aws:SourceArn: {Ref: NewSignupTopic} 24 | Effect: Allow 25 | Principal: {AWS: '*'} 26 | Resource: 27 | Fn::GetAtt: [NewSignupQueue, Arn] 28 | Sid: Allow-SNS-SendMessage 29 | Version: '2008-10-17' 30 | Queues: 31 | - {Ref: NewSignupQueue} 32 | -------------------------------------------------------------------------------- /.ebextensions/options.config: -------------------------------------------------------------------------------- 1 | option_settings: 2 | aws:elasticbeanstalk:customoption: 3 | NewSignupEmail: me@example.com 4 | aws:elasticbeanstalk:application:environment: 5 | THEME: "flatly" 6 | AWS_REGION: '`{"Ref" : "AWS::Region"}`' 7 | STARTUP_SIGNUP_TABLE: '`{"Ref" : "StartupSignupsTable"}`' 8 | NEW_SIGNUP_TOPIC: '`{"Ref" : "NewSignupTopic"}`' 9 | aws:elasticbeanstalk:container:nodejs: 10 | ProxyServer: nginx 11 | aws:elasticbeanstalk:environment:proxy:staticfiles: 12 | /static: /static 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | # Elastic Beanstalk CLI Files 4 | .elasticbeanstalk/* 5 | node_modules/* 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | 203 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AWS Elastic Beanstalk Express Sample App with Dynamo 2 | This sample application uses the [Express](https://expressjs.com/) framework and [Bootstrap](http://getbootstrap.com/) to build a simple, scalable customer signup form that is deployed to [AWS Elastic Beanstalk](http://aws.amazon.com/elasticbeanstalk/). The application stores data in [Amazon DynamoDB](http://aws.amazon.com/dynamodb/) and publishes notifications to the [Amazon Simple Notification Service (SNS)](http://aws.amazon.com/sns/) when a customer fills out the form. 3 | 4 | This example cannot be run locally. 5 | 6 | You can get started using the following steps: 7 | 1. Install the [AWS Elastic Beanstalk Command Line Interface (CLI)](http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-install.html). 8 | 2. Add policies to the [default instance profile](https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/iam-instanceprofile.html) to grant the EC2 instances in your environment permission to access DynamoDB and Amazon SNS: 9 | - Open the [Roles](https://console.aws.amazon.com/iam/home#roles) page in the IAM console. 10 | - Choose `aws-elasticbeanstalk-ec2-role`. 11 | - On the Permissions tab, choose Attach policies. 12 | - Select the managed policy for the additional services that your application uses. For this specific example, add `AmazonSNSFullAccess` and `AmazonDynamoDBFullAccess`. 13 | - Choose Attach policy. 14 | 3. Run `eb init --platform node.js --region ` to initialize the folder for use with the CLI. Replace `` with a region identifier such as `us-east-2` (see [Regions and Endpoints](https://docs.amazonaws.cn/en_us/general/latest/gr/rande.html#elasticbeanstalk_region) for a full list of region identifiers). 15 | 4. Run `eb create --sample nodejs-example-express-dynamo` to begin the creation of a sample application that contains a load-balanced environment with the default settings for the Node.js platform. 16 | 5. Once the environment creation process completes, run `eb open` to load the sample environment in your browser to verify the deployment has succeeded and is accessible. 17 | 6. Deploy the source in this bundle using `eb deploy`. 18 | 7. Once the deployment of this source bundle completes, run `eb open` to interact with the new webpage. 19 | 8. Run `eb terminate --all` to clean up. 20 | 21 | 22 | ## Themes 23 | The code includes several Bootstrap themes from [bootswatch.com](http://bootswatch.com/). You can dynamically change the active theme by setting the THEME environment variable in the [Elastic Beanstalk Management Console](https://console.aws.amazon.com/elasticbeanstalk): 24 | 25 | ![](misc/theme-flow.png) 26 | 27 | Installed themes include: 28 | 29 | * [amelia](http://bootswatch.com/amelia) 30 | * [default](http://bootswatch.com/default) 31 | * [flatly](http://bootswatch.com/flatly) 32 | * [slate](http://bootswatch.com/slate) 33 | * [united](http://bootswatch.com/united) -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | // Include the cluster module 2 | const cluster = require('cluster'); 3 | 4 | // Code to run if we're in the master process 5 | if (cluster.isMaster) { 6 | 7 | // Count the machine's CPUs 8 | const cpuCount = require('os').cpus().length; 9 | 10 | // Create a worker for each CPU 11 | for (let i = 0; i < cpuCount; i += 1) { 12 | cluster.fork(); 13 | } 14 | 15 | // Listen for terminating workers 16 | cluster.on('exit', function (worker) { 17 | 18 | // Replace the terminated workers 19 | console.log('Worker ' + worker.id + ' died :('); 20 | cluster.fork(); 21 | 22 | }); 23 | 24 | // Code to run if we're in a worker process 25 | } else { 26 | const AWS = require('aws-sdk'); 27 | const express = require('express'); 28 | const bodyParser = require('body-parser'); 29 | 30 | AWS.config.region = process.env.REGION 31 | 32 | const sns = new AWS.SNS(); 33 | const ddb = new AWS.DynamoDB(); 34 | 35 | const ddbTable = process.env.STARTUP_SIGNUP_TABLE; 36 | const snsTopic = process.env.NEW_SIGNUP_TOPIC; 37 | const app = express(); 38 | 39 | app.set('view engine', 'ejs'); 40 | app.set('views', __dirname + '/views'); 41 | app.use(bodyParser.urlencoded({extended:false})); 42 | 43 | app.get('/', function(req, res) { 44 | res.render('index', { 45 | static_path: 'static', 46 | theme: process.env.THEME || 'flatly', 47 | flask_debug: process.env.FLASK_DEBUG || 'false' 48 | }); 49 | }); 50 | 51 | app.post('/signup', function(req, res) { 52 | const item = { 53 | 'email': {'S': req.body.email}, 54 | 'name': {'S': req.body.name}, 55 | 'preview': {'S': req.body.previewAccess}, 56 | 'theme': {'S': req.body.theme} 57 | }; 58 | 59 | ddb.putItem({ 60 | 'TableName': ddbTable, 61 | 'Item': item, 62 | 'Expected': { email: { Exists: false } } 63 | }, function(err, data) { 64 | if (err) { 65 | let returnStatus = 500; 66 | 67 | if (err.code === 'ConditionalCheckFailedException') { 68 | returnStatus = 409; 69 | } 70 | 71 | res.status(returnStatus).end(); 72 | console.log('DDB Error: ' + err); 73 | } else { 74 | sns.publish({ 75 | 'Message': 'Name: ' + req.body.name + "\r\nEmail: " + req.body.email 76 | + "\r\nPreviewAccess: " + req.body.previewAccess 77 | + "\r\nTheme: " + req.body.theme, 78 | 'Subject': 'New user sign up!!!', 79 | 'TopicArn': snsTopic 80 | }, function(err, data) { 81 | if (err) { 82 | res.status(500).end(); 83 | console.log('SNS Error: ' + err); 84 | } else { 85 | res.status(201).end(); 86 | } 87 | }); 88 | } 89 | }); 90 | }); 91 | 92 | const port = process.env.PORT || 3000; 93 | 94 | const server = app.listen(port, function () { 95 | console.log('Server running at http://127.0.0.1:' + port + '/'); 96 | }); 97 | } -------------------------------------------------------------------------------- /misc/theme-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-node-express-sample/093dd30cf3897df8f9c3c3800a3cfbfe02a5777a/misc/theme-flow.png -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nodejs-example-express-dynamo", 3 | "version": "0.0.1", 4 | "lockfileVersion": 2, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "nodejs-example-express-dynamo", 9 | "version": "0.0.1", 10 | "dependencies": { 11 | "aws-sdk": "latest", 12 | "body-parser": "latest", 13 | "ejs": "latest", 14 | "express": "latest" 15 | } 16 | }, 17 | "node_modules/accepts": { 18 | "version": "1.3.8", 19 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 20 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 21 | "dependencies": { 22 | "mime-types": "~2.1.34", 23 | "negotiator": "0.6.3" 24 | }, 25 | "engines": { 26 | "node": ">= 0.6" 27 | } 28 | }, 29 | "node_modules/ansi-styles": { 30 | "version": "4.3.0", 31 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 32 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 33 | "dependencies": { 34 | "color-convert": "^2.0.1" 35 | }, 36 | "engines": { 37 | "node": ">=8" 38 | }, 39 | "funding": { 40 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 41 | } 42 | }, 43 | "node_modules/array-flatten": { 44 | "version": "1.1.1", 45 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 46 | "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" 47 | }, 48 | "node_modules/async": { 49 | "version": "3.2.4", 50 | "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", 51 | "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" 52 | }, 53 | "node_modules/available-typed-arrays": { 54 | "version": "1.0.5", 55 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", 56 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", 57 | "engines": { 58 | "node": ">= 0.4" 59 | }, 60 | "funding": { 61 | "url": "https://github.com/sponsors/ljharb" 62 | } 63 | }, 64 | "node_modules/aws-sdk": { 65 | "version": "2.1325.0", 66 | "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1325.0.tgz", 67 | "integrity": "sha512-ztg9HG5aoUHTprY+/eqjqb25E4joCgz+8ToxsP4OSKFQCtaBcF6my03j4e/J2j3fmpPifJnZSPMu4kV7DBj8WA==", 68 | "dependencies": { 69 | "buffer": "4.9.2", 70 | "events": "1.1.1", 71 | "ieee754": "1.1.13", 72 | "jmespath": "0.16.0", 73 | "querystring": "0.2.0", 74 | "sax": "1.2.1", 75 | "url": "0.10.3", 76 | "util": "^0.12.4", 77 | "uuid": "8.0.0", 78 | "xml2js": "0.4.19" 79 | }, 80 | "engines": { 81 | "node": ">= 10.0.0" 82 | } 83 | }, 84 | "node_modules/balanced-match": { 85 | "version": "1.0.2", 86 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 87 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 88 | }, 89 | "node_modules/base64-js": { 90 | "version": "1.5.1", 91 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 92 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", 93 | "funding": [ 94 | { 95 | "type": "github", 96 | "url": "https://github.com/sponsors/feross" 97 | }, 98 | { 99 | "type": "patreon", 100 | "url": "https://www.patreon.com/feross" 101 | }, 102 | { 103 | "type": "consulting", 104 | "url": "https://feross.org/support" 105 | } 106 | ] 107 | }, 108 | "node_modules/body-parser": { 109 | "version": "1.20.2", 110 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", 111 | "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", 112 | "dependencies": { 113 | "bytes": "3.1.2", 114 | "content-type": "~1.0.5", 115 | "debug": "2.6.9", 116 | "depd": "2.0.0", 117 | "destroy": "1.2.0", 118 | "http-errors": "2.0.0", 119 | "iconv-lite": "0.4.24", 120 | "on-finished": "2.4.1", 121 | "qs": "6.11.0", 122 | "raw-body": "2.5.2", 123 | "type-is": "~1.6.18", 124 | "unpipe": "1.0.0" 125 | }, 126 | "engines": { 127 | "node": ">= 0.8", 128 | "npm": "1.2.8000 || >= 1.4.16" 129 | } 130 | }, 131 | "node_modules/brace-expansion": { 132 | "version": "1.1.11", 133 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 134 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 135 | "dependencies": { 136 | "balanced-match": "^1.0.0", 137 | "concat-map": "0.0.1" 138 | } 139 | }, 140 | "node_modules/buffer": { 141 | "version": "4.9.2", 142 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", 143 | "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", 144 | "dependencies": { 145 | "base64-js": "^1.0.2", 146 | "ieee754": "^1.1.4", 147 | "isarray": "^1.0.0" 148 | } 149 | }, 150 | "node_modules/bytes": { 151 | "version": "3.1.2", 152 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 153 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", 154 | "engines": { 155 | "node": ">= 0.8" 156 | } 157 | }, 158 | "node_modules/call-bind": { 159 | "version": "1.0.2", 160 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 161 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 162 | "dependencies": { 163 | "function-bind": "^1.1.1", 164 | "get-intrinsic": "^1.0.2" 165 | }, 166 | "funding": { 167 | "url": "https://github.com/sponsors/ljharb" 168 | } 169 | }, 170 | "node_modules/chalk": { 171 | "version": "4.1.2", 172 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 173 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 174 | "dependencies": { 175 | "ansi-styles": "^4.1.0", 176 | "supports-color": "^7.1.0" 177 | }, 178 | "engines": { 179 | "node": ">=10" 180 | }, 181 | "funding": { 182 | "url": "https://github.com/chalk/chalk?sponsor=1" 183 | } 184 | }, 185 | "node_modules/color-convert": { 186 | "version": "2.0.1", 187 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 188 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 189 | "dependencies": { 190 | "color-name": "~1.1.4" 191 | }, 192 | "engines": { 193 | "node": ">=7.0.0" 194 | } 195 | }, 196 | "node_modules/color-name": { 197 | "version": "1.1.4", 198 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 199 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 200 | }, 201 | "node_modules/concat-map": { 202 | "version": "0.0.1", 203 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 204 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 205 | }, 206 | "node_modules/content-disposition": { 207 | "version": "0.5.4", 208 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", 209 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", 210 | "dependencies": { 211 | "safe-buffer": "5.2.1" 212 | }, 213 | "engines": { 214 | "node": ">= 0.6" 215 | } 216 | }, 217 | "node_modules/content-type": { 218 | "version": "1.0.5", 219 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 220 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", 221 | "engines": { 222 | "node": ">= 0.6" 223 | } 224 | }, 225 | "node_modules/cookie": { 226 | "version": "0.5.0", 227 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", 228 | "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", 229 | "engines": { 230 | "node": ">= 0.6" 231 | } 232 | }, 233 | "node_modules/cookie-signature": { 234 | "version": "1.0.6", 235 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 236 | "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" 237 | }, 238 | "node_modules/debug": { 239 | "version": "2.6.9", 240 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 241 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 242 | "dependencies": { 243 | "ms": "2.0.0" 244 | } 245 | }, 246 | "node_modules/depd": { 247 | "version": "2.0.0", 248 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 249 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 250 | "engines": { 251 | "node": ">= 0.8" 252 | } 253 | }, 254 | "node_modules/destroy": { 255 | "version": "1.2.0", 256 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 257 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", 258 | "engines": { 259 | "node": ">= 0.8", 260 | "npm": "1.2.8000 || >= 1.4.16" 261 | } 262 | }, 263 | "node_modules/ee-first": { 264 | "version": "1.1.1", 265 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 266 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" 267 | }, 268 | "node_modules/ejs": { 269 | "version": "3.1.8", 270 | "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", 271 | "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", 272 | "dependencies": { 273 | "jake": "^10.8.5" 274 | }, 275 | "bin": { 276 | "ejs": "bin/cli.js" 277 | }, 278 | "engines": { 279 | "node": ">=0.10.0" 280 | } 281 | }, 282 | "node_modules/encodeurl": { 283 | "version": "1.0.2", 284 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 285 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", 286 | "engines": { 287 | "node": ">= 0.8" 288 | } 289 | }, 290 | "node_modules/escape-html": { 291 | "version": "1.0.3", 292 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 293 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" 294 | }, 295 | "node_modules/etag": { 296 | "version": "1.8.1", 297 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 298 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", 299 | "engines": { 300 | "node": ">= 0.6" 301 | } 302 | }, 303 | "node_modules/events": { 304 | "version": "1.1.1", 305 | "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", 306 | "integrity": "sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==", 307 | "engines": { 308 | "node": ">=0.4.x" 309 | } 310 | }, 311 | "node_modules/express": { 312 | "version": "4.18.2", 313 | "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", 314 | "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", 315 | "dependencies": { 316 | "accepts": "~1.3.8", 317 | "array-flatten": "1.1.1", 318 | "body-parser": "1.20.1", 319 | "content-disposition": "0.5.4", 320 | "content-type": "~1.0.4", 321 | "cookie": "0.5.0", 322 | "cookie-signature": "1.0.6", 323 | "debug": "2.6.9", 324 | "depd": "2.0.0", 325 | "encodeurl": "~1.0.2", 326 | "escape-html": "~1.0.3", 327 | "etag": "~1.8.1", 328 | "finalhandler": "1.2.0", 329 | "fresh": "0.5.2", 330 | "http-errors": "2.0.0", 331 | "merge-descriptors": "1.0.1", 332 | "methods": "~1.1.2", 333 | "on-finished": "2.4.1", 334 | "parseurl": "~1.3.3", 335 | "path-to-regexp": "0.1.7", 336 | "proxy-addr": "~2.0.7", 337 | "qs": "6.11.0", 338 | "range-parser": "~1.2.1", 339 | "safe-buffer": "5.2.1", 340 | "send": "0.18.0", 341 | "serve-static": "1.15.0", 342 | "setprototypeof": "1.2.0", 343 | "statuses": "2.0.1", 344 | "type-is": "~1.6.18", 345 | "utils-merge": "1.0.1", 346 | "vary": "~1.1.2" 347 | }, 348 | "engines": { 349 | "node": ">= 0.10.0" 350 | } 351 | }, 352 | "node_modules/express/node_modules/body-parser": { 353 | "version": "1.20.1", 354 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", 355 | "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", 356 | "dependencies": { 357 | "bytes": "3.1.2", 358 | "content-type": "~1.0.4", 359 | "debug": "2.6.9", 360 | "depd": "2.0.0", 361 | "destroy": "1.2.0", 362 | "http-errors": "2.0.0", 363 | "iconv-lite": "0.4.24", 364 | "on-finished": "2.4.1", 365 | "qs": "6.11.0", 366 | "raw-body": "2.5.1", 367 | "type-is": "~1.6.18", 368 | "unpipe": "1.0.0" 369 | }, 370 | "engines": { 371 | "node": ">= 0.8", 372 | "npm": "1.2.8000 || >= 1.4.16" 373 | } 374 | }, 375 | "node_modules/express/node_modules/raw-body": { 376 | "version": "2.5.1", 377 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", 378 | "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", 379 | "dependencies": { 380 | "bytes": "3.1.2", 381 | "http-errors": "2.0.0", 382 | "iconv-lite": "0.4.24", 383 | "unpipe": "1.0.0" 384 | }, 385 | "engines": { 386 | "node": ">= 0.8" 387 | } 388 | }, 389 | "node_modules/filelist": { 390 | "version": "1.0.4", 391 | "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", 392 | "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", 393 | "dependencies": { 394 | "minimatch": "^5.0.1" 395 | } 396 | }, 397 | "node_modules/filelist/node_modules/brace-expansion": { 398 | "version": "2.0.1", 399 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 400 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 401 | "dependencies": { 402 | "balanced-match": "^1.0.0" 403 | } 404 | }, 405 | "node_modules/filelist/node_modules/minimatch": { 406 | "version": "5.1.6", 407 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", 408 | "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", 409 | "dependencies": { 410 | "brace-expansion": "^2.0.1" 411 | }, 412 | "engines": { 413 | "node": ">=10" 414 | } 415 | }, 416 | "node_modules/finalhandler": { 417 | "version": "1.2.0", 418 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", 419 | "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", 420 | "dependencies": { 421 | "debug": "2.6.9", 422 | "encodeurl": "~1.0.2", 423 | "escape-html": "~1.0.3", 424 | "on-finished": "2.4.1", 425 | "parseurl": "~1.3.3", 426 | "statuses": "2.0.1", 427 | "unpipe": "~1.0.0" 428 | }, 429 | "engines": { 430 | "node": ">= 0.8" 431 | } 432 | }, 433 | "node_modules/for-each": { 434 | "version": "0.3.3", 435 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 436 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 437 | "dependencies": { 438 | "is-callable": "^1.1.3" 439 | } 440 | }, 441 | "node_modules/forwarded": { 442 | "version": "0.2.0", 443 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", 444 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", 445 | "engines": { 446 | "node": ">= 0.6" 447 | } 448 | }, 449 | "node_modules/fresh": { 450 | "version": "0.5.2", 451 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 452 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", 453 | "engines": { 454 | "node": ">= 0.6" 455 | } 456 | }, 457 | "node_modules/function-bind": { 458 | "version": "1.1.1", 459 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 460 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 461 | }, 462 | "node_modules/get-intrinsic": { 463 | "version": "1.2.0", 464 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", 465 | "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", 466 | "dependencies": { 467 | "function-bind": "^1.1.1", 468 | "has": "^1.0.3", 469 | "has-symbols": "^1.0.3" 470 | }, 471 | "funding": { 472 | "url": "https://github.com/sponsors/ljharb" 473 | } 474 | }, 475 | "node_modules/gopd": { 476 | "version": "1.0.1", 477 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 478 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 479 | "dependencies": { 480 | "get-intrinsic": "^1.1.3" 481 | }, 482 | "funding": { 483 | "url": "https://github.com/sponsors/ljharb" 484 | } 485 | }, 486 | "node_modules/has": { 487 | "version": "1.0.3", 488 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 489 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 490 | "dependencies": { 491 | "function-bind": "^1.1.1" 492 | }, 493 | "engines": { 494 | "node": ">= 0.4.0" 495 | } 496 | }, 497 | "node_modules/has-flag": { 498 | "version": "4.0.0", 499 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 500 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 501 | "engines": { 502 | "node": ">=8" 503 | } 504 | }, 505 | "node_modules/has-symbols": { 506 | "version": "1.0.3", 507 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 508 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 509 | "engines": { 510 | "node": ">= 0.4" 511 | }, 512 | "funding": { 513 | "url": "https://github.com/sponsors/ljharb" 514 | } 515 | }, 516 | "node_modules/has-tostringtag": { 517 | "version": "1.0.0", 518 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 519 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 520 | "dependencies": { 521 | "has-symbols": "^1.0.2" 522 | }, 523 | "engines": { 524 | "node": ">= 0.4" 525 | }, 526 | "funding": { 527 | "url": "https://github.com/sponsors/ljharb" 528 | } 529 | }, 530 | "node_modules/http-errors": { 531 | "version": "2.0.0", 532 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 533 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 534 | "dependencies": { 535 | "depd": "2.0.0", 536 | "inherits": "2.0.4", 537 | "setprototypeof": "1.2.0", 538 | "statuses": "2.0.1", 539 | "toidentifier": "1.0.1" 540 | }, 541 | "engines": { 542 | "node": ">= 0.8" 543 | } 544 | }, 545 | "node_modules/iconv-lite": { 546 | "version": "0.4.24", 547 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 548 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 549 | "dependencies": { 550 | "safer-buffer": ">= 2.1.2 < 3" 551 | }, 552 | "engines": { 553 | "node": ">=0.10.0" 554 | } 555 | }, 556 | "node_modules/ieee754": { 557 | "version": "1.1.13", 558 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", 559 | "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==" 560 | }, 561 | "node_modules/inherits": { 562 | "version": "2.0.4", 563 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 564 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 565 | }, 566 | "node_modules/ipaddr.js": { 567 | "version": "1.9.1", 568 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 569 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", 570 | "engines": { 571 | "node": ">= 0.10" 572 | } 573 | }, 574 | "node_modules/is-arguments": { 575 | "version": "1.1.1", 576 | "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", 577 | "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", 578 | "dependencies": { 579 | "call-bind": "^1.0.2", 580 | "has-tostringtag": "^1.0.0" 581 | }, 582 | "engines": { 583 | "node": ">= 0.4" 584 | }, 585 | "funding": { 586 | "url": "https://github.com/sponsors/ljharb" 587 | } 588 | }, 589 | "node_modules/is-callable": { 590 | "version": "1.2.7", 591 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 592 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 593 | "engines": { 594 | "node": ">= 0.4" 595 | }, 596 | "funding": { 597 | "url": "https://github.com/sponsors/ljharb" 598 | } 599 | }, 600 | "node_modules/is-generator-function": { 601 | "version": "1.0.10", 602 | "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", 603 | "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", 604 | "dependencies": { 605 | "has-tostringtag": "^1.0.0" 606 | }, 607 | "engines": { 608 | "node": ">= 0.4" 609 | }, 610 | "funding": { 611 | "url": "https://github.com/sponsors/ljharb" 612 | } 613 | }, 614 | "node_modules/is-typed-array": { 615 | "version": "1.1.10", 616 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", 617 | "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", 618 | "dependencies": { 619 | "available-typed-arrays": "^1.0.5", 620 | "call-bind": "^1.0.2", 621 | "for-each": "^0.3.3", 622 | "gopd": "^1.0.1", 623 | "has-tostringtag": "^1.0.0" 624 | }, 625 | "engines": { 626 | "node": ">= 0.4" 627 | }, 628 | "funding": { 629 | "url": "https://github.com/sponsors/ljharb" 630 | } 631 | }, 632 | "node_modules/isarray": { 633 | "version": "1.0.0", 634 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 635 | "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" 636 | }, 637 | "node_modules/jake": { 638 | "version": "10.8.5", 639 | "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", 640 | "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", 641 | "dependencies": { 642 | "async": "^3.2.3", 643 | "chalk": "^4.0.2", 644 | "filelist": "^1.0.1", 645 | "minimatch": "^3.0.4" 646 | }, 647 | "bin": { 648 | "jake": "bin/cli.js" 649 | }, 650 | "engines": { 651 | "node": ">=10" 652 | } 653 | }, 654 | "node_modules/jmespath": { 655 | "version": "0.16.0", 656 | "resolved": "https://registry.npmjs.org/jmespath/-/jmespath-0.16.0.tgz", 657 | "integrity": "sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==", 658 | "engines": { 659 | "node": ">= 0.6.0" 660 | } 661 | }, 662 | "node_modules/media-typer": { 663 | "version": "0.3.0", 664 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 665 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", 666 | "engines": { 667 | "node": ">= 0.6" 668 | } 669 | }, 670 | "node_modules/merge-descriptors": { 671 | "version": "1.0.1", 672 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 673 | "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" 674 | }, 675 | "node_modules/methods": { 676 | "version": "1.1.2", 677 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 678 | "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", 679 | "engines": { 680 | "node": ">= 0.6" 681 | } 682 | }, 683 | "node_modules/mime": { 684 | "version": "1.6.0", 685 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 686 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", 687 | "bin": { 688 | "mime": "cli.js" 689 | }, 690 | "engines": { 691 | "node": ">=4" 692 | } 693 | }, 694 | "node_modules/mime-db": { 695 | "version": "1.52.0", 696 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 697 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 698 | "engines": { 699 | "node": ">= 0.6" 700 | } 701 | }, 702 | "node_modules/mime-types": { 703 | "version": "2.1.35", 704 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 705 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 706 | "dependencies": { 707 | "mime-db": "1.52.0" 708 | }, 709 | "engines": { 710 | "node": ">= 0.6" 711 | } 712 | }, 713 | "node_modules/minimatch": { 714 | "version": "3.1.2", 715 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 716 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 717 | "dependencies": { 718 | "brace-expansion": "^1.1.7" 719 | }, 720 | "engines": { 721 | "node": "*" 722 | } 723 | }, 724 | "node_modules/ms": { 725 | "version": "2.0.0", 726 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 727 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" 728 | }, 729 | "node_modules/negotiator": { 730 | "version": "0.6.3", 731 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 732 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", 733 | "engines": { 734 | "node": ">= 0.6" 735 | } 736 | }, 737 | "node_modules/object-inspect": { 738 | "version": "1.12.3", 739 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", 740 | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", 741 | "funding": { 742 | "url": "https://github.com/sponsors/ljharb" 743 | } 744 | }, 745 | "node_modules/on-finished": { 746 | "version": "2.4.1", 747 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 748 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 749 | "dependencies": { 750 | "ee-first": "1.1.1" 751 | }, 752 | "engines": { 753 | "node": ">= 0.8" 754 | } 755 | }, 756 | "node_modules/parseurl": { 757 | "version": "1.3.3", 758 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 759 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 760 | "engines": { 761 | "node": ">= 0.8" 762 | } 763 | }, 764 | "node_modules/path-to-regexp": { 765 | "version": "0.1.7", 766 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 767 | "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" 768 | }, 769 | "node_modules/proxy-addr": { 770 | "version": "2.0.7", 771 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", 772 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 773 | "dependencies": { 774 | "forwarded": "0.2.0", 775 | "ipaddr.js": "1.9.1" 776 | }, 777 | "engines": { 778 | "node": ">= 0.10" 779 | } 780 | }, 781 | "node_modules/punycode": { 782 | "version": "1.3.2", 783 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", 784 | "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==" 785 | }, 786 | "node_modules/qs": { 787 | "version": "6.11.0", 788 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", 789 | "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", 790 | "dependencies": { 791 | "side-channel": "^1.0.4" 792 | }, 793 | "engines": { 794 | "node": ">=0.6" 795 | }, 796 | "funding": { 797 | "url": "https://github.com/sponsors/ljharb" 798 | } 799 | }, 800 | "node_modules/querystring": { 801 | "version": "0.2.0", 802 | "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", 803 | "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", 804 | "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", 805 | "engines": { 806 | "node": ">=0.4.x" 807 | } 808 | }, 809 | "node_modules/range-parser": { 810 | "version": "1.2.1", 811 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 812 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 813 | "engines": { 814 | "node": ">= 0.6" 815 | } 816 | }, 817 | "node_modules/raw-body": { 818 | "version": "2.5.2", 819 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", 820 | "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", 821 | "dependencies": { 822 | "bytes": "3.1.2", 823 | "http-errors": "2.0.0", 824 | "iconv-lite": "0.4.24", 825 | "unpipe": "1.0.0" 826 | }, 827 | "engines": { 828 | "node": ">= 0.8" 829 | } 830 | }, 831 | "node_modules/safe-buffer": { 832 | "version": "5.2.1", 833 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 834 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 835 | "funding": [ 836 | { 837 | "type": "github", 838 | "url": "https://github.com/sponsors/feross" 839 | }, 840 | { 841 | "type": "patreon", 842 | "url": "https://www.patreon.com/feross" 843 | }, 844 | { 845 | "type": "consulting", 846 | "url": "https://feross.org/support" 847 | } 848 | ] 849 | }, 850 | "node_modules/safer-buffer": { 851 | "version": "2.1.2", 852 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 853 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 854 | }, 855 | "node_modules/sax": { 856 | "version": "1.2.1", 857 | "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz", 858 | "integrity": "sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==" 859 | }, 860 | "node_modules/send": { 861 | "version": "0.18.0", 862 | "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", 863 | "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", 864 | "dependencies": { 865 | "debug": "2.6.9", 866 | "depd": "2.0.0", 867 | "destroy": "1.2.0", 868 | "encodeurl": "~1.0.2", 869 | "escape-html": "~1.0.3", 870 | "etag": "~1.8.1", 871 | "fresh": "0.5.2", 872 | "http-errors": "2.0.0", 873 | "mime": "1.6.0", 874 | "ms": "2.1.3", 875 | "on-finished": "2.4.1", 876 | "range-parser": "~1.2.1", 877 | "statuses": "2.0.1" 878 | }, 879 | "engines": { 880 | "node": ">= 0.8.0" 881 | } 882 | }, 883 | "node_modules/send/node_modules/ms": { 884 | "version": "2.1.3", 885 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 886 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 887 | }, 888 | "node_modules/serve-static": { 889 | "version": "1.15.0", 890 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", 891 | "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", 892 | "dependencies": { 893 | "encodeurl": "~1.0.2", 894 | "escape-html": "~1.0.3", 895 | "parseurl": "~1.3.3", 896 | "send": "0.18.0" 897 | }, 898 | "engines": { 899 | "node": ">= 0.8.0" 900 | } 901 | }, 902 | "node_modules/setprototypeof": { 903 | "version": "1.2.0", 904 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 905 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" 906 | }, 907 | "node_modules/side-channel": { 908 | "version": "1.0.4", 909 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 910 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 911 | "dependencies": { 912 | "call-bind": "^1.0.0", 913 | "get-intrinsic": "^1.0.2", 914 | "object-inspect": "^1.9.0" 915 | }, 916 | "funding": { 917 | "url": "https://github.com/sponsors/ljharb" 918 | } 919 | }, 920 | "node_modules/statuses": { 921 | "version": "2.0.1", 922 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 923 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 924 | "engines": { 925 | "node": ">= 0.8" 926 | } 927 | }, 928 | "node_modules/supports-color": { 929 | "version": "7.2.0", 930 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 931 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 932 | "dependencies": { 933 | "has-flag": "^4.0.0" 934 | }, 935 | "engines": { 936 | "node": ">=8" 937 | } 938 | }, 939 | "node_modules/toidentifier": { 940 | "version": "1.0.1", 941 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 942 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 943 | "engines": { 944 | "node": ">=0.6" 945 | } 946 | }, 947 | "node_modules/type-is": { 948 | "version": "1.6.18", 949 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 950 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 951 | "dependencies": { 952 | "media-typer": "0.3.0", 953 | "mime-types": "~2.1.24" 954 | }, 955 | "engines": { 956 | "node": ">= 0.6" 957 | } 958 | }, 959 | "node_modules/unpipe": { 960 | "version": "1.0.0", 961 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 962 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", 963 | "engines": { 964 | "node": ">= 0.8" 965 | } 966 | }, 967 | "node_modules/url": { 968 | "version": "0.10.3", 969 | "resolved": "https://registry.npmjs.org/url/-/url-0.10.3.tgz", 970 | "integrity": "sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ==", 971 | "dependencies": { 972 | "punycode": "1.3.2", 973 | "querystring": "0.2.0" 974 | } 975 | }, 976 | "node_modules/util": { 977 | "version": "0.12.5", 978 | "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", 979 | "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", 980 | "dependencies": { 981 | "inherits": "^2.0.3", 982 | "is-arguments": "^1.0.4", 983 | "is-generator-function": "^1.0.7", 984 | "is-typed-array": "^1.1.3", 985 | "which-typed-array": "^1.1.2" 986 | } 987 | }, 988 | "node_modules/utils-merge": { 989 | "version": "1.0.1", 990 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 991 | "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", 992 | "engines": { 993 | "node": ">= 0.4.0" 994 | } 995 | }, 996 | "node_modules/uuid": { 997 | "version": "8.0.0", 998 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.0.0.tgz", 999 | "integrity": "sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==", 1000 | "bin": { 1001 | "uuid": "dist/bin/uuid" 1002 | } 1003 | }, 1004 | "node_modules/vary": { 1005 | "version": "1.1.2", 1006 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 1007 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", 1008 | "engines": { 1009 | "node": ">= 0.8" 1010 | } 1011 | }, 1012 | "node_modules/which-typed-array": { 1013 | "version": "1.1.9", 1014 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", 1015 | "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", 1016 | "dependencies": { 1017 | "available-typed-arrays": "^1.0.5", 1018 | "call-bind": "^1.0.2", 1019 | "for-each": "^0.3.3", 1020 | "gopd": "^1.0.1", 1021 | "has-tostringtag": "^1.0.0", 1022 | "is-typed-array": "^1.1.10" 1023 | }, 1024 | "engines": { 1025 | "node": ">= 0.4" 1026 | }, 1027 | "funding": { 1028 | "url": "https://github.com/sponsors/ljharb" 1029 | } 1030 | }, 1031 | "node_modules/xml2js": { 1032 | "version": "0.4.19", 1033 | "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz", 1034 | "integrity": "sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==", 1035 | "dependencies": { 1036 | "sax": ">=0.6.0", 1037 | "xmlbuilder": "~9.0.1" 1038 | } 1039 | }, 1040 | "node_modules/xmlbuilder": { 1041 | "version": "9.0.7", 1042 | "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz", 1043 | "integrity": "sha512-7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ==", 1044 | "engines": { 1045 | "node": ">=4.0" 1046 | } 1047 | } 1048 | }, 1049 | "dependencies": { 1050 | "accepts": { 1051 | "version": "1.3.8", 1052 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 1053 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 1054 | "requires": { 1055 | "mime-types": "~2.1.34", 1056 | "negotiator": "0.6.3" 1057 | } 1058 | }, 1059 | "ansi-styles": { 1060 | "version": "4.3.0", 1061 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1062 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1063 | "requires": { 1064 | "color-convert": "^2.0.1" 1065 | } 1066 | }, 1067 | "array-flatten": { 1068 | "version": "1.1.1", 1069 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 1070 | "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" 1071 | }, 1072 | "async": { 1073 | "version": "3.2.4", 1074 | "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", 1075 | "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" 1076 | }, 1077 | "available-typed-arrays": { 1078 | "version": "1.0.5", 1079 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", 1080 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" 1081 | }, 1082 | "aws-sdk": { 1083 | "version": "2.1325.0", 1084 | "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1325.0.tgz", 1085 | "integrity": "sha512-ztg9HG5aoUHTprY+/eqjqb25E4joCgz+8ToxsP4OSKFQCtaBcF6my03j4e/J2j3fmpPifJnZSPMu4kV7DBj8WA==", 1086 | "requires": { 1087 | "buffer": "4.9.2", 1088 | "events": "1.1.1", 1089 | "ieee754": "1.1.13", 1090 | "jmespath": "0.16.0", 1091 | "querystring": "0.2.0", 1092 | "sax": "1.2.1", 1093 | "url": "0.10.3", 1094 | "util": "^0.12.4", 1095 | "uuid": "8.0.0", 1096 | "xml2js": "0.4.19" 1097 | } 1098 | }, 1099 | "balanced-match": { 1100 | "version": "1.0.2", 1101 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1102 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 1103 | }, 1104 | "base64-js": { 1105 | "version": "1.5.1", 1106 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 1107 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" 1108 | }, 1109 | "body-parser": { 1110 | "version": "1.20.2", 1111 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", 1112 | "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", 1113 | "requires": { 1114 | "bytes": "3.1.2", 1115 | "content-type": "~1.0.5", 1116 | "debug": "2.6.9", 1117 | "depd": "2.0.0", 1118 | "destroy": "1.2.0", 1119 | "http-errors": "2.0.0", 1120 | "iconv-lite": "0.4.24", 1121 | "on-finished": "2.4.1", 1122 | "qs": "6.11.0", 1123 | "raw-body": "2.5.2", 1124 | "type-is": "~1.6.18", 1125 | "unpipe": "1.0.0" 1126 | } 1127 | }, 1128 | "brace-expansion": { 1129 | "version": "1.1.11", 1130 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1131 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1132 | "requires": { 1133 | "balanced-match": "^1.0.0", 1134 | "concat-map": "0.0.1" 1135 | } 1136 | }, 1137 | "buffer": { 1138 | "version": "4.9.2", 1139 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", 1140 | "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", 1141 | "requires": { 1142 | "base64-js": "^1.0.2", 1143 | "ieee754": "^1.1.4", 1144 | "isarray": "^1.0.0" 1145 | } 1146 | }, 1147 | "bytes": { 1148 | "version": "3.1.2", 1149 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 1150 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" 1151 | }, 1152 | "call-bind": { 1153 | "version": "1.0.2", 1154 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 1155 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 1156 | "requires": { 1157 | "function-bind": "^1.1.1", 1158 | "get-intrinsic": "^1.0.2" 1159 | } 1160 | }, 1161 | "chalk": { 1162 | "version": "4.1.2", 1163 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1164 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1165 | "requires": { 1166 | "ansi-styles": "^4.1.0", 1167 | "supports-color": "^7.1.0" 1168 | } 1169 | }, 1170 | "color-convert": { 1171 | "version": "2.0.1", 1172 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1173 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1174 | "requires": { 1175 | "color-name": "~1.1.4" 1176 | } 1177 | }, 1178 | "color-name": { 1179 | "version": "1.1.4", 1180 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1181 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 1182 | }, 1183 | "concat-map": { 1184 | "version": "0.0.1", 1185 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1186 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 1187 | }, 1188 | "content-disposition": { 1189 | "version": "0.5.4", 1190 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", 1191 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", 1192 | "requires": { 1193 | "safe-buffer": "5.2.1" 1194 | } 1195 | }, 1196 | "content-type": { 1197 | "version": "1.0.5", 1198 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 1199 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" 1200 | }, 1201 | "cookie": { 1202 | "version": "0.5.0", 1203 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", 1204 | "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" 1205 | }, 1206 | "cookie-signature": { 1207 | "version": "1.0.6", 1208 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 1209 | "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" 1210 | }, 1211 | "debug": { 1212 | "version": "2.6.9", 1213 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 1214 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 1215 | "requires": { 1216 | "ms": "2.0.0" 1217 | } 1218 | }, 1219 | "depd": { 1220 | "version": "2.0.0", 1221 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 1222 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" 1223 | }, 1224 | "destroy": { 1225 | "version": "1.2.0", 1226 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 1227 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" 1228 | }, 1229 | "ee-first": { 1230 | "version": "1.1.1", 1231 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 1232 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" 1233 | }, 1234 | "ejs": { 1235 | "version": "3.1.8", 1236 | "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", 1237 | "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", 1238 | "requires": { 1239 | "jake": "^10.8.5" 1240 | } 1241 | }, 1242 | "encodeurl": { 1243 | "version": "1.0.2", 1244 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 1245 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" 1246 | }, 1247 | "escape-html": { 1248 | "version": "1.0.3", 1249 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 1250 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" 1251 | }, 1252 | "etag": { 1253 | "version": "1.8.1", 1254 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 1255 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" 1256 | }, 1257 | "events": { 1258 | "version": "1.1.1", 1259 | "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", 1260 | "integrity": "sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==" 1261 | }, 1262 | "express": { 1263 | "version": "4.18.2", 1264 | "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", 1265 | "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", 1266 | "requires": { 1267 | "accepts": "~1.3.8", 1268 | "array-flatten": "1.1.1", 1269 | "body-parser": "1.20.1", 1270 | "content-disposition": "0.5.4", 1271 | "content-type": "~1.0.4", 1272 | "cookie": "0.5.0", 1273 | "cookie-signature": "1.0.6", 1274 | "debug": "2.6.9", 1275 | "depd": "2.0.0", 1276 | "encodeurl": "~1.0.2", 1277 | "escape-html": "~1.0.3", 1278 | "etag": "~1.8.1", 1279 | "finalhandler": "1.2.0", 1280 | "fresh": "0.5.2", 1281 | "http-errors": "2.0.0", 1282 | "merge-descriptors": "1.0.1", 1283 | "methods": "~1.1.2", 1284 | "on-finished": "2.4.1", 1285 | "parseurl": "~1.3.3", 1286 | "path-to-regexp": "0.1.7", 1287 | "proxy-addr": "~2.0.7", 1288 | "qs": "6.11.0", 1289 | "range-parser": "~1.2.1", 1290 | "safe-buffer": "5.2.1", 1291 | "send": "0.18.0", 1292 | "serve-static": "1.15.0", 1293 | "setprototypeof": "1.2.0", 1294 | "statuses": "2.0.1", 1295 | "type-is": "~1.6.18", 1296 | "utils-merge": "1.0.1", 1297 | "vary": "~1.1.2" 1298 | }, 1299 | "dependencies": { 1300 | "body-parser": { 1301 | "version": "1.20.1", 1302 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", 1303 | "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", 1304 | "requires": { 1305 | "bytes": "3.1.2", 1306 | "content-type": "~1.0.4", 1307 | "debug": "2.6.9", 1308 | "depd": "2.0.0", 1309 | "destroy": "1.2.0", 1310 | "http-errors": "2.0.0", 1311 | "iconv-lite": "0.4.24", 1312 | "on-finished": "2.4.1", 1313 | "qs": "6.11.0", 1314 | "raw-body": "2.5.1", 1315 | "type-is": "~1.6.18", 1316 | "unpipe": "1.0.0" 1317 | } 1318 | }, 1319 | "raw-body": { 1320 | "version": "2.5.1", 1321 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", 1322 | "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", 1323 | "requires": { 1324 | "bytes": "3.1.2", 1325 | "http-errors": "2.0.0", 1326 | "iconv-lite": "0.4.24", 1327 | "unpipe": "1.0.0" 1328 | } 1329 | } 1330 | } 1331 | }, 1332 | "filelist": { 1333 | "version": "1.0.4", 1334 | "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", 1335 | "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", 1336 | "requires": { 1337 | "minimatch": "^5.0.1" 1338 | }, 1339 | "dependencies": { 1340 | "brace-expansion": { 1341 | "version": "2.0.1", 1342 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1343 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1344 | "requires": { 1345 | "balanced-match": "^1.0.0" 1346 | } 1347 | }, 1348 | "minimatch": { 1349 | "version": "5.1.6", 1350 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", 1351 | "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", 1352 | "requires": { 1353 | "brace-expansion": "^2.0.1" 1354 | } 1355 | } 1356 | } 1357 | }, 1358 | "finalhandler": { 1359 | "version": "1.2.0", 1360 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", 1361 | "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", 1362 | "requires": { 1363 | "debug": "2.6.9", 1364 | "encodeurl": "~1.0.2", 1365 | "escape-html": "~1.0.3", 1366 | "on-finished": "2.4.1", 1367 | "parseurl": "~1.3.3", 1368 | "statuses": "2.0.1", 1369 | "unpipe": "~1.0.0" 1370 | } 1371 | }, 1372 | "for-each": { 1373 | "version": "0.3.3", 1374 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 1375 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 1376 | "requires": { 1377 | "is-callable": "^1.1.3" 1378 | } 1379 | }, 1380 | "forwarded": { 1381 | "version": "0.2.0", 1382 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", 1383 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" 1384 | }, 1385 | "fresh": { 1386 | "version": "0.5.2", 1387 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 1388 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" 1389 | }, 1390 | "function-bind": { 1391 | "version": "1.1.1", 1392 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 1393 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 1394 | }, 1395 | "get-intrinsic": { 1396 | "version": "1.2.0", 1397 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", 1398 | "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", 1399 | "requires": { 1400 | "function-bind": "^1.1.1", 1401 | "has": "^1.0.3", 1402 | "has-symbols": "^1.0.3" 1403 | } 1404 | }, 1405 | "gopd": { 1406 | "version": "1.0.1", 1407 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 1408 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 1409 | "requires": { 1410 | "get-intrinsic": "^1.1.3" 1411 | } 1412 | }, 1413 | "has": { 1414 | "version": "1.0.3", 1415 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 1416 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 1417 | "requires": { 1418 | "function-bind": "^1.1.1" 1419 | } 1420 | }, 1421 | "has-flag": { 1422 | "version": "4.0.0", 1423 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1424 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" 1425 | }, 1426 | "has-symbols": { 1427 | "version": "1.0.3", 1428 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 1429 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" 1430 | }, 1431 | "has-tostringtag": { 1432 | "version": "1.0.0", 1433 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 1434 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 1435 | "requires": { 1436 | "has-symbols": "^1.0.2" 1437 | } 1438 | }, 1439 | "http-errors": { 1440 | "version": "2.0.0", 1441 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 1442 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 1443 | "requires": { 1444 | "depd": "2.0.0", 1445 | "inherits": "2.0.4", 1446 | "setprototypeof": "1.2.0", 1447 | "statuses": "2.0.1", 1448 | "toidentifier": "1.0.1" 1449 | } 1450 | }, 1451 | "iconv-lite": { 1452 | "version": "0.4.24", 1453 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 1454 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 1455 | "requires": { 1456 | "safer-buffer": ">= 2.1.2 < 3" 1457 | } 1458 | }, 1459 | "ieee754": { 1460 | "version": "1.1.13", 1461 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", 1462 | "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==" 1463 | }, 1464 | "inherits": { 1465 | "version": "2.0.4", 1466 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1467 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 1468 | }, 1469 | "ipaddr.js": { 1470 | "version": "1.9.1", 1471 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 1472 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" 1473 | }, 1474 | "is-arguments": { 1475 | "version": "1.1.1", 1476 | "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", 1477 | "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", 1478 | "requires": { 1479 | "call-bind": "^1.0.2", 1480 | "has-tostringtag": "^1.0.0" 1481 | } 1482 | }, 1483 | "is-callable": { 1484 | "version": "1.2.7", 1485 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 1486 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" 1487 | }, 1488 | "is-generator-function": { 1489 | "version": "1.0.10", 1490 | "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", 1491 | "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", 1492 | "requires": { 1493 | "has-tostringtag": "^1.0.0" 1494 | } 1495 | }, 1496 | "is-typed-array": { 1497 | "version": "1.1.10", 1498 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", 1499 | "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", 1500 | "requires": { 1501 | "available-typed-arrays": "^1.0.5", 1502 | "call-bind": "^1.0.2", 1503 | "for-each": "^0.3.3", 1504 | "gopd": "^1.0.1", 1505 | "has-tostringtag": "^1.0.0" 1506 | } 1507 | }, 1508 | "isarray": { 1509 | "version": "1.0.0", 1510 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 1511 | "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" 1512 | }, 1513 | "jake": { 1514 | "version": "10.8.5", 1515 | "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", 1516 | "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", 1517 | "requires": { 1518 | "async": "^3.2.3", 1519 | "chalk": "^4.0.2", 1520 | "filelist": "^1.0.1", 1521 | "minimatch": "^3.0.4" 1522 | } 1523 | }, 1524 | "jmespath": { 1525 | "version": "0.16.0", 1526 | "resolved": "https://registry.npmjs.org/jmespath/-/jmespath-0.16.0.tgz", 1527 | "integrity": "sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==" 1528 | }, 1529 | "media-typer": { 1530 | "version": "0.3.0", 1531 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 1532 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" 1533 | }, 1534 | "merge-descriptors": { 1535 | "version": "1.0.1", 1536 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 1537 | "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" 1538 | }, 1539 | "methods": { 1540 | "version": "1.1.2", 1541 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 1542 | "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" 1543 | }, 1544 | "mime": { 1545 | "version": "1.6.0", 1546 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 1547 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" 1548 | }, 1549 | "mime-db": { 1550 | "version": "1.52.0", 1551 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 1552 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" 1553 | }, 1554 | "mime-types": { 1555 | "version": "2.1.35", 1556 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 1557 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 1558 | "requires": { 1559 | "mime-db": "1.52.0" 1560 | } 1561 | }, 1562 | "minimatch": { 1563 | "version": "3.1.2", 1564 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1565 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1566 | "requires": { 1567 | "brace-expansion": "^1.1.7" 1568 | } 1569 | }, 1570 | "ms": { 1571 | "version": "2.0.0", 1572 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1573 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" 1574 | }, 1575 | "negotiator": { 1576 | "version": "0.6.3", 1577 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 1578 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" 1579 | }, 1580 | "object-inspect": { 1581 | "version": "1.12.3", 1582 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", 1583 | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" 1584 | }, 1585 | "on-finished": { 1586 | "version": "2.4.1", 1587 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 1588 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 1589 | "requires": { 1590 | "ee-first": "1.1.1" 1591 | } 1592 | }, 1593 | "parseurl": { 1594 | "version": "1.3.3", 1595 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 1596 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" 1597 | }, 1598 | "path-to-regexp": { 1599 | "version": "0.1.7", 1600 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 1601 | "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" 1602 | }, 1603 | "proxy-addr": { 1604 | "version": "2.0.7", 1605 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", 1606 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 1607 | "requires": { 1608 | "forwarded": "0.2.0", 1609 | "ipaddr.js": "1.9.1" 1610 | } 1611 | }, 1612 | "punycode": { 1613 | "version": "1.3.2", 1614 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", 1615 | "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==" 1616 | }, 1617 | "qs": { 1618 | "version": "6.11.0", 1619 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", 1620 | "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", 1621 | "requires": { 1622 | "side-channel": "^1.0.4" 1623 | } 1624 | }, 1625 | "querystring": { 1626 | "version": "0.2.0", 1627 | "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", 1628 | "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==" 1629 | }, 1630 | "range-parser": { 1631 | "version": "1.2.1", 1632 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 1633 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" 1634 | }, 1635 | "raw-body": { 1636 | "version": "2.5.2", 1637 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", 1638 | "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", 1639 | "requires": { 1640 | "bytes": "3.1.2", 1641 | "http-errors": "2.0.0", 1642 | "iconv-lite": "0.4.24", 1643 | "unpipe": "1.0.0" 1644 | } 1645 | }, 1646 | "safe-buffer": { 1647 | "version": "5.2.1", 1648 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 1649 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" 1650 | }, 1651 | "safer-buffer": { 1652 | "version": "2.1.2", 1653 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 1654 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 1655 | }, 1656 | "sax": { 1657 | "version": "1.2.1", 1658 | "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz", 1659 | "integrity": "sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==" 1660 | }, 1661 | "send": { 1662 | "version": "0.18.0", 1663 | "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", 1664 | "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", 1665 | "requires": { 1666 | "debug": "2.6.9", 1667 | "depd": "2.0.0", 1668 | "destroy": "1.2.0", 1669 | "encodeurl": "~1.0.2", 1670 | "escape-html": "~1.0.3", 1671 | "etag": "~1.8.1", 1672 | "fresh": "0.5.2", 1673 | "http-errors": "2.0.0", 1674 | "mime": "1.6.0", 1675 | "ms": "2.1.3", 1676 | "on-finished": "2.4.1", 1677 | "range-parser": "~1.2.1", 1678 | "statuses": "2.0.1" 1679 | }, 1680 | "dependencies": { 1681 | "ms": { 1682 | "version": "2.1.3", 1683 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1684 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 1685 | } 1686 | } 1687 | }, 1688 | "serve-static": { 1689 | "version": "1.15.0", 1690 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", 1691 | "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", 1692 | "requires": { 1693 | "encodeurl": "~1.0.2", 1694 | "escape-html": "~1.0.3", 1695 | "parseurl": "~1.3.3", 1696 | "send": "0.18.0" 1697 | } 1698 | }, 1699 | "setprototypeof": { 1700 | "version": "1.2.0", 1701 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 1702 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" 1703 | }, 1704 | "side-channel": { 1705 | "version": "1.0.4", 1706 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 1707 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 1708 | "requires": { 1709 | "call-bind": "^1.0.0", 1710 | "get-intrinsic": "^1.0.2", 1711 | "object-inspect": "^1.9.0" 1712 | } 1713 | }, 1714 | "statuses": { 1715 | "version": "2.0.1", 1716 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 1717 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" 1718 | }, 1719 | "supports-color": { 1720 | "version": "7.2.0", 1721 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1722 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1723 | "requires": { 1724 | "has-flag": "^4.0.0" 1725 | } 1726 | }, 1727 | "toidentifier": { 1728 | "version": "1.0.1", 1729 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 1730 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" 1731 | }, 1732 | "type-is": { 1733 | "version": "1.6.18", 1734 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 1735 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 1736 | "requires": { 1737 | "media-typer": "0.3.0", 1738 | "mime-types": "~2.1.24" 1739 | } 1740 | }, 1741 | "unpipe": { 1742 | "version": "1.0.0", 1743 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 1744 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" 1745 | }, 1746 | "url": { 1747 | "version": "0.10.3", 1748 | "resolved": "https://registry.npmjs.org/url/-/url-0.10.3.tgz", 1749 | "integrity": "sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ==", 1750 | "requires": { 1751 | "punycode": "1.3.2", 1752 | "querystring": "0.2.0" 1753 | } 1754 | }, 1755 | "util": { 1756 | "version": "0.12.5", 1757 | "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", 1758 | "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", 1759 | "requires": { 1760 | "inherits": "^2.0.3", 1761 | "is-arguments": "^1.0.4", 1762 | "is-generator-function": "^1.0.7", 1763 | "is-typed-array": "^1.1.3", 1764 | "which-typed-array": "^1.1.2" 1765 | } 1766 | }, 1767 | "utils-merge": { 1768 | "version": "1.0.1", 1769 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 1770 | "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" 1771 | }, 1772 | "uuid": { 1773 | "version": "8.0.0", 1774 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.0.0.tgz", 1775 | "integrity": "sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==" 1776 | }, 1777 | "vary": { 1778 | "version": "1.1.2", 1779 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 1780 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" 1781 | }, 1782 | "which-typed-array": { 1783 | "version": "1.1.9", 1784 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", 1785 | "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", 1786 | "requires": { 1787 | "available-typed-arrays": "^1.0.5", 1788 | "call-bind": "^1.0.2", 1789 | "for-each": "^0.3.3", 1790 | "gopd": "^1.0.1", 1791 | "has-tostringtag": "^1.0.0", 1792 | "is-typed-array": "^1.1.10" 1793 | } 1794 | }, 1795 | "xml2js": { 1796 | "version": "0.4.19", 1797 | "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz", 1798 | "integrity": "sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==", 1799 | "requires": { 1800 | "sax": ">=0.6.0", 1801 | "xmlbuilder": "~9.0.1" 1802 | } 1803 | }, 1804 | "xmlbuilder": { 1805 | "version": "9.0.7", 1806 | "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz", 1807 | "integrity": "sha512-7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ==" 1808 | } 1809 | } 1810 | } 1811 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nodejs-example-express-dynamo", 3 | "version": "0.0.1", 4 | "private": true, 5 | "dependencies": { 6 | "ejs": "latest", 7 | "aws-sdk": "latest", 8 | "express": "latest", 9 | "body-parser": "latest" 10 | }, 11 | "scripts": { 12 | "start": "node app.js" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /static/bootstrap/LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | -------------------------------------------------------------------------------- /static/bootstrap/css/jumbotron-narrow.css: -------------------------------------------------------------------------------- 1 | /* Space out content a bit */ 2 | body { 3 | padding-top: 20px; 4 | padding-bottom: 20px; 5 | } 6 | 7 | /* Everything but the jumbotron gets side spacing for mobile first views */ 8 | .header, 9 | .marketing, 10 | .footer { 11 | padding-left: 15px; 12 | padding-right: 15px; 13 | } 14 | 15 | /* Custom page header */ 16 | .header { 17 | border-bottom: 1px solid #e5e5e5; 18 | } 19 | /* Make the masthead heading the same height as the navigation */ 20 | .header h3 { 21 | margin-top: 0; 22 | margin-bottom: 0; 23 | line-height: 40px; 24 | padding-bottom: 19px; 25 | } 26 | 27 | /* Custom page footer */ 28 | .footer { 29 | padding-top: 19px; 30 | color: #777; 31 | border-top: 1px solid #e5e5e5; 32 | } 33 | 34 | /* Customize container */ 35 | @media (min-width: 768px) { 36 | .container { 37 | max-width: 730px; 38 | } 39 | } 40 | .container-narrow > hr { 41 | margin: 30px 0; 42 | } 43 | 44 | /* Main marketing message and sign up button */ 45 | .jumbotron { 46 | text-align: center; 47 | border-bottom: 1px solid #e5e5e5; 48 | } 49 | .jumbotron .btn { 50 | font-size: 21px; 51 | padding: 14px 24px; 52 | } 53 | 54 | /* Supporting marketing content */ 55 | .marketing { 56 | margin: 40px 0; 57 | } 58 | .marketing p + h4 { 59 | margin-top: 28px; 60 | } 61 | 62 | /* Responsive: Portrait tablets and up */ 63 | @media screen and (min-width: 768px) { 64 | /* Remove the padding we set earlier */ 65 | .header, 66 | .marketing, 67 | .footer { 68 | padding-left: 0; 69 | padding-right: 0; 70 | } 71 | /* Space out the masthead */ 72 | .header { 73 | margin-bottom: 30px; 74 | } 75 | /* Remove the bottom border on the jumbotron for visual effect */ 76 | .jumbotron { 77 | border-bottom: 0; 78 | } 79 | } -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-node-express-sample/093dd30cf3897df8f9c3c3800a3cfbfe02a5777a/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-node-express-sample/093dd30cf3897df8f9c3c3800a3cfbfe02a5777a/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-node-express-sample/093dd30cf3897df8f9c3c3800a3cfbfe02a5777a/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * bootstrap.js v3.0.0 by @fat and @mdo 3 | * Copyright 2013 Twitter Inc. 4 | * http://www.apache.org/licenses/LICENSE-2.0 5 | */ 6 | if(!jQuery)throw new Error("Bootstrap requires jQuery");+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]}}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one(a.support.transition.end,function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b()})}(window.jQuery),+function(a){"use strict";var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function c(){f.trigger("closed.bs.alert").remove()}var d=a(this),e=d.attr("data-target");e||(e=d.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,""));var f=a(e);b&&b.preventDefault(),f.length||(f=d.hasClass("alert")?d:d.parent()),f.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one(a.support.transition.end,c).emulateTransitionEnd(150):c())};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("bs.alert");e||d.data("bs.alert",e=new c(this)),"string"==typeof b&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.bs.alert.data-api",b,c.prototype.close)}(window.jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d)};b.DEFAULTS={loadingText:"loading..."},b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.is("input")?"val":"html",e=c.data();a+="Text",e.resetText||c.data("resetText",c[d]()),c[d](e[a]||this.options[a]),setTimeout(function(){"loadingText"==a?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons"]');if(a.length){var b=this.$element.find("input").prop("checked",!this.$element.hasClass("active")).trigger("change");"radio"===b.prop("type")&&a.find(".active").removeClass("active")}this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof c&&c;e||d.data("bs.button",e=new b(this,f)),"toggle"==c?e.toggle():c&&e.setState(c)})},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.bs.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle"),b.preventDefault()})}(window.jQuery),+function(a){"use strict";var b=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.DEFAULTS={interval:5e3,pause:"hover",wrap:!0},b.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},b.prototype.getActiveIndex=function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},b.prototype.to=function(b){var c=this,d=this.getActiveIndex();return b>this.$items.length-1||0>b?void 0:this.sliding?this.$element.one("slid",function(){c.to(b)}):d==b?this.pause().cycle():this.slide(b>d?"next":"prev",a(this.$items[b]))},b.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},b.prototype.next=function(){return this.sliding?void 0:this.slide("next")},b.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},b.prototype.slide=function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g="next"==b?"left":"right",h="next"==b?"first":"last",i=this;if(!e.length){if(!this.options.wrap)return;e=this.$element.find(".item")[h]()}this.sliding=!0,f&&this.pause();var j=a.Event("slide.bs.carousel",{relatedTarget:e[0],direction:g});if(!e.hasClass("active")){if(this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var b=a(i.$indicators.children()[i.getActiveIndex()]);b&&b.addClass("active")})),a.support.transition&&this.$element.hasClass("slide")){if(this.$element.trigger(j),j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),d.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)}).emulateTransitionEnd(600)}else{if(this.$element.trigger(j),j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c),g="string"==typeof c?c:f.slide;e||d.data("bs.carousel",e=new b(this,f)),"number"==typeof c?e.to(c):g?e[g]():f.interval&&e.pause().cycle()})},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",function(b){var c,d=a(this),e=a(d.attr("data-target")||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),d.data()),g=d.attr("data-slide-to");g&&(f.interval=!1),e.carousel(f),(g=d.attr("data-slide-to"))&&e.data("bs.carousel").to(g),b.preventDefault()}),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var b=a(this);b.carousel(b.data())})})}(window.jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.transitioning=null,this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.DEFAULTS={toggle:!0},b.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},b.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b=a.Event("show.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.$parent&&this.$parent.find("> .panel > .in");if(c&&c.length){var d=c.data("bs.collapse");if(d&&d.transitioning)return;c.collapse("hide"),d||c.data("bs.collapse",null)}var e=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[e](0),this.transitioning=1;var f=function(){this.$element.removeClass("collapsing").addClass("in")[e]("auto"),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return f.call(this);var g=a.camelCase(["scroll",e].join("-"));this.$element.one(a.support.transition.end,a.proxy(f,this)).emulateTransitionEnd(350)[e](this.$element[0][g])}}},b.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1;var d=function(){this.transitioning=0,this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")};return a.support.transition?(this.$element[c](0).one(a.support.transition.end,a.proxy(d,this)).emulateTransitionEnd(350),void 0):d.call(this)}}},b.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("bs.collapse"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c);e||d.data("bs.collapse",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.bs.collapse.data-api","[data-toggle=collapse]",function(b){var c,d=a(this),e=d.attr("data-target")||b.preventDefault()||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,""),f=a(e),g=f.data("bs.collapse"),h=g?"toggle":d.data(),i=d.attr("data-parent"),j=i&&a(i);g&&g.transitioning||(j&&j.find('[data-toggle=collapse][data-parent="'+i+'"]').not(d).addClass("collapsed"),d[f.hasClass("in")?"addClass":"removeClass"]("collapsed")),f.collapse(h)})}(window.jQuery),+function(a){"use strict";function b(){a(d).remove(),a(e).each(function(b){var d=c(a(this));d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown")),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown"))})}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}var d=".dropdown-backdrop",e="[data-toggle=dropdown]",f=function(b){a(b).on("click.bs.dropdown",this.toggle)};f.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){if("ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(''}),b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),b.prototype.constructor=b,b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},b.prototype.hasContent=function(){return this.getTitle()||this.getContent()},b.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},b.prototype.tip=function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip};var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof c&&c;e||d.data("bs.popover",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),+function(a){"use strict";function b(c,d){var e,f=a.proxy(this.process,this);this.$element=a(c).is("body")?a(window):a(c),this.$body=a("body"),this.$scrollElement=this.$element.on("scroll.bs.scroll-spy.data-api",f),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||(e=a(c).attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.offsets=a([]),this.targets=a([]),this.activeTarget=null,this.refresh(),this.process()}b.DEFAULTS={offset:10},b.prototype.refresh=function(){var b=this.$element[0]==window?"offset":"position";this.offsets=a([]),this.targets=a([]);var c=this;this.$body.find(this.selector).map(function(){var d=a(this),e=d.data("target")||d.attr("href"),f=/^#\w/.test(e)&&a(e);return f&&f.length&&[[f[b]().top+(!a.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){c.offsets.push(this[0]),c.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,d=c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(b>=d)return g!=(a=f.last()[0])&&this.activate(a);for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(!e[a+1]||b<=e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,a(this.selector).parents(".active").removeClass("active");var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate")};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),+function(a){"use strict";var b=function(b){this.element=a(b)};b.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a")[0],f=a.Event("show.bs.tab",{relatedTarget:e});if(b.trigger(f),!f.isDefaultPrevented()){var g=a(d);this.activate(b.parent("li"),c),this.activate(g,g.parent(),function(){b.trigger({type:"shown.bs.tab",relatedTarget:e})})}}},b.prototype.activate=function(b,c,d){function e(){f.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),g?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var f=c.find("> .active"),g=d&&a.support.transition&&f.hasClass("fade");g?f.one(a.support.transition.end,e).emulateTransitionEnd(150):e(),f.removeClass("in")};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new b(this)),"string"==typeof c&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),+function(a){"use strict";var b=function(c,d){this.options=a.extend({},b.DEFAULTS,d),this.$window=a(window).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(c),this.affixed=this.unpin=null,this.checkPosition()};b.RESET="affix affix-top affix-bottom",b.DEFAULTS={offset:0},b.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},b.prototype.checkPosition=function(){if(this.$element.is(":visible")){var c=a(document).height(),d=this.$window.scrollTop(),e=this.$element.offset(),f=this.options.offset,g=f.top,h=f.bottom;"object"!=typeof f&&(h=g=f),"function"==typeof g&&(g=f.top()),"function"==typeof h&&(h=f.bottom());var i=null!=this.unpin&&d+this.unpin<=e.top?!1:null!=h&&e.top+this.$element.height()>=c-h?"bottom":null!=g&&g>=d?"top":!1;this.affixed!==i&&(this.unpin&&this.$element.css("top",""),this.affixed=i,this.unpin="bottom"==i?e.top-d:null,this.$element.removeClass(b.RESET).addClass("affix"+(i?"-"+i:"")),"bottom"==i&&this.$element.offset({top:document.body.offsetHeight-h-this.$element.height()}))}};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof c&&c;e||d.data("bs.affix",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery); -------------------------------------------------------------------------------- /static/jquery/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2013 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /views/index.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | A New Startup: Sign Up Today! 10 | 11 | 12 | " rel="stylesheet"> 13 | 14 | 15 | " rel="stylesheet"> 16 | 17 | 18 | 19 | 20 | 21 |
22 |
23 | 29 |

A New Startup

30 |
31 | <% if (flask_debug === 'true') { %> 32 |
33 | Flask is in debug mode. This is not safe for production. 34 |
35 | <% } %> 36 | 39 | 42 | 45 |
46 |

The next big thing is coming...

47 |

We're pretty thrilled to unveil our latest creation. Sign up below to be notified when we officially launch!

48 |

Sign up today

49 |
50 | 51 | 52 | 55 | 56 | 57 | 90 | 91 |
92 | 93 | 94 | 95 | 118 | 119 | 120 | --------------------------------------------------------------------------------