├── 10_masterizando_select └── comandos.md ├── 11_update_operators └── comandos.md ├── 12_index ├── city_inspections.json └── comandos.md ├── 13_aggregation └── comandos.md ├── 14_projeto_notes ├── db │ └── connection.js ├── index.js ├── node_modules │ ├── .bin │ │ ├── handlebars │ │ ├── handlebars.cmd │ │ ├── handlebars.ps1 │ │ ├── is-ci │ │ ├── is-ci.cmd │ │ ├── is-ci.ps1 │ │ ├── mime │ │ ├── mime.cmd │ │ ├── mime.ps1 │ │ ├── nodemon │ │ ├── nodemon.cmd │ │ ├── nodemon.ps1 │ │ ├── nodetouch │ │ ├── nodetouch.cmd │ │ ├── nodetouch.ps1 │ │ ├── nopt │ │ ├── nopt.cmd │ │ ├── nopt.ps1 │ │ ├── rc │ │ ├── rc.cmd │ │ ├── rc.ps1 │ │ ├── semver │ │ ├── semver.cmd │ │ ├── semver.ps1 │ │ ├── uglifyjs │ │ ├── uglifyjs.cmd │ │ └── uglifyjs.ps1 │ ├── @sindresorhus │ │ └── is │ │ │ ├── dist │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── index.js.map │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ ├── @szmarczak │ │ └── http-timer │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── source │ │ │ └── index.js │ ├── abbrev │ │ ├── LICENSE │ │ ├── README.md │ │ ├── abbrev.js │ │ └── package.json │ ├── accepts │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── ansi-align │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ └── string-width │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── ansi-regex │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── ansi-styles │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── anymatch │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── array-flatten │ │ ├── LICENSE │ │ ├── README.md │ │ ├── array-flatten.js │ │ └── package.json │ ├── balanced-match │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── binary-extensions │ │ ├── binary-extensions.json │ │ ├── binary-extensions.json.d.ts │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── bl │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bl.js │ │ ├── package.json │ │ └── test │ │ │ ├── indexOf.js │ │ │ └── test.js │ ├── body-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── read.js │ │ │ └── types │ │ │ │ ├── json.js │ │ │ │ ├── raw.js │ │ │ │ ├── text.js │ │ │ │ └── urlencoded.js │ │ └── package.json │ ├── boxen │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── brace-expansion │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── braces │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── compile.js │ │ │ ├── constants.js │ │ │ ├── expand.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ │ └── package.json │ ├── bson │ │ ├── HISTORY.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── browser_build │ │ │ ├── bson.js │ │ │ └── package.json │ │ ├── index.js │ │ ├── lib │ │ │ └── bson │ │ │ │ ├── binary.js │ │ │ │ ├── bson.js │ │ │ │ ├── code.js │ │ │ │ ├── db_ref.js │ │ │ │ ├── decimal128.js │ │ │ │ ├── double.js │ │ │ │ ├── float_parser.js │ │ │ │ ├── int_32.js │ │ │ │ ├── long.js │ │ │ │ ├── map.js │ │ │ │ ├── max_key.js │ │ │ │ ├── min_key.js │ │ │ │ ├── objectid.js │ │ │ │ ├── parser │ │ │ │ ├── calculate_size.js │ │ │ │ ├── deserializer.js │ │ │ │ ├── serializer.js │ │ │ │ └── utils.js │ │ │ │ ├── regexp.js │ │ │ │ ├── symbol.js │ │ │ │ └── timestamp.js │ │ └── package.json │ ├── bytes │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── cacheable-request │ │ ├── LICENSE │ │ ├── README.md │ │ ├── node_modules │ │ │ ├── get-stream │ │ │ │ ├── buffer-stream.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ └── lowercase-keys │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── camelcase │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── chalk │ │ ├── index.d.ts │ │ ├── license │ │ ├── node_modules │ │ │ ├── has-flag │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ └── supports-color │ │ │ │ ├── browser.js │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── package.json │ │ ├── readme.md │ │ └── source │ │ │ ├── index.js │ │ │ ├── templates.js │ │ │ └── util.js │ ├── chokidar │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── constants.js │ │ │ ├── fsevents-handler.js │ │ │ └── nodefs-handler.js │ │ ├── package.json │ │ └── types │ │ │ └── index.d.ts │ ├── ci-info │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── vendors.json │ ├── cli-boxes │ │ ├── boxes.json │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── clone-response │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── color-convert │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── conversions.js │ │ ├── index.js │ │ ├── package.json │ │ └── route.js │ ├── color-name │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── concat-map │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── example │ │ │ └── map.js │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── map.js │ ├── configstore │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── connect-flash │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── flash.js │ │ │ └── index.js │ │ └── package.json │ ├── content-disposition │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── content-type │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── cookie-signature │ │ ├── .npmignore │ │ ├── History.md │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── cookie │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── core-util-is │ │ ├── LICENSE │ │ ├── README.md │ │ ├── float.patch │ │ ├── lib │ │ │ └── util.js │ │ ├── package.json │ │ └── test.js │ ├── crypto-random-string │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── debug │ │ ├── .coveralls.yml │ │ ├── .eslintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── component.json │ │ ├── karma.conf.js │ │ ├── node.js │ │ ├── package.json │ │ └── src │ │ │ ├── browser.js │ │ │ ├── debug.js │ │ │ ├── index.js │ │ │ ├── inspector-log.js │ │ │ └── node.js │ ├── decompress-response │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── deep-extend │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ └── deep-extend.js │ │ └── package.json │ ├── defer-to-connect │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── denque │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── depd │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── browser │ │ │ │ └── index.js │ │ │ └── compat │ │ │ │ ├── callsite-tostring.js │ │ │ │ ├── event-listener-count.js │ │ │ │ └── index.js │ │ └── package.json │ ├── destroy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── dot-prop │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── duplexer3 │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── ee-first │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── emoji-regex │ │ ├── LICENSE-MIT.txt │ │ ├── README.md │ │ ├── es2015 │ │ │ ├── index.js │ │ │ └── text.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── text.js │ ├── encodeurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── end-of-stream │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── escape-goat │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── escape-html │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── etag │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── express-handlebars │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .github │ │ │ └── workflows │ │ │ │ ├── codeql-analysis.yml │ │ │ │ └── main.yml │ │ ├── CHANGELOG.md │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── jest.config.js │ │ ├── lib │ │ │ └── express-handlebars.js │ │ ├── package.json │ │ ├── renovate.json │ │ └── spec │ │ │ ├── express-handlebars.test.js │ │ │ └── fixtures │ │ │ ├── layouts │ │ │ ├── main-latin1.handlebars │ │ │ └── main.handlebars │ │ │ ├── other-views │ │ │ ├── layouts │ │ │ │ └── main.handlebars │ │ │ └── partials │ │ │ │ └── partial.handlebars │ │ │ ├── partials │ │ │ ├── partial-latin1.handlebars │ │ │ └── partial.handlebars │ │ │ ├── render-cached.handlebars │ │ │ ├── render-helper.handlebars │ │ │ ├── render-latin1.handlebars │ │ │ ├── render-partial.handlebars │ │ │ ├── render-text.handlebars │ │ │ └── templates │ │ │ ├── subdir │ │ │ └── template.handlebars │ │ │ ├── template-latin1.handlebars │ │ │ └── template.handlebars │ ├── express-session │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── depd │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── browser │ │ │ │ │ │ └── index.js │ │ │ │ └── package.json │ │ │ └── safe-buffer │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── package.json │ │ └── session │ │ │ ├── cookie.js │ │ │ ├── memory.js │ │ │ ├── session.js │ │ │ └── store.js │ ├── express │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── application.js │ │ │ ├── express.js │ │ │ ├── middleware │ │ │ │ ├── init.js │ │ │ │ └── query.js │ │ │ ├── request.js │ │ │ ├── response.js │ │ │ ├── router │ │ │ │ ├── index.js │ │ │ │ ├── layer.js │ │ │ │ └── route.js │ │ │ ├── utils.js │ │ │ └── view.js │ │ └── package.json │ ├── fill-range │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── finalhandler │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── forwarded │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── fresh │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── fs.realpath │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── old.js │ │ └── package.json │ ├── get-stream │ │ ├── buffer-stream.js │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── glob-parent │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── glob │ │ ├── LICENSE │ │ ├── README.md │ │ ├── changelog.md │ │ ├── common.js │ │ ├── glob.js │ │ ├── package.json │ │ └── sync.js │ ├── global-dirs │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── got │ │ ├── license │ │ ├── package.json │ │ ├── readme.md │ │ └── source │ │ │ ├── as-promise.js │ │ │ ├── as-stream.js │ │ │ ├── create.js │ │ │ ├── errors.js │ │ │ ├── get-response.js │ │ │ ├── index.js │ │ │ ├── known-hook-events.js │ │ │ ├── merge.js │ │ │ ├── normalize-arguments.js │ │ │ ├── progress.js │ │ │ ├── request-as-event-emitter.js │ │ │ └── utils │ │ │ ├── deep-freeze.js │ │ │ ├── get-body-size.js │ │ │ ├── is-form-data.js │ │ │ ├── timed-out.js │ │ │ └── url-to-options.js │ ├── graceful-fs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── clone.js │ │ ├── graceful-fs.js │ │ ├── legacy-streams.js │ │ ├── package.json │ │ └── polyfills.js │ ├── handlebars │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── bin │ │ │ ├── .eslintrc.js │ │ │ └── handlebars │ │ ├── dist │ │ │ ├── amd │ │ │ │ ├── handlebars.js │ │ │ │ ├── handlebars.runtime.js │ │ │ │ ├── handlebars │ │ │ │ │ ├── base.js │ │ │ │ │ ├── compiler │ │ │ │ │ │ ├── ast.js │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── code-gen.js │ │ │ │ │ │ ├── compiler.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── javascript-compiler.js │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ ├── printer.js │ │ │ │ │ │ ├── visitor.js │ │ │ │ │ │ └── whitespace-control.js │ │ │ │ │ ├── decorators.js │ │ │ │ │ ├── decorators │ │ │ │ │ │ └── inline.js │ │ │ │ │ ├── exception.js │ │ │ │ │ ├── helpers.js │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── block-helper-missing.js │ │ │ │ │ │ ├── each.js │ │ │ │ │ │ ├── helper-missing.js │ │ │ │ │ │ ├── if.js │ │ │ │ │ │ ├── log.js │ │ │ │ │ │ ├── lookup.js │ │ │ │ │ │ └── with.js │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── create-new-lookup-object.js │ │ │ │ │ │ ├── proto-access.js │ │ │ │ │ │ └── wrapHelper.js │ │ │ │ │ ├── logger.js │ │ │ │ │ ├── no-conflict.js │ │ │ │ │ ├── runtime.js │ │ │ │ │ ├── safe-string.js │ │ │ │ │ └── utils.js │ │ │ │ └── precompiler.js │ │ │ ├── cjs │ │ │ │ ├── handlebars.js │ │ │ │ ├── handlebars.runtime.js │ │ │ │ ├── handlebars │ │ │ │ │ ├── base.js │ │ │ │ │ ├── compiler │ │ │ │ │ │ ├── ast.js │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── code-gen.js │ │ │ │ │ │ ├── compiler.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── javascript-compiler.js │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ ├── printer.js │ │ │ │ │ │ ├── visitor.js │ │ │ │ │ │ └── whitespace-control.js │ │ │ │ │ ├── decorators.js │ │ │ │ │ ├── decorators │ │ │ │ │ │ └── inline.js │ │ │ │ │ ├── exception.js │ │ │ │ │ ├── helpers.js │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── block-helper-missing.js │ │ │ │ │ │ ├── each.js │ │ │ │ │ │ ├── helper-missing.js │ │ │ │ │ │ ├── if.js │ │ │ │ │ │ ├── log.js │ │ │ │ │ │ ├── lookup.js │ │ │ │ │ │ └── with.js │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── create-new-lookup-object.js │ │ │ │ │ │ ├── proto-access.js │ │ │ │ │ │ └── wrapHelper.js │ │ │ │ │ ├── logger.js │ │ │ │ │ ├── no-conflict.js │ │ │ │ │ ├── runtime.js │ │ │ │ │ ├── safe-string.js │ │ │ │ │ └── utils.js │ │ │ │ └── precompiler.js │ │ │ ├── handlebars.amd.js │ │ │ ├── handlebars.amd.min.js │ │ │ ├── handlebars.js │ │ │ ├── handlebars.min.js │ │ │ ├── handlebars.runtime.amd.js │ │ │ ├── handlebars.runtime.amd.min.js │ │ │ ├── handlebars.runtime.js │ │ │ └── handlebars.runtime.min.js │ │ ├── lib │ │ │ ├── handlebars.js │ │ │ ├── handlebars.runtime.js │ │ │ ├── handlebars │ │ │ │ ├── base.js │ │ │ │ ├── compiler │ │ │ │ │ ├── ast.js │ │ │ │ │ ├── base.js │ │ │ │ │ ├── code-gen.js │ │ │ │ │ ├── compiler.js │ │ │ │ │ ├── helpers.js │ │ │ │ │ ├── javascript-compiler.js │ │ │ │ │ ├── parser.js │ │ │ │ │ ├── printer.js │ │ │ │ │ ├── visitor.js │ │ │ │ │ └── whitespace-control.js │ │ │ │ ├── decorators.js │ │ │ │ ├── decorators │ │ │ │ │ └── inline.js │ │ │ │ ├── exception.js │ │ │ │ ├── helpers.js │ │ │ │ ├── helpers │ │ │ │ │ ├── block-helper-missing.js │ │ │ │ │ ├── each.js │ │ │ │ │ ├── helper-missing.js │ │ │ │ │ ├── if.js │ │ │ │ │ ├── log.js │ │ │ │ │ ├── lookup.js │ │ │ │ │ └── with.js │ │ │ │ ├── internal │ │ │ │ │ ├── create-new-lookup-object.js │ │ │ │ │ ├── proto-access.js │ │ │ │ │ └── wrapHelper.js │ │ │ │ ├── logger.js │ │ │ │ ├── no-conflict.js │ │ │ │ ├── runtime.js │ │ │ │ ├── safe-string.js │ │ │ │ └── utils.js │ │ │ ├── index.js │ │ │ └── precompiler.js │ │ ├── package.json │ │ ├── print-script │ │ ├── release-notes.md │ │ ├── runtime.d.ts │ │ ├── runtime.js │ │ └── types │ │ │ └── index.d.ts │ ├── has-flag │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── has-yarn │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── http-cache-semantics │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── http-errors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── iconv-lite │ │ ├── Changelog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── encodings │ │ │ ├── dbcs-codec.js │ │ │ ├── dbcs-data.js │ │ │ ├── index.js │ │ │ ├── internal.js │ │ │ ├── sbcs-codec.js │ │ │ ├── sbcs-data-generated.js │ │ │ ├── sbcs-data.js │ │ │ ├── tables │ │ │ │ ├── big5-added.json │ │ │ │ ├── cp936.json │ │ │ │ ├── cp949.json │ │ │ │ ├── cp950.json │ │ │ │ ├── eucjp.json │ │ │ │ ├── gb18030-ranges.json │ │ │ │ ├── gbk-added.json │ │ │ │ └── shiftjis.json │ │ │ ├── utf16.js │ │ │ └── utf7.js │ │ ├── lib │ │ │ ├── bom-handling.js │ │ │ ├── extend-node.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── streams.js │ │ └── package.json │ ├── ignore-by-default │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── import-lazy │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── imurmurhash │ │ ├── README.md │ │ ├── imurmurhash.js │ │ ├── imurmurhash.min.js │ │ └── package.json │ ├── inflight │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inflight.js │ │ └── package.json │ ├── inherits │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inherits.js │ │ ├── inherits_browser.js │ │ └── package.json │ ├── ini │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ini.js │ │ └── package.json │ ├── ipaddr.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ipaddr.min.js │ │ ├── lib │ │ │ ├── ipaddr.js │ │ │ └── ipaddr.js.d.ts │ │ └── package.json │ ├── is-binary-path │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-ci │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin.js │ │ ├── index.js │ │ └── package.json │ ├── is-extglob │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── is-fullwidth-code-point │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-glob │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── is-installed-globally │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-npm │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-number │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── is-obj │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-path-inside │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-typedarray │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── is-yarn-global │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── isarray │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Makefile │ │ ├── README.md │ │ ├── component.json │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── json-buffer │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── keyv │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── latest-version │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── lowercase-keys │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── make-dir │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ ├── semver │ │ │ │ ├── semver.cmd │ │ │ │ └── semver.ps1 │ │ │ └── semver │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ └── semver.js │ │ │ │ ├── package.json │ │ │ │ ├── range.bnf │ │ │ │ └── semver.js │ │ ├── package.json │ │ └── readme.md │ ├── media-typer │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── memory-pager │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── merge-descriptors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── methods │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime-db │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── db.json │ │ ├── index.js │ │ └── package.json │ ├── mime-types │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cli.js │ │ ├── mime.js │ │ ├── package.json │ │ ├── src │ │ │ ├── build.js │ │ │ └── test.js │ │ └── types.json │ ├── mimic-response │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── minimatch │ │ ├── LICENSE │ │ ├── README.md │ │ ├── minimatch.js │ │ └── package.json │ ├── minimist │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── example │ │ │ └── parse.js │ │ ├── index.js │ │ ├── package.json │ │ ├── readme.markdown │ │ └── test │ │ │ ├── all_bool.js │ │ │ ├── bool.js │ │ │ ├── dash.js │ │ │ ├── default_bool.js │ │ │ ├── dotted.js │ │ │ ├── kv_short.js │ │ │ ├── long.js │ │ │ ├── num.js │ │ │ ├── parse.js │ │ │ ├── parse_modified.js │ │ │ ├── proto.js │ │ │ ├── short.js │ │ │ ├── stop_early.js │ │ │ ├── unknown.js │ │ │ └── whitespace.js │ ├── mongodb │ │ ├── HISTORY.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── admin.js │ │ │ ├── aggregation_cursor.js │ │ │ ├── apm.js │ │ │ ├── async │ │ │ │ ├── .eslintrc │ │ │ │ └── async_iterator.js │ │ │ ├── bulk │ │ │ │ ├── common.js │ │ │ │ ├── ordered.js │ │ │ │ └── unordered.js │ │ │ ├── change_stream.js │ │ │ ├── cmap │ │ │ │ ├── connection.js │ │ │ │ ├── connection_pool.js │ │ │ │ ├── errors.js │ │ │ │ ├── events.js │ │ │ │ ├── message_stream.js │ │ │ │ └── stream_description.js │ │ │ ├── collection.js │ │ │ ├── command_cursor.js │ │ │ ├── constants.js │ │ │ ├── core │ │ │ │ ├── auth │ │ │ │ │ ├── auth_provider.js │ │ │ │ │ ├── defaultAuthProviders.js │ │ │ │ │ ├── gssapi.js │ │ │ │ │ ├── mongo_credentials.js │ │ │ │ │ ├── mongocr.js │ │ │ │ │ ├── mongodb_aws.js │ │ │ │ │ ├── plain.js │ │ │ │ │ ├── scram.js │ │ │ │ │ └── x509.js │ │ │ │ ├── connection │ │ │ │ │ ├── apm.js │ │ │ │ │ ├── command_result.js │ │ │ │ │ ├── commands.js │ │ │ │ │ ├── connect.js │ │ │ │ │ ├── connection.js │ │ │ │ │ ├── logger.js │ │ │ │ │ ├── msg.js │ │ │ │ │ ├── pool.js │ │ │ │ │ └── utils.js │ │ │ │ ├── cursor.js │ │ │ │ ├── error.js │ │ │ │ ├── index.js │ │ │ │ ├── sdam │ │ │ │ │ ├── common.js │ │ │ │ │ ├── events.js │ │ │ │ │ ├── monitor.js │ │ │ │ │ ├── server.js │ │ │ │ │ ├── server_description.js │ │ │ │ │ ├── server_selection.js │ │ │ │ │ ├── srv_polling.js │ │ │ │ │ ├── topology.js │ │ │ │ │ └── topology_description.js │ │ │ │ ├── sessions.js │ │ │ │ ├── tools │ │ │ │ │ └── smoke_plugin.js │ │ │ │ ├── topologies │ │ │ │ │ ├── mongos.js │ │ │ │ │ ├── read_preference.js │ │ │ │ │ ├── replset.js │ │ │ │ │ ├── replset_state.js │ │ │ │ │ ├── server.js │ │ │ │ │ └── shared.js │ │ │ │ ├── transactions.js │ │ │ │ ├── uri_parser.js │ │ │ │ ├── utils.js │ │ │ │ └── wireprotocol │ │ │ │ │ ├── command.js │ │ │ │ │ ├── compression.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── get_more.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── kill_cursors.js │ │ │ │ │ ├── query.js │ │ │ │ │ ├── shared.js │ │ │ │ │ └── write_command.js │ │ │ ├── cursor.js │ │ │ ├── db.js │ │ │ ├── dynamic_loaders.js │ │ │ ├── encrypter.js │ │ │ ├── error.js │ │ │ ├── explain.js │ │ │ ├── gridfs-stream │ │ │ │ ├── download.js │ │ │ │ ├── index.js │ │ │ │ └── upload.js │ │ │ ├── gridfs │ │ │ │ ├── chunk.js │ │ │ │ └── grid_store.js │ │ │ ├── mongo_client.js │ │ │ ├── operations │ │ │ │ ├── add_user.js │ │ │ │ ├── admin_ops.js │ │ │ │ ├── aggregate.js │ │ │ │ ├── bulk_write.js │ │ │ │ ├── collection_ops.js │ │ │ │ ├── collections.js │ │ │ │ ├── command.js │ │ │ │ ├── command_v2.js │ │ │ │ ├── common_functions.js │ │ │ │ ├── connect.js │ │ │ │ ├── count.js │ │ │ │ ├── count_documents.js │ │ │ │ ├── create_collection.js │ │ │ │ ├── create_indexes.js │ │ │ │ ├── cursor_ops.js │ │ │ │ ├── db_ops.js │ │ │ │ ├── delete_many.js │ │ │ │ ├── delete_one.js │ │ │ │ ├── distinct.js │ │ │ │ ├── drop.js │ │ │ │ ├── drop_index.js │ │ │ │ ├── drop_indexes.js │ │ │ │ ├── estimated_document_count.js │ │ │ │ ├── execute_db_admin_command.js │ │ │ │ ├── execute_operation.js │ │ │ │ ├── find.js │ │ │ │ ├── find_and_modify.js │ │ │ │ ├── find_one.js │ │ │ │ ├── find_one_and_delete.js │ │ │ │ ├── find_one_and_replace.js │ │ │ │ ├── find_one_and_update.js │ │ │ │ ├── geo_haystack_search.js │ │ │ │ ├── index_exists.js │ │ │ │ ├── index_information.js │ │ │ │ ├── indexes.js │ │ │ │ ├── insert_many.js │ │ │ │ ├── insert_one.js │ │ │ │ ├── is_capped.js │ │ │ │ ├── list_collections.js │ │ │ │ ├── list_databases.js │ │ │ │ ├── list_indexes.js │ │ │ │ ├── map_reduce.js │ │ │ │ ├── operation.js │ │ │ │ ├── options_operation.js │ │ │ │ ├── profiling_level.js │ │ │ │ ├── re_index.js │ │ │ │ ├── remove_user.js │ │ │ │ ├── rename.js │ │ │ │ ├── replace_one.js │ │ │ │ ├── run_command.js │ │ │ │ ├── set_profiling_level.js │ │ │ │ ├── stats.js │ │ │ │ ├── update_many.js │ │ │ │ ├── update_one.js │ │ │ │ └── validate_collection.js │ │ │ ├── read_concern.js │ │ │ ├── topologies │ │ │ │ ├── mongos.js │ │ │ │ ├── native_topology.js │ │ │ │ ├── replset.js │ │ │ │ ├── server.js │ │ │ │ └── topology_base.js │ │ │ ├── url_parser.js │ │ │ ├── utils.js │ │ │ └── write_concern.js │ │ └── package.json │ ├── ms │ │ ├── index.js │ │ ├── license.md │ │ ├── package.json │ │ └── readme.md │ ├── negotiator │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── charset.js │ │ │ ├── encoding.js │ │ │ ├── language.js │ │ │ └── mediaType.js │ │ └── package.json │ ├── neo-async │ │ ├── LICENSE │ │ ├── README.md │ │ ├── all.js │ │ ├── allLimit.js │ │ ├── allSeries.js │ │ ├── angelFall.js │ │ ├── any.js │ │ ├── anyLimit.js │ │ ├── anySeries.js │ │ ├── apply.js │ │ ├── applyEach.js │ │ ├── applyEachSeries.js │ │ ├── async.js │ │ ├── async.min.js │ │ ├── asyncify.js │ │ ├── auto.js │ │ ├── autoInject.js │ │ ├── cargo.js │ │ ├── compose.js │ │ ├── concat.js │ │ ├── concatLimit.js │ │ ├── concatSeries.js │ │ ├── constant.js │ │ ├── createLogger.js │ │ ├── detect.js │ │ ├── detectLimit.js │ │ ├── detectSeries.js │ │ ├── dir.js │ │ ├── doDuring.js │ │ ├── doUntil.js │ │ ├── doWhilst.js │ │ ├── during.js │ │ ├── each.js │ │ ├── eachLimit.js │ │ ├── eachOf.js │ │ ├── eachOfLimit.js │ │ ├── eachOfSeries.js │ │ ├── eachSeries.js │ │ ├── ensureAsync.js │ │ ├── every.js │ │ ├── everyLimit.js │ │ ├── everySeries.js │ │ ├── fast.js │ │ ├── filter.js │ │ ├── filterLimit.js │ │ ├── filterSeries.js │ │ ├── find.js │ │ ├── findLimit.js │ │ ├── findSeries.js │ │ ├── foldl.js │ │ ├── foldr.js │ │ ├── forEach.js │ │ ├── forEachLimit.js │ │ ├── forEachOf.js │ │ ├── forEachOfLimit.js │ │ ├── forEachOfSeries.js │ │ ├── forEachSeries.js │ │ ├── forever.js │ │ ├── groupBy.js │ │ ├── groupByLimit.js │ │ ├── groupBySeries.js │ │ ├── inject.js │ │ ├── iterator.js │ │ ├── log.js │ │ ├── map.js │ │ ├── mapLimit.js │ │ ├── mapSeries.js │ │ ├── mapValues.js │ │ ├── mapValuesLimit.js │ │ ├── mapValuesSeries.js │ │ ├── memoize.js │ │ ├── nextTick.js │ │ ├── omit.js │ │ ├── omitLimit.js │ │ ├── omitSeries.js │ │ ├── package.json │ │ ├── parallel.js │ │ ├── parallelLimit.js │ │ ├── pick.js │ │ ├── pickLimit.js │ │ ├── pickSeries.js │ │ ├── priorityQueue.js │ │ ├── queue.js │ │ ├── race.js │ │ ├── reduce.js │ │ ├── reduceRight.js │ │ ├── reflect.js │ │ ├── reflectAll.js │ │ ├── reject.js │ │ ├── rejectLimit.js │ │ ├── rejectSeries.js │ │ ├── retry.js │ │ ├── retryable.js │ │ ├── safe.js │ │ ├── select.js │ │ ├── selectLimit.js │ │ ├── selectSeries.js │ │ ├── seq.js │ │ ├── series.js │ │ ├── setImmediate.js │ │ ├── some.js │ │ ├── someLimit.js │ │ ├── someSeries.js │ │ ├── sortBy.js │ │ ├── sortByLimit.js │ │ ├── sortBySeries.js │ │ ├── timeout.js │ │ ├── times.js │ │ ├── timesLimit.js │ │ ├── timesSeries.js │ │ ├── transform.js │ │ ├── transformLimit.js │ │ ├── transformSeries.js │ │ ├── tryEach.js │ │ ├── unmemoize.js │ │ ├── until.js │ │ ├── waterfall.js │ │ ├── whilst.js │ │ └── wrapSync.js │ ├── nodemon │ │ ├── .eslintrc.json │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ ├── nodemon.js │ │ │ └── postinstall.js │ │ ├── commitlint.config.js │ │ ├── doc │ │ │ └── cli │ │ │ │ ├── authors.txt │ │ │ │ ├── config.txt │ │ │ │ ├── help.txt │ │ │ │ ├── logo.txt │ │ │ │ ├── options.txt │ │ │ │ ├── topics.txt │ │ │ │ ├── usage.txt │ │ │ │ └── whoami.txt │ │ ├── lib │ │ │ ├── cli │ │ │ │ ├── index.js │ │ │ │ └── parse.js │ │ │ ├── config │ │ │ │ ├── command.js │ │ │ │ ├── defaults.js │ │ │ │ ├── exec.js │ │ │ │ ├── index.js │ │ │ │ └── load.js │ │ │ ├── help │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── monitor │ │ │ │ ├── index.js │ │ │ │ ├── match.js │ │ │ │ ├── run.js │ │ │ │ ├── signals.js │ │ │ │ └── watch.js │ │ │ ├── nodemon.js │ │ │ ├── rules │ │ │ │ ├── add.js │ │ │ │ ├── index.js │ │ │ │ └── parse.js │ │ │ ├── spawn.js │ │ │ ├── utils │ │ │ │ ├── bus.js │ │ │ │ ├── clone.js │ │ │ │ ├── colour.js │ │ │ │ ├── index.js │ │ │ │ ├── log.js │ │ │ │ └── merge.js │ │ │ └── version.js │ │ ├── node_modules │ │ │ ├── debug │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── node.js │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── node.js │ │ │ └── ms │ │ │ │ ├── index.js │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── nopt │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── nopt.js │ │ ├── examples │ │ │ └── my-program.js │ │ ├── lib │ │ │ └── nopt.js │ │ └── package.json │ ├── normalize-path │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── normalize-url │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── on-finished │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── on-headers │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── once │ │ ├── LICENSE │ │ ├── README.md │ │ ├── once.js │ │ └── package.json │ ├── optional-require │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── p-cancelable │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── package-json │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ ├── semver │ │ │ │ ├── semver.cmd │ │ │ │ └── semver.ps1 │ │ │ └── semver │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ └── semver.js │ │ │ │ ├── package.json │ │ │ │ ├── range.bnf │ │ │ │ └── semver.js │ │ ├── package.json │ │ └── readme.md │ ├── parseurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── path-is-absolute │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── path-to-regexp │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── picomatch │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── constants.js │ │ │ ├── parse.js │ │ │ ├── picomatch.js │ │ │ ├── scan.js │ │ │ └── utils.js │ │ └── package.json │ ├── prepend-http │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── process-nextick-args │ │ ├── index.js │ │ ├── license.md │ │ ├── package.json │ │ └── readme.md │ ├── proxy-addr │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── pstree.remy │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── index.js │ │ │ ├── tree.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── tests │ │ │ ├── fixtures │ │ │ ├── index.js │ │ │ ├── out1 │ │ │ └── out2 │ │ │ └── index.test.js │ ├── pump │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ ├── test-browser.js │ │ └── test-node.js │ ├── pupa │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── qs │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ └── qs.js │ │ ├── lib │ │ │ ├── formats.js │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── .eslintrc │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ ├── random-bytes │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── range-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── raw-body │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── rc │ │ ├── LICENSE.APACHE2 │ │ ├── LICENSE.BSD │ │ ├── LICENSE.MIT │ │ ├── README.md │ │ ├── browser.js │ │ ├── cli.js │ │ ├── index.js │ │ ├── lib │ │ │ └── utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── ini.js │ │ │ ├── nested-env-vars.js │ │ │ └── test.js │ ├── readable-stream │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc │ │ │ └── wg-meetings │ │ │ │ └── 2015-01-30.md │ │ ├── duplex-browser.js │ │ ├── duplex.js │ │ ├── lib │ │ │ ├── _stream_duplex.js │ │ │ ├── _stream_passthrough.js │ │ │ ├── _stream_readable.js │ │ │ ├── _stream_transform.js │ │ │ ├── _stream_writable.js │ │ │ └── internal │ │ │ │ └── streams │ │ │ │ ├── BufferList.js │ │ │ │ ├── destroy.js │ │ │ │ ├── stream-browser.js │ │ │ │ └── stream.js │ │ ├── package.json │ │ ├── passthrough.js │ │ ├── readable-browser.js │ │ ├── readable.js │ │ ├── transform.js │ │ ├── writable-browser.js │ │ └── writable.js │ ├── readdirp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── registry-auth-token │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── base64.js │ │ ├── index.js │ │ ├── package.json │ │ └── registry-url.js │ ├── registry-url │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── responselike │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── safe-buffer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── safer-buffer │ │ ├── LICENSE │ │ ├── Porting-Buffer.md │ │ ├── Readme.md │ │ ├── dangerous.js │ │ ├── package.json │ │ ├── safer.js │ │ └── tests.js │ ├── saslprep │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── code-points.mem │ │ ├── generate-code-points.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── code-points.js │ │ │ ├── memory-code-points.js │ │ │ └── util.js │ │ ├── package.json │ │ ├── readme.md │ │ └── test │ │ │ ├── index.js │ │ │ └── util.js │ ├── semver-diff │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ ├── semver │ │ │ │ ├── semver.cmd │ │ │ │ └── semver.ps1 │ │ │ └── semver │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ └── semver.js │ │ │ │ ├── package.json │ │ │ │ ├── range.bnf │ │ │ │ └── semver.js │ │ ├── package.json │ │ └── readme.md │ ├── semver │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── semver │ │ ├── package.json │ │ ├── range.bnf │ │ └── semver.js │ ├── send │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ └── ms │ │ │ │ ├── index.js │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── serve-static │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── setprototypeof │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── signal-exit │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── signals.js │ ├── source-map │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── source-map.debug.js │ │ │ ├── source-map.js │ │ │ ├── source-map.min.js │ │ │ └── source-map.min.js.map │ │ ├── lib │ │ │ ├── array-set.js │ │ │ ├── base64-vlq.js │ │ │ ├── base64.js │ │ │ ├── binary-search.js │ │ │ ├── mapping-list.js │ │ │ ├── quick-sort.js │ │ │ ├── source-map-consumer.js │ │ │ ├── source-map-generator.js │ │ │ ├── source-node.js │ │ │ └── util.js │ │ ├── package.json │ │ ├── source-map.d.ts │ │ └── source-map.js │ ├── sparse-bitfield │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── statuses │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codes.json │ │ ├── index.js │ │ └── package.json │ ├── string-width │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── node_modules │ │ │ ├── ansi-regex │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ ├── emoji-regex │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ ├── README.md │ │ │ │ ├── es2015 │ │ │ │ │ ├── index.js │ │ │ │ │ └── text.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── text.js │ │ │ ├── is-fullwidth-code-point │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ └── strip-ansi │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── package.json │ │ └── readme.md │ ├── string_decoder │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── string_decoder.js │ │ └── package.json │ ├── strip-ansi │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── strip-json-comments │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── supports-color │ │ ├── browser.js │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── term-size │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ ├── readme.md │ │ └── vendor │ │ │ ├── .DS_Store │ │ │ ├── macos │ │ │ ├── .DS_Store │ │ │ └── term-size │ │ │ └── windows │ │ │ └── term-size.exe │ ├── to-readable-stream │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── to-regex-range │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── toidentifier │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── touch │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── nodetouch.js │ │ ├── index.js │ │ └── package.json │ ├── type-fest │ │ ├── index.d.ts │ │ ├── license │ │ ├── package.json │ │ ├── readme.md │ │ └── source │ │ │ ├── basic.d.ts │ │ │ ├── except.d.ts │ │ │ ├── literal-union.d.ts │ │ │ ├── merge-exclusive.d.ts │ │ │ ├── merge.d.ts │ │ │ ├── mutable.d.ts │ │ │ ├── opaque.d.ts │ │ │ ├── package-json.d.ts │ │ │ ├── partial-deep.d.ts │ │ │ ├── promisable.d.ts │ │ │ ├── readonly-deep.d.ts │ │ │ ├── require-at-least-one.d.ts │ │ │ ├── require-exactly-one.d.ts │ │ │ ├── set-optional.d.ts │ │ │ └── set-required.d.ts │ ├── type-is │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── typedarray-to-buffer │ │ ├── .airtap.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── basic.js │ ├── uglify-js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── uglifyjs │ │ ├── lib │ │ │ ├── ast.js │ │ │ ├── compress.js │ │ │ ├── minify.js │ │ │ ├── mozilla-ast.js │ │ │ ├── output.js │ │ │ ├── parse.js │ │ │ ├── propmangle.js │ │ │ ├── scope.js │ │ │ ├── sourcemap.js │ │ │ ├── transform.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── tools │ │ │ ├── domprops.html │ │ │ ├── domprops.json │ │ │ ├── exports.js │ │ │ ├── node.js │ │ │ └── tty.js │ ├── uid-safe │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── undefsafe │ │ ├── .jscsrc │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example.js │ │ ├── lib │ │ │ └── undefsafe.js │ │ └── package.json │ ├── unique-string │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── unpipe │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── update-notifier │ │ ├── check.js │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── url-parse-lax │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── util-deprecate │ │ ├── History.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── browser.js │ │ ├── node.js │ │ └── package.json │ ├── utils-merge │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── vary │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── widest-line │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── wordwrap │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── example │ │ │ ├── center.js │ │ │ └── meat.js │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ ├── break.js │ │ │ ├── idleness.txt │ │ │ └── wrap.js │ ├── wrappy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ └── wrappy.js │ ├── write-file-atomic │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ └── xdg-basedir │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md ├── package-lock.json ├── package.json ├── public │ └── css │ │ └── styles.css ├── routes │ └── notes.js └── views │ ├── home.handlebars │ ├── layouts │ └── main.handlebars │ └── notes │ ├── create.handlebars │ ├── detail.handlebars │ └── edit.handlebars ├── 15_mongoose ├── index.js ├── package-lock.json └── package.json ├── 16_partytime ├── backend │ ├── .gitignore │ ├── helpers │ │ ├── check-token.js │ │ ├── file-storage.js │ │ └── get-user-by-token.js │ ├── models │ │ ├── party.js │ │ └── user.js │ ├── package-lock.json │ ├── package.json │ ├── routes │ │ ├── authRoutes.js │ │ ├── partyRoutes.js │ │ └── userRoutes.js │ └── server.js └── frontend │ ├── .browserslistrc │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── img │ │ ├── party1.jpg │ │ ├── party2.jpg │ │ ├── party3.jpg │ │ ├── party4.jpg │ │ └── partytimelogo.png │ └── index.html │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── DataTable.vue │ │ ├── Footer.vue │ │ ├── LoginForm.vue │ │ ├── Message.vue │ │ ├── Navbar.vue │ │ ├── PartyForm.vue │ │ ├── UserForm.vue │ │ └── form │ │ │ └── InputSubmit.vue │ ├── main.js │ ├── router │ │ └── index.js │ ├── store │ │ └── index.js │ └── views │ │ ├── Dashboard.vue │ │ ├── EditParty.vue │ │ ├── Home.vue │ │ ├── Login.vue │ │ ├── NewParty.vue │ │ ├── Party.vue │ │ ├── Profile.vue │ │ └── Register.vue │ └── vue.config.js ├── 17_mongodb_atlas ├── 1_inicio_app │ ├── db │ │ └── connection.js │ ├── index.js │ ├── node_modules │ │ ├── .bin │ │ │ ├── handlebars │ │ │ ├── handlebars.cmd │ │ │ ├── handlebars.ps1 │ │ │ ├── is-ci │ │ │ ├── is-ci.cmd │ │ │ ├── is-ci.ps1 │ │ │ ├── mime │ │ │ ├── mime.cmd │ │ │ ├── mime.ps1 │ │ │ ├── nodemon │ │ │ ├── nodemon.cmd │ │ │ ├── nodemon.ps1 │ │ │ ├── nodetouch │ │ │ ├── nodetouch.cmd │ │ │ ├── nodetouch.ps1 │ │ │ ├── nopt │ │ │ ├── nopt.cmd │ │ │ ├── nopt.ps1 │ │ │ ├── rc │ │ │ ├── rc.cmd │ │ │ ├── rc.ps1 │ │ │ ├── semver │ │ │ ├── semver.cmd │ │ │ ├── semver.ps1 │ │ │ ├── uglifyjs │ │ │ ├── uglifyjs.cmd │ │ │ └── uglifyjs.ps1 │ │ ├── @sindresorhus │ │ │ └── is │ │ │ │ ├── dist │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── @szmarczak │ │ │ └── http-timer │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ └── source │ │ │ │ └── index.js │ │ ├── abbrev │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── abbrev.js │ │ │ └── package.json │ │ ├── accepts │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── ansi-align │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ └── string-width │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── ansi-regex │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── ansi-styles │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── anymatch │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── array-flatten │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── array-flatten.js │ │ │ └── package.json │ │ ├── balanced-match │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── binary-extensions │ │ │ ├── binary-extensions.json │ │ │ ├── binary-extensions.json.d.ts │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── bl │ │ │ ├── .jshintrc │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bl.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── indexOf.js │ │ │ │ └── test.js │ │ ├── body-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── read.js │ │ │ │ └── types │ │ │ │ │ ├── json.js │ │ │ │ │ ├── raw.js │ │ │ │ │ ├── text.js │ │ │ │ │ └── urlencoded.js │ │ │ └── package.json │ │ ├── boxen │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── brace-expansion │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── braces │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── compile.js │ │ │ │ ├── constants.js │ │ │ │ ├── expand.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ │ └── package.json │ │ ├── bson │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── browser_build │ │ │ │ ├── bson.js │ │ │ │ └── package.json │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── bson │ │ │ │ │ ├── binary.js │ │ │ │ │ ├── bson.js │ │ │ │ │ ├── code.js │ │ │ │ │ ├── db_ref.js │ │ │ │ │ ├── decimal128.js │ │ │ │ │ ├── double.js │ │ │ │ │ ├── float_parser.js │ │ │ │ │ ├── int_32.js │ │ │ │ │ ├── long.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── max_key.js │ │ │ │ │ ├── min_key.js │ │ │ │ │ ├── objectid.js │ │ │ │ │ ├── parser │ │ │ │ │ ├── calculate_size.js │ │ │ │ │ ├── deserializer.js │ │ │ │ │ ├── serializer.js │ │ │ │ │ └── utils.js │ │ │ │ │ ├── regexp.js │ │ │ │ │ ├── symbol.js │ │ │ │ │ └── timestamp.js │ │ │ └── package.json │ │ ├── bytes │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cacheable-request │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── node_modules │ │ │ │ ├── get-stream │ │ │ │ │ ├── buffer-stream.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ │ └── lowercase-keys │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ ├── camelcase │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── chalk │ │ │ ├── index.d.ts │ │ │ ├── license │ │ │ ├── node_modules │ │ │ │ ├── has-flag │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ │ └── supports-color │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ └── source │ │ │ │ ├── index.js │ │ │ │ ├── templates.js │ │ │ │ └── util.js │ │ ├── chokidar │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── constants.js │ │ │ │ ├── fsevents-handler.js │ │ │ │ └── nodefs-handler.js │ │ │ ├── package.json │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── ci-info │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── vendors.json │ │ ├── cli-boxes │ │ │ ├── boxes.json │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── clone-response │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ ├── color-convert │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── conversions.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── route.js │ │ ├── color-name │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── concat-map │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── example │ │ │ │ └── map.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── map.js │ │ ├── configstore │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── connect-flash │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── flash.js │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── content-disposition │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── content-type │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie-signature │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── core-util-is │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── float.patch │ │ │ ├── lib │ │ │ │ └── util.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── crypto-random-string │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── debug │ │ │ ├── .coveralls.yml │ │ │ ├── .eslintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── karma.conf.js │ │ │ ├── node.js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── browser.js │ │ │ │ ├── debug.js │ │ │ │ ├── index.js │ │ │ │ ├── inspector-log.js │ │ │ │ └── node.js │ │ ├── decompress-response │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── deep-extend │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── deep-extend.js │ │ │ └── package.json │ │ ├── defer-to-connect │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── denque │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── depd │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── browser │ │ │ │ │ └── index.js │ │ │ │ └── compat │ │ │ │ │ ├── callsite-tostring.js │ │ │ │ │ ├── event-listener-count.js │ │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── destroy │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── dot-prop │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── duplexer3 │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── ee-first │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── emoji-regex │ │ │ ├── LICENSE-MIT.txt │ │ │ ├── README.md │ │ │ ├── es2015 │ │ │ │ ├── index.js │ │ │ │ └── text.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── text.js │ │ ├── encodeurl │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── end-of-stream │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── escape-goat │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── escape-html │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── etag │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── express-handlebars │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc.js │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ ├── codeql-analysis.yml │ │ │ │ │ └── main.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── jest.config.js │ │ │ ├── lib │ │ │ │ └── express-handlebars.js │ │ │ ├── package.json │ │ │ ├── renovate.json │ │ │ └── spec │ │ │ │ ├── express-handlebars.test.js │ │ │ │ └── fixtures │ │ │ │ ├── layouts │ │ │ │ ├── main-latin1.handlebars │ │ │ │ └── main.handlebars │ │ │ │ ├── other-views │ │ │ │ ├── layouts │ │ │ │ │ └── main.handlebars │ │ │ │ └── partials │ │ │ │ │ └── partial.handlebars │ │ │ │ ├── partials │ │ │ │ ├── partial-latin1.handlebars │ │ │ │ └── partial.handlebars │ │ │ │ ├── render-cached.handlebars │ │ │ │ ├── render-helper.handlebars │ │ │ │ ├── render-latin1.handlebars │ │ │ │ ├── render-partial.handlebars │ │ │ │ ├── render-text.handlebars │ │ │ │ └── templates │ │ │ │ ├── subdir │ │ │ │ └── template.handlebars │ │ │ │ ├── template-latin1.handlebars │ │ │ │ └── template.handlebars │ │ ├── express-session │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ ├── depd │ │ │ │ │ ├── History.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── package.json │ │ │ │ └── safe-buffer │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ └── session │ │ │ │ ├── cookie.js │ │ │ │ ├── memory.js │ │ │ │ ├── session.js │ │ │ │ └── store.js │ │ ├── express │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── application.js │ │ │ │ ├── express.js │ │ │ │ ├── middleware │ │ │ │ │ ├── init.js │ │ │ │ │ └── query.js │ │ │ │ ├── request.js │ │ │ │ ├── response.js │ │ │ │ ├── router │ │ │ │ │ ├── index.js │ │ │ │ │ ├── layer.js │ │ │ │ │ └── route.js │ │ │ │ ├── utils.js │ │ │ │ └── view.js │ │ │ └── package.json │ │ ├── fill-range │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── finalhandler │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── forwarded │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── fresh │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── fs.realpath │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── old.js │ │ │ └── package.json │ │ ├── get-stream │ │ │ ├── buffer-stream.js │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── glob-parent │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── glob │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── changelog.md │ │ │ ├── common.js │ │ │ ├── glob.js │ │ │ ├── package.json │ │ │ └── sync.js │ │ ├── global-dirs │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── got │ │ │ ├── license │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ └── source │ │ │ │ ├── as-promise.js │ │ │ │ ├── as-stream.js │ │ │ │ ├── create.js │ │ │ │ ├── errors.js │ │ │ │ ├── get-response.js │ │ │ │ ├── index.js │ │ │ │ ├── known-hook-events.js │ │ │ │ ├── merge.js │ │ │ │ ├── normalize-arguments.js │ │ │ │ ├── progress.js │ │ │ │ ├── request-as-event-emitter.js │ │ │ │ └── utils │ │ │ │ ├── deep-freeze.js │ │ │ │ ├── get-body-size.js │ │ │ │ ├── is-form-data.js │ │ │ │ ├── timed-out.js │ │ │ │ └── url-to-options.js │ │ ├── graceful-fs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── clone.js │ │ │ ├── graceful-fs.js │ │ │ ├── legacy-streams.js │ │ │ ├── package.json │ │ │ └── polyfills.js │ │ ├── handlebars │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── bin │ │ │ │ ├── .eslintrc.js │ │ │ │ └── handlebars │ │ │ ├── dist │ │ │ │ ├── amd │ │ │ │ │ ├── handlebars.js │ │ │ │ │ ├── handlebars.runtime.js │ │ │ │ │ ├── handlebars │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── compiler │ │ │ │ │ │ │ ├── ast.js │ │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ │ ├── code-gen.js │ │ │ │ │ │ │ ├── compiler.js │ │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ │ ├── javascript-compiler.js │ │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ │ ├── printer.js │ │ │ │ │ │ │ ├── visitor.js │ │ │ │ │ │ │ └── whitespace-control.js │ │ │ │ │ │ ├── decorators.js │ │ │ │ │ │ ├── decorators │ │ │ │ │ │ │ └── inline.js │ │ │ │ │ │ ├── exception.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ ├── block-helper-missing.js │ │ │ │ │ │ │ ├── each.js │ │ │ │ │ │ │ ├── helper-missing.js │ │ │ │ │ │ │ ├── if.js │ │ │ │ │ │ │ ├── log.js │ │ │ │ │ │ │ ├── lookup.js │ │ │ │ │ │ │ └── with.js │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── create-new-lookup-object.js │ │ │ │ │ │ │ ├── proto-access.js │ │ │ │ │ │ │ └── wrapHelper.js │ │ │ │ │ │ ├── logger.js │ │ │ │ │ │ ├── no-conflict.js │ │ │ │ │ │ ├── runtime.js │ │ │ │ │ │ ├── safe-string.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ └── precompiler.js │ │ │ │ ├── cjs │ │ │ │ │ ├── handlebars.js │ │ │ │ │ ├── handlebars.runtime.js │ │ │ │ │ ├── handlebars │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── compiler │ │ │ │ │ │ │ ├── ast.js │ │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ │ ├── code-gen.js │ │ │ │ │ │ │ ├── compiler.js │ │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ │ ├── javascript-compiler.js │ │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ │ ├── printer.js │ │ │ │ │ │ │ ├── visitor.js │ │ │ │ │ │ │ └── whitespace-control.js │ │ │ │ │ │ ├── decorators.js │ │ │ │ │ │ ├── decorators │ │ │ │ │ │ │ └── inline.js │ │ │ │ │ │ ├── exception.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ ├── block-helper-missing.js │ │ │ │ │ │ │ ├── each.js │ │ │ │ │ │ │ ├── helper-missing.js │ │ │ │ │ │ │ ├── if.js │ │ │ │ │ │ │ ├── log.js │ │ │ │ │ │ │ ├── lookup.js │ │ │ │ │ │ │ └── with.js │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── create-new-lookup-object.js │ │ │ │ │ │ │ ├── proto-access.js │ │ │ │ │ │ │ └── wrapHelper.js │ │ │ │ │ │ ├── logger.js │ │ │ │ │ │ ├── no-conflict.js │ │ │ │ │ │ ├── runtime.js │ │ │ │ │ │ ├── safe-string.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ └── precompiler.js │ │ │ │ ├── handlebars.amd.js │ │ │ │ ├── handlebars.amd.min.js │ │ │ │ ├── handlebars.js │ │ │ │ ├── handlebars.min.js │ │ │ │ ├── handlebars.runtime.amd.js │ │ │ │ ├── handlebars.runtime.amd.min.js │ │ │ │ ├── handlebars.runtime.js │ │ │ │ └── handlebars.runtime.min.js │ │ │ ├── lib │ │ │ │ ├── handlebars.js │ │ │ │ ├── handlebars.runtime.js │ │ │ │ ├── handlebars │ │ │ │ │ ├── base.js │ │ │ │ │ ├── compiler │ │ │ │ │ │ ├── ast.js │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── code-gen.js │ │ │ │ │ │ ├── compiler.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── javascript-compiler.js │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ ├── printer.js │ │ │ │ │ │ ├── visitor.js │ │ │ │ │ │ └── whitespace-control.js │ │ │ │ │ ├── decorators.js │ │ │ │ │ ├── decorators │ │ │ │ │ │ └── inline.js │ │ │ │ │ ├── exception.js │ │ │ │ │ ├── helpers.js │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── block-helper-missing.js │ │ │ │ │ │ ├── each.js │ │ │ │ │ │ ├── helper-missing.js │ │ │ │ │ │ ├── if.js │ │ │ │ │ │ ├── log.js │ │ │ │ │ │ ├── lookup.js │ │ │ │ │ │ └── with.js │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── create-new-lookup-object.js │ │ │ │ │ │ ├── proto-access.js │ │ │ │ │ │ └── wrapHelper.js │ │ │ │ │ ├── logger.js │ │ │ │ │ ├── no-conflict.js │ │ │ │ │ ├── runtime.js │ │ │ │ │ ├── safe-string.js │ │ │ │ │ └── utils.js │ │ │ │ ├── index.js │ │ │ │ └── precompiler.js │ │ │ ├── package.json │ │ │ ├── print-script │ │ │ ├── release-notes.md │ │ │ ├── runtime.d.ts │ │ │ ├── runtime.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── has-flag │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── has-yarn │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── http-cache-semantics │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── http-errors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── iconv-lite │ │ │ ├── Changelog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── encodings │ │ │ │ ├── dbcs-codec.js │ │ │ │ ├── dbcs-data.js │ │ │ │ ├── index.js │ │ │ │ ├── internal.js │ │ │ │ ├── sbcs-codec.js │ │ │ │ ├── sbcs-data-generated.js │ │ │ │ ├── sbcs-data.js │ │ │ │ ├── tables │ │ │ │ │ ├── big5-added.json │ │ │ │ │ ├── cp936.json │ │ │ │ │ ├── cp949.json │ │ │ │ │ ├── cp950.json │ │ │ │ │ ├── eucjp.json │ │ │ │ │ ├── gb18030-ranges.json │ │ │ │ │ ├── gbk-added.json │ │ │ │ │ └── shiftjis.json │ │ │ │ ├── utf16.js │ │ │ │ └── utf7.js │ │ │ ├── lib │ │ │ │ ├── bom-handling.js │ │ │ │ ├── extend-node.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── streams.js │ │ │ └── package.json │ │ ├── ignore-by-default │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── import-lazy │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── imurmurhash │ │ │ ├── README.md │ │ │ ├── imurmurhash.js │ │ │ ├── imurmurhash.min.js │ │ │ └── package.json │ │ ├── inflight │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inflight.js │ │ │ └── package.json │ │ ├── inherits │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inherits.js │ │ │ ├── inherits_browser.js │ │ │ └── package.json │ │ ├── ini │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ini.js │ │ │ └── package.json │ │ ├── ipaddr.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ipaddr.min.js │ │ │ ├── lib │ │ │ │ ├── ipaddr.js │ │ │ │ └── ipaddr.js.d.ts │ │ │ └── package.json │ │ ├── is-binary-path │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── is-ci │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin.js │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── is-extglob │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── is-fullwidth-code-point │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── is-glob │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── is-installed-globally │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── is-npm │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── is-number │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── is-obj │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── is-path-inside │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── is-typedarray │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── is-yarn-global │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── isarray │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── json-buffer │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ ├── keyv │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ ├── latest-version │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── lowercase-keys │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── make-dir │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ ├── semver │ │ │ │ │ ├── semver.cmd │ │ │ │ │ └── semver.ps1 │ │ │ │ └── semver │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bin │ │ │ │ │ └── semver.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── range.bnf │ │ │ │ │ └── semver.js │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── media-typer │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── memory-pager │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── merge-descriptors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── methods │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-db │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── db.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-types │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime │ │ │ ├── .npmignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cli.js │ │ │ ├── mime.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── build.js │ │ │ │ └── test.js │ │ │ └── types.json │ │ ├── mimic-response │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── minimatch │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── minimatch.js │ │ │ └── package.json │ │ ├── minimist │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── example │ │ │ │ └── parse.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── readme.markdown │ │ │ └── test │ │ │ │ ├── all_bool.js │ │ │ │ ├── bool.js │ │ │ │ ├── dash.js │ │ │ │ ├── default_bool.js │ │ │ │ ├── dotted.js │ │ │ │ ├── kv_short.js │ │ │ │ ├── long.js │ │ │ │ ├── num.js │ │ │ │ ├── parse.js │ │ │ │ ├── parse_modified.js │ │ │ │ ├── proto.js │ │ │ │ ├── short.js │ │ │ │ ├── stop_early.js │ │ │ │ ├── unknown.js │ │ │ │ └── whitespace.js │ │ ├── mongodb │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── admin.js │ │ │ │ ├── aggregation_cursor.js │ │ │ │ ├── apm.js │ │ │ │ ├── async │ │ │ │ │ ├── .eslintrc │ │ │ │ │ └── async_iterator.js │ │ │ │ ├── bulk │ │ │ │ │ ├── common.js │ │ │ │ │ ├── ordered.js │ │ │ │ │ └── unordered.js │ │ │ │ ├── change_stream.js │ │ │ │ ├── cmap │ │ │ │ │ ├── connection.js │ │ │ │ │ ├── connection_pool.js │ │ │ │ │ ├── errors.js │ │ │ │ │ ├── events.js │ │ │ │ │ ├── message_stream.js │ │ │ │ │ └── stream_description.js │ │ │ │ ├── collection.js │ │ │ │ ├── command_cursor.js │ │ │ │ ├── constants.js │ │ │ │ ├── core │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── auth_provider.js │ │ │ │ │ │ ├── defaultAuthProviders.js │ │ │ │ │ │ ├── gssapi.js │ │ │ │ │ │ ├── mongo_credentials.js │ │ │ │ │ │ ├── mongocr.js │ │ │ │ │ │ ├── mongodb_aws.js │ │ │ │ │ │ ├── plain.js │ │ │ │ │ │ ├── scram.js │ │ │ │ │ │ └── x509.js │ │ │ │ │ ├── connection │ │ │ │ │ │ ├── apm.js │ │ │ │ │ │ ├── command_result.js │ │ │ │ │ │ ├── commands.js │ │ │ │ │ │ ├── connect.js │ │ │ │ │ │ ├── connection.js │ │ │ │ │ │ ├── logger.js │ │ │ │ │ │ ├── msg.js │ │ │ │ │ │ ├── pool.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── cursor.js │ │ │ │ │ ├── error.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── sdam │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── events.js │ │ │ │ │ │ ├── monitor.js │ │ │ │ │ │ ├── server.js │ │ │ │ │ │ ├── server_description.js │ │ │ │ │ │ ├── server_selection.js │ │ │ │ │ │ ├── srv_polling.js │ │ │ │ │ │ ├── topology.js │ │ │ │ │ │ └── topology_description.js │ │ │ │ │ ├── sessions.js │ │ │ │ │ ├── tools │ │ │ │ │ │ └── smoke_plugin.js │ │ │ │ │ ├── topologies │ │ │ │ │ │ ├── mongos.js │ │ │ │ │ │ ├── read_preference.js │ │ │ │ │ │ ├── replset.js │ │ │ │ │ │ ├── replset_state.js │ │ │ │ │ │ ├── server.js │ │ │ │ │ │ └── shared.js │ │ │ │ │ ├── transactions.js │ │ │ │ │ ├── uri_parser.js │ │ │ │ │ ├── utils.js │ │ │ │ │ └── wireprotocol │ │ │ │ │ │ ├── command.js │ │ │ │ │ │ ├── compression.js │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ ├── get_more.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── kill_cursors.js │ │ │ │ │ │ ├── query.js │ │ │ │ │ │ ├── shared.js │ │ │ │ │ │ └── write_command.js │ │ │ │ ├── cursor.js │ │ │ │ ├── db.js │ │ │ │ ├── dynamic_loaders.js │ │ │ │ ├── encrypter.js │ │ │ │ ├── error.js │ │ │ │ ├── explain.js │ │ │ │ ├── gridfs-stream │ │ │ │ │ ├── download.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── upload.js │ │ │ │ ├── gridfs │ │ │ │ │ ├── chunk.js │ │ │ │ │ └── grid_store.js │ │ │ │ ├── mongo_client.js │ │ │ │ ├── operations │ │ │ │ │ ├── add_user.js │ │ │ │ │ ├── admin_ops.js │ │ │ │ │ ├── aggregate.js │ │ │ │ │ ├── bulk_write.js │ │ │ │ │ ├── collection_ops.js │ │ │ │ │ ├── collections.js │ │ │ │ │ ├── command.js │ │ │ │ │ ├── command_v2.js │ │ │ │ │ ├── common_functions.js │ │ │ │ │ ├── connect.js │ │ │ │ │ ├── count.js │ │ │ │ │ ├── count_documents.js │ │ │ │ │ ├── create_collection.js │ │ │ │ │ ├── create_indexes.js │ │ │ │ │ ├── cursor_ops.js │ │ │ │ │ ├── db_ops.js │ │ │ │ │ ├── delete_many.js │ │ │ │ │ ├── delete_one.js │ │ │ │ │ ├── distinct.js │ │ │ │ │ ├── drop.js │ │ │ │ │ ├── drop_index.js │ │ │ │ │ ├── drop_indexes.js │ │ │ │ │ ├── estimated_document_count.js │ │ │ │ │ ├── execute_db_admin_command.js │ │ │ │ │ ├── execute_operation.js │ │ │ │ │ ├── find.js │ │ │ │ │ ├── find_and_modify.js │ │ │ │ │ ├── find_one.js │ │ │ │ │ ├── find_one_and_delete.js │ │ │ │ │ ├── find_one_and_replace.js │ │ │ │ │ ├── find_one_and_update.js │ │ │ │ │ ├── geo_haystack_search.js │ │ │ │ │ ├── index_exists.js │ │ │ │ │ ├── index_information.js │ │ │ │ │ ├── indexes.js │ │ │ │ │ ├── insert_many.js │ │ │ │ │ ├── insert_one.js │ │ │ │ │ ├── is_capped.js │ │ │ │ │ ├── list_collections.js │ │ │ │ │ ├── list_databases.js │ │ │ │ │ ├── list_indexes.js │ │ │ │ │ ├── map_reduce.js │ │ │ │ │ ├── operation.js │ │ │ │ │ ├── options_operation.js │ │ │ │ │ ├── profiling_level.js │ │ │ │ │ ├── re_index.js │ │ │ │ │ ├── remove_user.js │ │ │ │ │ ├── rename.js │ │ │ │ │ ├── replace_one.js │ │ │ │ │ ├── run_command.js │ │ │ │ │ ├── set_profiling_level.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── update_many.js │ │ │ │ │ ├── update_one.js │ │ │ │ │ └── validate_collection.js │ │ │ │ ├── read_concern.js │ │ │ │ ├── topologies │ │ │ │ │ ├── mongos.js │ │ │ │ │ ├── native_topology.js │ │ │ │ │ ├── replset.js │ │ │ │ │ ├── server.js │ │ │ │ │ └── topology_base.js │ │ │ │ ├── url_parser.js │ │ │ │ ├── utils.js │ │ │ │ └── write_concern.js │ │ │ └── package.json │ │ ├── ms │ │ │ ├── index.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── negotiator │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── charset.js │ │ │ │ ├── encoding.js │ │ │ │ ├── language.js │ │ │ │ └── mediaType.js │ │ │ └── package.json │ │ ├── neo-async │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── all.js │ │ │ ├── allLimit.js │ │ │ ├── allSeries.js │ │ │ ├── angelFall.js │ │ │ ├── any.js │ │ │ ├── anyLimit.js │ │ │ ├── anySeries.js │ │ │ ├── apply.js │ │ │ ├── applyEach.js │ │ │ ├── applyEachSeries.js │ │ │ ├── async.js │ │ │ ├── async.min.js │ │ │ ├── asyncify.js │ │ │ ├── auto.js │ │ │ ├── autoInject.js │ │ │ ├── cargo.js │ │ │ ├── compose.js │ │ │ ├── concat.js │ │ │ ├── concatLimit.js │ │ │ ├── concatSeries.js │ │ │ ├── constant.js │ │ │ ├── createLogger.js │ │ │ ├── detect.js │ │ │ ├── detectLimit.js │ │ │ ├── detectSeries.js │ │ │ ├── dir.js │ │ │ ├── doDuring.js │ │ │ ├── doUntil.js │ │ │ ├── doWhilst.js │ │ │ ├── during.js │ │ │ ├── each.js │ │ │ ├── eachLimit.js │ │ │ ├── eachOf.js │ │ │ ├── eachOfLimit.js │ │ │ ├── eachOfSeries.js │ │ │ ├── eachSeries.js │ │ │ ├── ensureAsync.js │ │ │ ├── every.js │ │ │ ├── everyLimit.js │ │ │ ├── everySeries.js │ │ │ ├── fast.js │ │ │ ├── filter.js │ │ │ ├── filterLimit.js │ │ │ ├── filterSeries.js │ │ │ ├── find.js │ │ │ ├── findLimit.js │ │ │ ├── findSeries.js │ │ │ ├── foldl.js │ │ │ ├── foldr.js │ │ │ ├── forEach.js │ │ │ ├── forEachLimit.js │ │ │ ├── forEachOf.js │ │ │ ├── forEachOfLimit.js │ │ │ ├── forEachOfSeries.js │ │ │ ├── forEachSeries.js │ │ │ ├── forever.js │ │ │ ├── groupBy.js │ │ │ ├── groupByLimit.js │ │ │ ├── groupBySeries.js │ │ │ ├── inject.js │ │ │ ├── iterator.js │ │ │ ├── log.js │ │ │ ├── map.js │ │ │ ├── mapLimit.js │ │ │ ├── mapSeries.js │ │ │ ├── mapValues.js │ │ │ ├── mapValuesLimit.js │ │ │ ├── mapValuesSeries.js │ │ │ ├── memoize.js │ │ │ ├── nextTick.js │ │ │ ├── omit.js │ │ │ ├── omitLimit.js │ │ │ ├── omitSeries.js │ │ │ ├── package.json │ │ │ ├── parallel.js │ │ │ ├── parallelLimit.js │ │ │ ├── pick.js │ │ │ ├── pickLimit.js │ │ │ ├── pickSeries.js │ │ │ ├── priorityQueue.js │ │ │ ├── queue.js │ │ │ ├── race.js │ │ │ ├── reduce.js │ │ │ ├── reduceRight.js │ │ │ ├── reflect.js │ │ │ ├── reflectAll.js │ │ │ ├── reject.js │ │ │ ├── rejectLimit.js │ │ │ ├── rejectSeries.js │ │ │ ├── retry.js │ │ │ ├── retryable.js │ │ │ ├── safe.js │ │ │ ├── select.js │ │ │ ├── selectLimit.js │ │ │ ├── selectSeries.js │ │ │ ├── seq.js │ │ │ ├── series.js │ │ │ ├── setImmediate.js │ │ │ ├── some.js │ │ │ ├── someLimit.js │ │ │ ├── someSeries.js │ │ │ ├── sortBy.js │ │ │ ├── sortByLimit.js │ │ │ ├── sortBySeries.js │ │ │ ├── timeout.js │ │ │ ├── times.js │ │ │ ├── timesLimit.js │ │ │ ├── timesSeries.js │ │ │ ├── transform.js │ │ │ ├── transformLimit.js │ │ │ ├── transformSeries.js │ │ │ ├── tryEach.js │ │ │ ├── unmemoize.js │ │ │ ├── until.js │ │ │ ├── waterfall.js │ │ │ ├── whilst.js │ │ │ └── wrapSync.js │ │ ├── nodemon │ │ │ ├── .eslintrc.json │ │ │ ├── .jshintrc │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ ├── nodemon.js │ │ │ │ └── postinstall.js │ │ │ ├── commitlint.config.js │ │ │ ├── doc │ │ │ │ └── cli │ │ │ │ │ ├── authors.txt │ │ │ │ │ ├── config.txt │ │ │ │ │ ├── help.txt │ │ │ │ │ ├── logo.txt │ │ │ │ │ ├── options.txt │ │ │ │ │ ├── topics.txt │ │ │ │ │ ├── usage.txt │ │ │ │ │ └── whoami.txt │ │ │ ├── lib │ │ │ │ ├── cli │ │ │ │ │ ├── index.js │ │ │ │ │ └── parse.js │ │ │ │ ├── config │ │ │ │ │ ├── command.js │ │ │ │ │ ├── defaults.js │ │ │ │ │ ├── exec.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── load.js │ │ │ │ ├── help │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── monitor │ │ │ │ │ ├── index.js │ │ │ │ │ ├── match.js │ │ │ │ │ ├── run.js │ │ │ │ │ ├── signals.js │ │ │ │ │ └── watch.js │ │ │ │ ├── nodemon.js │ │ │ │ ├── rules │ │ │ │ │ ├── add.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── parse.js │ │ │ │ ├── spawn.js │ │ │ │ ├── utils │ │ │ │ │ ├── bus.js │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── colour.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── log.js │ │ │ │ │ └── merge.js │ │ │ │ └── version.js │ │ │ ├── node_modules │ │ │ │ ├── debug │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── node.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── node.js │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── nopt │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── nopt.js │ │ │ ├── examples │ │ │ │ └── my-program.js │ │ │ ├── lib │ │ │ │ └── nopt.js │ │ │ └── package.json │ │ ├── normalize-path │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── normalize-url │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── on-finished │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── on-headers │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── once │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── once.js │ │ │ └── package.json │ │ ├── optional-require │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── p-cancelable │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── package-json │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ ├── semver │ │ │ │ │ ├── semver.cmd │ │ │ │ │ └── semver.ps1 │ │ │ │ └── semver │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bin │ │ │ │ │ └── semver.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── range.bnf │ │ │ │ │ └── semver.js │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── parseurl │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── path-is-absolute │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── path-to-regexp │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── picomatch │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── constants.js │ │ │ │ ├── parse.js │ │ │ │ ├── picomatch.js │ │ │ │ ├── scan.js │ │ │ │ └── utils.js │ │ │ └── package.json │ │ ├── prepend-http │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── process-nextick-args │ │ │ ├── index.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── proxy-addr │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── pstree.remy │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ ├── tree.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── tests │ │ │ │ ├── fixtures │ │ │ │ ├── index.js │ │ │ │ ├── out1 │ │ │ │ └── out2 │ │ │ │ └── index.test.js │ │ ├── pump │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test-browser.js │ │ │ └── test-node.js │ │ ├── pupa │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── qs │ │ │ ├── .editorconfig │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ └── qs.js │ │ │ ├── lib │ │ │ │ ├── formats.js │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── .eslintrc │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ ├── random-bytes │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── range-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── raw-body │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── rc │ │ │ ├── LICENSE.APACHE2 │ │ │ ├── LICENSE.BSD │ │ │ ├── LICENSE.MIT │ │ │ ├── README.md │ │ │ ├── browser.js │ │ │ ├── cli.js │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── ini.js │ │ │ │ ├── nested-env-vars.js │ │ │ │ └── test.js │ │ ├── readable-stream │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── GOVERNANCE.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc │ │ │ │ └── wg-meetings │ │ │ │ │ └── 2015-01-30.md │ │ │ ├── duplex-browser.js │ │ │ ├── duplex.js │ │ │ ├── lib │ │ │ │ ├── _stream_duplex.js │ │ │ │ ├── _stream_passthrough.js │ │ │ │ ├── _stream_readable.js │ │ │ │ ├── _stream_transform.js │ │ │ │ ├── _stream_writable.js │ │ │ │ └── internal │ │ │ │ │ └── streams │ │ │ │ │ ├── BufferList.js │ │ │ │ │ ├── destroy.js │ │ │ │ │ ├── stream-browser.js │ │ │ │ │ └── stream.js │ │ │ ├── package.json │ │ │ ├── passthrough.js │ │ │ ├── readable-browser.js │ │ │ ├── readable.js │ │ │ ├── transform.js │ │ │ ├── writable-browser.js │ │ │ └── writable.js │ │ ├── readdirp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── registry-auth-token │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── base64.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── registry-url.js │ │ ├── registry-url │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── responselike │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ ├── safe-buffer │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── safer-buffer │ │ │ ├── LICENSE │ │ │ ├── Porting-Buffer.md │ │ │ ├── Readme.md │ │ │ ├── dangerous.js │ │ │ ├── package.json │ │ │ ├── safer.js │ │ │ └── tests.js │ │ ├── saslprep │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── code-points.mem │ │ │ ├── generate-code-points.js │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── code-points.js │ │ │ │ ├── memory-code-points.js │ │ │ │ └── util.js │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ └── test │ │ │ │ ├── index.js │ │ │ │ └── util.js │ │ ├── semver-diff │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ ├── semver │ │ │ │ │ ├── semver.cmd │ │ │ │ │ └── semver.ps1 │ │ │ │ └── semver │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bin │ │ │ │ │ └── semver.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── range.bnf │ │ │ │ │ └── semver.js │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── semver │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── semver │ │ │ ├── package.json │ │ │ ├── range.bnf │ │ │ └── semver.js │ │ ├── send │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── serve-static │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── setprototypeof │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ ├── signal-exit │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── signals.js │ │ ├── source-map │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── source-map.debug.js │ │ │ │ ├── source-map.js │ │ │ │ ├── source-map.min.js │ │ │ │ └── source-map.min.js.map │ │ │ ├── lib │ │ │ │ ├── array-set.js │ │ │ │ ├── base64-vlq.js │ │ │ │ ├── base64.js │ │ │ │ ├── binary-search.js │ │ │ │ ├── mapping-list.js │ │ │ │ ├── quick-sort.js │ │ │ │ ├── source-map-consumer.js │ │ │ │ ├── source-map-generator.js │ │ │ │ ├── source-node.js │ │ │ │ └── util.js │ │ │ ├── package.json │ │ │ ├── source-map.d.ts │ │ │ └── source-map.js │ │ ├── sparse-bitfield │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── statuses │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── codes.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── string-width │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── node_modules │ │ │ │ ├── ansi-regex │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ │ ├── emoji-regex │ │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── es2015 │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── text.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── text.js │ │ │ │ ├── is-fullwidth-code-point │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ │ └── strip-ansi │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── string_decoder │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── string_decoder.js │ │ │ └── package.json │ │ ├── strip-ansi │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── strip-json-comments │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── supports-color │ │ │ ├── browser.js │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── term-size │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ └── vendor │ │ │ │ ├── .DS_Store │ │ │ │ ├── macos │ │ │ │ ├── .DS_Store │ │ │ │ └── term-size │ │ │ │ └── windows │ │ │ │ └── term-size.exe │ │ ├── to-readable-stream │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── to-regex-range │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── toidentifier │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── touch │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── nodetouch.js │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── type-fest │ │ │ ├── index.d.ts │ │ │ ├── license │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ └── source │ │ │ │ ├── basic.d.ts │ │ │ │ ├── except.d.ts │ │ │ │ ├── literal-union.d.ts │ │ │ │ ├── merge-exclusive.d.ts │ │ │ │ ├── merge.d.ts │ │ │ │ ├── mutable.d.ts │ │ │ │ ├── opaque.d.ts │ │ │ │ ├── package-json.d.ts │ │ │ │ ├── partial-deep.d.ts │ │ │ │ ├── promisable.d.ts │ │ │ │ ├── readonly-deep.d.ts │ │ │ │ ├── require-at-least-one.d.ts │ │ │ │ ├── require-exactly-one.d.ts │ │ │ │ ├── set-optional.d.ts │ │ │ │ └── set-required.d.ts │ │ ├── type-is │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── typedarray-to-buffer │ │ │ ├── .airtap.yml │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── basic.js │ │ ├── uglify-js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── uglifyjs │ │ │ ├── lib │ │ │ │ ├── ast.js │ │ │ │ ├── compress.js │ │ │ │ ├── minify.js │ │ │ │ ├── mozilla-ast.js │ │ │ │ ├── output.js │ │ │ │ ├── parse.js │ │ │ │ ├── propmangle.js │ │ │ │ ├── scope.js │ │ │ │ ├── sourcemap.js │ │ │ │ ├── transform.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── tools │ │ │ │ ├── domprops.html │ │ │ │ ├── domprops.json │ │ │ │ ├── exports.js │ │ │ │ ├── node.js │ │ │ │ └── tty.js │ │ ├── uid-safe │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── undefsafe │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── example.js │ │ │ ├── lib │ │ │ │ └── undefsafe.js │ │ │ └── package.json │ │ ├── unique-string │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── unpipe │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── update-notifier │ │ │ ├── check.js │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── url-parse-lax │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── util-deprecate │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── browser.js │ │ │ ├── node.js │ │ │ └── package.json │ │ ├── utils-merge │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── vary │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── widest-line │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── wordwrap │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── example │ │ │ │ ├── center.js │ │ │ │ └── meat.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── break.js │ │ │ │ ├── idleness.txt │ │ │ │ └── wrap.js │ │ ├── wrappy │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── wrappy.js │ │ ├── write-file-atomic │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ └── xdg-basedir │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── css │ │ │ └── styles.css │ ├── routes │ │ └── notes.js │ └── views │ │ ├── home.handlebars │ │ ├── layouts │ │ └── main.handlebars │ │ └── notes │ │ ├── create.handlebars │ │ ├── detail.handlebars │ │ └── edit.handlebars ├── 2_dotenv │ ├── .gitignore │ ├── db │ │ └── connection.js │ ├── index.js │ ├── node_modules │ │ ├── .bin │ │ │ ├── handlebars │ │ │ ├── handlebars.cmd │ │ │ ├── handlebars.ps1 │ │ │ ├── is-ci │ │ │ ├── is-ci.cmd │ │ │ ├── is-ci.ps1 │ │ │ ├── mime │ │ │ ├── mime.cmd │ │ │ ├── mime.ps1 │ │ │ ├── nodemon │ │ │ ├── nodemon.cmd │ │ │ ├── nodemon.ps1 │ │ │ ├── nodetouch │ │ │ ├── nodetouch.cmd │ │ │ ├── nodetouch.ps1 │ │ │ ├── nopt │ │ │ ├── nopt.cmd │ │ │ ├── nopt.ps1 │ │ │ ├── rc │ │ │ ├── rc.cmd │ │ │ ├── rc.ps1 │ │ │ ├── semver │ │ │ ├── semver.cmd │ │ │ ├── semver.ps1 │ │ │ ├── uglifyjs │ │ │ ├── uglifyjs.cmd │ │ │ └── uglifyjs.ps1 │ │ ├── @sindresorhus │ │ │ └── is │ │ │ │ ├── dist │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── @szmarczak │ │ │ └── http-timer │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ └── source │ │ │ │ └── index.js │ │ ├── abbrev │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── abbrev.js │ │ │ └── package.json │ │ ├── accepts │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── ansi-align │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ └── string-width │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── ansi-regex │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── ansi-styles │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── anymatch │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── array-flatten │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── array-flatten.js │ │ │ └── package.json │ │ ├── balanced-match │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── binary-extensions │ │ │ ├── binary-extensions.json │ │ │ ├── binary-extensions.json.d.ts │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── bl │ │ │ ├── .jshintrc │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bl.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── indexOf.js │ │ │ │ └── test.js │ │ ├── body-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── read.js │ │ │ │ └── types │ │ │ │ │ ├── json.js │ │ │ │ │ ├── raw.js │ │ │ │ │ ├── text.js │ │ │ │ │ └── urlencoded.js │ │ │ └── package.json │ │ ├── boxen │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── brace-expansion │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── braces │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── compile.js │ │ │ │ ├── constants.js │ │ │ │ ├── expand.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ │ └── package.json │ │ ├── bson │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── browser_build │ │ │ │ ├── bson.js │ │ │ │ └── package.json │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── bson │ │ │ │ │ ├── binary.js │ │ │ │ │ ├── bson.js │ │ │ │ │ ├── code.js │ │ │ │ │ ├── db_ref.js │ │ │ │ │ ├── decimal128.js │ │ │ │ │ ├── double.js │ │ │ │ │ ├── float_parser.js │ │ │ │ │ ├── int_32.js │ │ │ │ │ ├── long.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── max_key.js │ │ │ │ │ ├── min_key.js │ │ │ │ │ ├── objectid.js │ │ │ │ │ ├── parser │ │ │ │ │ ├── calculate_size.js │ │ │ │ │ ├── deserializer.js │ │ │ │ │ ├── serializer.js │ │ │ │ │ └── utils.js │ │ │ │ │ ├── regexp.js │ │ │ │ │ ├── symbol.js │ │ │ │ │ └── timestamp.js │ │ │ └── package.json │ │ ├── bytes │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cacheable-request │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── node_modules │ │ │ │ ├── get-stream │ │ │ │ │ ├── buffer-stream.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ │ └── lowercase-keys │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ ├── camelcase │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── chalk │ │ │ ├── index.d.ts │ │ │ ├── license │ │ │ ├── node_modules │ │ │ │ ├── has-flag │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ │ └── supports-color │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ └── source │ │ │ │ ├── index.js │ │ │ │ ├── templates.js │ │ │ │ └── util.js │ │ ├── chokidar │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── constants.js │ │ │ │ ├── fsevents-handler.js │ │ │ │ └── nodefs-handler.js │ │ │ ├── package.json │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── ci-info │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── vendors.json │ │ ├── cli-boxes │ │ │ ├── boxes.json │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── clone-response │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ ├── color-convert │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── conversions.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── route.js │ │ ├── color-name │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── concat-map │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── example │ │ │ │ └── map.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── map.js │ │ ├── configstore │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── connect-flash │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── flash.js │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── content-disposition │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── content-type │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie-signature │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── core-util-is │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── float.patch │ │ │ ├── lib │ │ │ │ └── util.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── crypto-random-string │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── debug │ │ │ ├── .coveralls.yml │ │ │ ├── .eslintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── karma.conf.js │ │ │ ├── node.js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── browser.js │ │ │ │ ├── debug.js │ │ │ │ ├── index.js │ │ │ │ ├── inspector-log.js │ │ │ │ └── node.js │ │ ├── decompress-response │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── deep-extend │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── deep-extend.js │ │ │ └── package.json │ │ ├── defer-to-connect │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── denque │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── depd │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── browser │ │ │ │ │ └── index.js │ │ │ │ └── compat │ │ │ │ │ ├── callsite-tostring.js │ │ │ │ │ ├── event-listener-count.js │ │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── destroy │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── dot-prop │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── dotenv │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── config.js │ │ │ ├── lib │ │ │ │ ├── cli-options.js │ │ │ │ ├── env-options.js │ │ │ │ └── main.js │ │ │ ├── package.json │ │ │ └── types │ │ │ │ ├── index.d.ts │ │ │ │ ├── test.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── duplexer3 │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── ee-first │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── emoji-regex │ │ │ ├── LICENSE-MIT.txt │ │ │ ├── README.md │ │ │ ├── es2015 │ │ │ │ ├── index.js │ │ │ │ └── text.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── text.js │ │ ├── encodeurl │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── end-of-stream │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── escape-goat │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── escape-html │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── etag │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── express-handlebars │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc.js │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ ├── codeql-analysis.yml │ │ │ │ │ └── main.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── jest.config.js │ │ │ ├── lib │ │ │ │ └── express-handlebars.js │ │ │ ├── package.json │ │ │ ├── renovate.json │ │ │ └── spec │ │ │ │ ├── express-handlebars.test.js │ │ │ │ └── fixtures │ │ │ │ ├── layouts │ │ │ │ ├── main-latin1.handlebars │ │ │ │ └── main.handlebars │ │ │ │ ├── other-views │ │ │ │ ├── layouts │ │ │ │ │ └── main.handlebars │ │ │ │ └── partials │ │ │ │ │ └── partial.handlebars │ │ │ │ ├── partials │ │ │ │ ├── partial-latin1.handlebars │ │ │ │ └── partial.handlebars │ │ │ │ ├── render-cached.handlebars │ │ │ │ ├── render-helper.handlebars │ │ │ │ ├── render-latin1.handlebars │ │ │ │ ├── render-partial.handlebars │ │ │ │ ├── render-text.handlebars │ │ │ │ └── templates │ │ │ │ ├── subdir │ │ │ │ └── template.handlebars │ │ │ │ ├── template-latin1.handlebars │ │ │ │ └── template.handlebars │ │ ├── express-session │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ ├── depd │ │ │ │ │ ├── History.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── package.json │ │ │ │ └── safe-buffer │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ └── session │ │ │ │ ├── cookie.js │ │ │ │ ├── memory.js │ │ │ │ ├── session.js │ │ │ │ └── store.js │ │ ├── express │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── application.js │ │ │ │ ├── express.js │ │ │ │ ├── middleware │ │ │ │ │ ├── init.js │ │ │ │ │ └── query.js │ │ │ │ ├── request.js │ │ │ │ ├── response.js │ │ │ │ ├── router │ │ │ │ │ ├── index.js │ │ │ │ │ ├── layer.js │ │ │ │ │ └── route.js │ │ │ │ ├── utils.js │ │ │ │ └── view.js │ │ │ └── package.json │ │ ├── fill-range │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── finalhandler │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── forwarded │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── fresh │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── fs.realpath │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── old.js │ │ │ └── package.json │ │ ├── get-stream │ │ │ ├── buffer-stream.js │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── glob-parent │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── glob │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── changelog.md │ │ │ ├── common.js │ │ │ ├── glob.js │ │ │ ├── package.json │ │ │ └── sync.js │ │ ├── global-dirs │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── got │ │ │ ├── license │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ └── source │ │ │ │ ├── as-promise.js │ │ │ │ ├── as-stream.js │ │ │ │ ├── create.js │ │ │ │ ├── errors.js │ │ │ │ ├── get-response.js │ │ │ │ ├── index.js │ │ │ │ ├── known-hook-events.js │ │ │ │ ├── merge.js │ │ │ │ ├── normalize-arguments.js │ │ │ │ ├── progress.js │ │ │ │ ├── request-as-event-emitter.js │ │ │ │ └── utils │ │ │ │ ├── deep-freeze.js │ │ │ │ ├── get-body-size.js │ │ │ │ ├── is-form-data.js │ │ │ │ ├── timed-out.js │ │ │ │ └── url-to-options.js │ │ ├── graceful-fs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── clone.js │ │ │ ├── graceful-fs.js │ │ │ ├── legacy-streams.js │ │ │ ├── package.json │ │ │ └── polyfills.js │ │ ├── handlebars │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── bin │ │ │ │ ├── .eslintrc.js │ │ │ │ └── handlebars │ │ │ ├── dist │ │ │ │ ├── amd │ │ │ │ │ ├── handlebars.js │ │ │ │ │ ├── handlebars.runtime.js │ │ │ │ │ ├── handlebars │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── compiler │ │ │ │ │ │ │ ├── ast.js │ │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ │ ├── code-gen.js │ │ │ │ │ │ │ ├── compiler.js │ │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ │ ├── javascript-compiler.js │ │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ │ ├── printer.js │ │ │ │ │ │ │ ├── visitor.js │ │ │ │ │ │ │ └── whitespace-control.js │ │ │ │ │ │ ├── decorators.js │ │ │ │ │ │ ├── decorators │ │ │ │ │ │ │ └── inline.js │ │ │ │ │ │ ├── exception.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ ├── block-helper-missing.js │ │ │ │ │ │ │ ├── each.js │ │ │ │ │ │ │ ├── helper-missing.js │ │ │ │ │ │ │ ├── if.js │ │ │ │ │ │ │ ├── log.js │ │ │ │ │ │ │ ├── lookup.js │ │ │ │ │ │ │ └── with.js │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── create-new-lookup-object.js │ │ │ │ │ │ │ ├── proto-access.js │ │ │ │ │ │ │ └── wrapHelper.js │ │ │ │ │ │ ├── logger.js │ │ │ │ │ │ ├── no-conflict.js │ │ │ │ │ │ ├── runtime.js │ │ │ │ │ │ ├── safe-string.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ └── precompiler.js │ │ │ │ ├── cjs │ │ │ │ │ ├── handlebars.js │ │ │ │ │ ├── handlebars.runtime.js │ │ │ │ │ ├── handlebars │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── compiler │ │ │ │ │ │ │ ├── ast.js │ │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ │ ├── code-gen.js │ │ │ │ │ │ │ ├── compiler.js │ │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ │ ├── javascript-compiler.js │ │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ │ ├── printer.js │ │ │ │ │ │ │ ├── visitor.js │ │ │ │ │ │ │ └── whitespace-control.js │ │ │ │ │ │ ├── decorators.js │ │ │ │ │ │ ├── decorators │ │ │ │ │ │ │ └── inline.js │ │ │ │ │ │ ├── exception.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ ├── block-helper-missing.js │ │ │ │ │ │ │ ├── each.js │ │ │ │ │ │ │ ├── helper-missing.js │ │ │ │ │ │ │ ├── if.js │ │ │ │ │ │ │ ├── log.js │ │ │ │ │ │ │ ├── lookup.js │ │ │ │ │ │ │ └── with.js │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── create-new-lookup-object.js │ │ │ │ │ │ │ ├── proto-access.js │ │ │ │ │ │ │ └── wrapHelper.js │ │ │ │ │ │ ├── logger.js │ │ │ │ │ │ ├── no-conflict.js │ │ │ │ │ │ ├── runtime.js │ │ │ │ │ │ ├── safe-string.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ └── precompiler.js │ │ │ │ ├── handlebars.amd.js │ │ │ │ ├── handlebars.amd.min.js │ │ │ │ ├── handlebars.js │ │ │ │ ├── handlebars.min.js │ │ │ │ ├── handlebars.runtime.amd.js │ │ │ │ ├── handlebars.runtime.amd.min.js │ │ │ │ ├── handlebars.runtime.js │ │ │ │ └── handlebars.runtime.min.js │ │ │ ├── lib │ │ │ │ ├── handlebars.js │ │ │ │ ├── handlebars.runtime.js │ │ │ │ ├── handlebars │ │ │ │ │ ├── base.js │ │ │ │ │ ├── compiler │ │ │ │ │ │ ├── ast.js │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── code-gen.js │ │ │ │ │ │ ├── compiler.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── javascript-compiler.js │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ ├── printer.js │ │ │ │ │ │ ├── visitor.js │ │ │ │ │ │ └── whitespace-control.js │ │ │ │ │ ├── decorators.js │ │ │ │ │ ├── decorators │ │ │ │ │ │ └── inline.js │ │ │ │ │ ├── exception.js │ │ │ │ │ ├── helpers.js │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── block-helper-missing.js │ │ │ │ │ │ ├── each.js │ │ │ │ │ │ ├── helper-missing.js │ │ │ │ │ │ ├── if.js │ │ │ │ │ │ ├── log.js │ │ │ │ │ │ ├── lookup.js │ │ │ │ │ │ └── with.js │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── create-new-lookup-object.js │ │ │ │ │ │ ├── proto-access.js │ │ │ │ │ │ └── wrapHelper.js │ │ │ │ │ ├── logger.js │ │ │ │ │ ├── no-conflict.js │ │ │ │ │ ├── runtime.js │ │ │ │ │ ├── safe-string.js │ │ │ │ │ └── utils.js │ │ │ │ ├── index.js │ │ │ │ └── precompiler.js │ │ │ ├── package.json │ │ │ ├── print-script │ │ │ ├── release-notes.md │ │ │ ├── runtime.d.ts │ │ │ ├── runtime.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── has-flag │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── has-yarn │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── http-cache-semantics │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── http-errors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── iconv-lite │ │ │ ├── Changelog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── encodings │ │ │ │ ├── dbcs-codec.js │ │ │ │ ├── dbcs-data.js │ │ │ │ ├── index.js │ │ │ │ ├── internal.js │ │ │ │ ├── sbcs-codec.js │ │ │ │ ├── sbcs-data-generated.js │ │ │ │ ├── sbcs-data.js │ │ │ │ ├── tables │ │ │ │ │ ├── big5-added.json │ │ │ │ │ ├── cp936.json │ │ │ │ │ ├── cp949.json │ │ │ │ │ ├── cp950.json │ │ │ │ │ ├── eucjp.json │ │ │ │ │ ├── gb18030-ranges.json │ │ │ │ │ ├── gbk-added.json │ │ │ │ │ └── shiftjis.json │ │ │ │ ├── utf16.js │ │ │ │ └── utf7.js │ │ │ ├── lib │ │ │ │ ├── bom-handling.js │ │ │ │ ├── extend-node.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── streams.js │ │ │ └── package.json │ │ ├── ignore-by-default │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── import-lazy │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── imurmurhash │ │ │ ├── README.md │ │ │ ├── imurmurhash.js │ │ │ ├── imurmurhash.min.js │ │ │ └── package.json │ │ ├── inflight │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inflight.js │ │ │ └── package.json │ │ ├── inherits │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inherits.js │ │ │ ├── inherits_browser.js │ │ │ └── package.json │ │ ├── ini │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ini.js │ │ │ └── package.json │ │ ├── ipaddr.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ipaddr.min.js │ │ │ ├── lib │ │ │ │ ├── ipaddr.js │ │ │ │ └── ipaddr.js.d.ts │ │ │ └── package.json │ │ ├── is-binary-path │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── is-ci │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin.js │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── is-extglob │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── is-fullwidth-code-point │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── is-glob │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── is-installed-globally │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── is-npm │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── is-number │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── is-obj │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── is-path-inside │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── is-typedarray │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── is-yarn-global │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── isarray │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── json-buffer │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ ├── keyv │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ ├── latest-version │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── lowercase-keys │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── make-dir │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ ├── semver │ │ │ │ │ ├── semver.cmd │ │ │ │ │ └── semver.ps1 │ │ │ │ └── semver │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bin │ │ │ │ │ └── semver.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── range.bnf │ │ │ │ │ └── semver.js │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── media-typer │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── memory-pager │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── merge-descriptors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── methods │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-db │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── db.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-types │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime │ │ │ ├── .npmignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cli.js │ │ │ ├── mime.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── build.js │ │ │ │ └── test.js │ │ │ └── types.json │ │ ├── mimic-response │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── minimatch │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── minimatch.js │ │ │ └── package.json │ │ ├── minimist │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── example │ │ │ │ └── parse.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── readme.markdown │ │ │ └── test │ │ │ │ ├── all_bool.js │ │ │ │ ├── bool.js │ │ │ │ ├── dash.js │ │ │ │ ├── default_bool.js │ │ │ │ ├── dotted.js │ │ │ │ ├── kv_short.js │ │ │ │ ├── long.js │ │ │ │ ├── num.js │ │ │ │ ├── parse.js │ │ │ │ ├── parse_modified.js │ │ │ │ ├── proto.js │ │ │ │ ├── short.js │ │ │ │ ├── stop_early.js │ │ │ │ ├── unknown.js │ │ │ │ └── whitespace.js │ │ ├── mongodb │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── admin.js │ │ │ │ ├── aggregation_cursor.js │ │ │ │ ├── apm.js │ │ │ │ ├── async │ │ │ │ │ ├── .eslintrc │ │ │ │ │ └── async_iterator.js │ │ │ │ ├── bulk │ │ │ │ │ ├── common.js │ │ │ │ │ ├── ordered.js │ │ │ │ │ └── unordered.js │ │ │ │ ├── change_stream.js │ │ │ │ ├── cmap │ │ │ │ │ ├── connection.js │ │ │ │ │ ├── connection_pool.js │ │ │ │ │ ├── errors.js │ │ │ │ │ ├── events.js │ │ │ │ │ ├── message_stream.js │ │ │ │ │ └── stream_description.js │ │ │ │ ├── collection.js │ │ │ │ ├── command_cursor.js │ │ │ │ ├── constants.js │ │ │ │ ├── core │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── auth_provider.js │ │ │ │ │ │ ├── defaultAuthProviders.js │ │ │ │ │ │ ├── gssapi.js │ │ │ │ │ │ ├── mongo_credentials.js │ │ │ │ │ │ ├── mongocr.js │ │ │ │ │ │ ├── mongodb_aws.js │ │ │ │ │ │ ├── plain.js │ │ │ │ │ │ ├── scram.js │ │ │ │ │ │ └── x509.js │ │ │ │ │ ├── connection │ │ │ │ │ │ ├── apm.js │ │ │ │ │ │ ├── command_result.js │ │ │ │ │ │ ├── commands.js │ │ │ │ │ │ ├── connect.js │ │ │ │ │ │ ├── connection.js │ │ │ │ │ │ ├── logger.js │ │ │ │ │ │ ├── msg.js │ │ │ │ │ │ ├── pool.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── cursor.js │ │ │ │ │ ├── error.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── sdam │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── events.js │ │ │ │ │ │ ├── monitor.js │ │ │ │ │ │ ├── server.js │ │ │ │ │ │ ├── server_description.js │ │ │ │ │ │ ├── server_selection.js │ │ │ │ │ │ ├── srv_polling.js │ │ │ │ │ │ ├── topology.js │ │ │ │ │ │ └── topology_description.js │ │ │ │ │ ├── sessions.js │ │ │ │ │ ├── tools │ │ │ │ │ │ └── smoke_plugin.js │ │ │ │ │ ├── topologies │ │ │ │ │ │ ├── mongos.js │ │ │ │ │ │ ├── read_preference.js │ │ │ │ │ │ ├── replset.js │ │ │ │ │ │ ├── replset_state.js │ │ │ │ │ │ ├── server.js │ │ │ │ │ │ └── shared.js │ │ │ │ │ ├── transactions.js │ │ │ │ │ ├── uri_parser.js │ │ │ │ │ ├── utils.js │ │ │ │ │ └── wireprotocol │ │ │ │ │ │ ├── command.js │ │ │ │ │ │ ├── compression.js │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ ├── get_more.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── kill_cursors.js │ │ │ │ │ │ ├── query.js │ │ │ │ │ │ ├── shared.js │ │ │ │ │ │ └── write_command.js │ │ │ │ ├── cursor.js │ │ │ │ ├── db.js │ │ │ │ ├── dynamic_loaders.js │ │ │ │ ├── encrypter.js │ │ │ │ ├── error.js │ │ │ │ ├── explain.js │ │ │ │ ├── gridfs-stream │ │ │ │ │ ├── download.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── upload.js │ │ │ │ ├── gridfs │ │ │ │ │ ├── chunk.js │ │ │ │ │ └── grid_store.js │ │ │ │ ├── mongo_client.js │ │ │ │ ├── operations │ │ │ │ │ ├── add_user.js │ │ │ │ │ ├── admin_ops.js │ │ │ │ │ ├── aggregate.js │ │ │ │ │ ├── bulk_write.js │ │ │ │ │ ├── collection_ops.js │ │ │ │ │ ├── collections.js │ │ │ │ │ ├── command.js │ │ │ │ │ ├── command_v2.js │ │ │ │ │ ├── common_functions.js │ │ │ │ │ ├── connect.js │ │ │ │ │ ├── count.js │ │ │ │ │ ├── count_documents.js │ │ │ │ │ ├── create_collection.js │ │ │ │ │ ├── create_indexes.js │ │ │ │ │ ├── cursor_ops.js │ │ │ │ │ ├── db_ops.js │ │ │ │ │ ├── delete_many.js │ │ │ │ │ ├── delete_one.js │ │ │ │ │ ├── distinct.js │ │ │ │ │ ├── drop.js │ │ │ │ │ ├── drop_index.js │ │ │ │ │ ├── drop_indexes.js │ │ │ │ │ ├── estimated_document_count.js │ │ │ │ │ ├── execute_db_admin_command.js │ │ │ │ │ ├── execute_operation.js │ │ │ │ │ ├── find.js │ │ │ │ │ ├── find_and_modify.js │ │ │ │ │ ├── find_one.js │ │ │ │ │ ├── find_one_and_delete.js │ │ │ │ │ ├── find_one_and_replace.js │ │ │ │ │ ├── find_one_and_update.js │ │ │ │ │ ├── geo_haystack_search.js │ │ │ │ │ ├── index_exists.js │ │ │ │ │ ├── index_information.js │ │ │ │ │ ├── indexes.js │ │ │ │ │ ├── insert_many.js │ │ │ │ │ ├── insert_one.js │ │ │ │ │ ├── is_capped.js │ │ │ │ │ ├── list_collections.js │ │ │ │ │ ├── list_databases.js │ │ │ │ │ ├── list_indexes.js │ │ │ │ │ ├── map_reduce.js │ │ │ │ │ ├── operation.js │ │ │ │ │ ├── options_operation.js │ │ │ │ │ ├── profiling_level.js │ │ │ │ │ ├── re_index.js │ │ │ │ │ ├── remove_user.js │ │ │ │ │ ├── rename.js │ │ │ │ │ ├── replace_one.js │ │ │ │ │ ├── run_command.js │ │ │ │ │ ├── set_profiling_level.js │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── update_many.js │ │ │ │ │ ├── update_one.js │ │ │ │ │ └── validate_collection.js │ │ │ │ ├── read_concern.js │ │ │ │ ├── topologies │ │ │ │ │ ├── mongos.js │ │ │ │ │ ├── native_topology.js │ │ │ │ │ ├── replset.js │ │ │ │ │ ├── server.js │ │ │ │ │ └── topology_base.js │ │ │ │ ├── url_parser.js │ │ │ │ ├── utils.js │ │ │ │ └── write_concern.js │ │ │ └── package.json │ │ ├── ms │ │ │ ├── index.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── negotiator │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── charset.js │ │ │ │ ├── encoding.js │ │ │ │ ├── language.js │ │ │ │ └── mediaType.js │ │ │ └── package.json │ │ ├── neo-async │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── all.js │ │ │ ├── allLimit.js │ │ │ ├── allSeries.js │ │ │ ├── angelFall.js │ │ │ ├── any.js │ │ │ ├── anyLimit.js │ │ │ ├── anySeries.js │ │ │ ├── apply.js │ │ │ ├── applyEach.js │ │ │ ├── applyEachSeries.js │ │ │ ├── async.js │ │ │ ├── async.min.js │ │ │ ├── asyncify.js │ │ │ ├── auto.js │ │ │ ├── autoInject.js │ │ │ ├── cargo.js │ │ │ ├── compose.js │ │ │ ├── concat.js │ │ │ ├── concatLimit.js │ │ │ ├── concatSeries.js │ │ │ ├── constant.js │ │ │ ├── createLogger.js │ │ │ ├── detect.js │ │ │ ├── detectLimit.js │ │ │ ├── detectSeries.js │ │ │ ├── dir.js │ │ │ ├── doDuring.js │ │ │ ├── doUntil.js │ │ │ ├── doWhilst.js │ │ │ ├── during.js │ │ │ ├── each.js │ │ │ ├── eachLimit.js │ │ │ ├── eachOf.js │ │ │ ├── eachOfLimit.js │ │ │ ├── eachOfSeries.js │ │ │ ├── eachSeries.js │ │ │ ├── ensureAsync.js │ │ │ ├── every.js │ │ │ ├── everyLimit.js │ │ │ ├── everySeries.js │ │ │ ├── fast.js │ │ │ ├── filter.js │ │ │ ├── filterLimit.js │ │ │ ├── filterSeries.js │ │ │ ├── find.js │ │ │ ├── findLimit.js │ │ │ ├── findSeries.js │ │ │ ├── foldl.js │ │ │ ├── foldr.js │ │ │ ├── forEach.js │ │ │ ├── forEachLimit.js │ │ │ ├── forEachOf.js │ │ │ ├── forEachOfLimit.js │ │ │ ├── forEachOfSeries.js │ │ │ ├── forEachSeries.js │ │ │ ├── forever.js │ │ │ ├── groupBy.js │ │ │ ├── groupByLimit.js │ │ │ ├── groupBySeries.js │ │ │ ├── inject.js │ │ │ ├── iterator.js │ │ │ ├── log.js │ │ │ ├── map.js │ │ │ ├── mapLimit.js │ │ │ ├── mapSeries.js │ │ │ ├── mapValues.js │ │ │ ├── mapValuesLimit.js │ │ │ ├── mapValuesSeries.js │ │ │ ├── memoize.js │ │ │ ├── nextTick.js │ │ │ ├── omit.js │ │ │ ├── omitLimit.js │ │ │ ├── omitSeries.js │ │ │ ├── package.json │ │ │ ├── parallel.js │ │ │ ├── parallelLimit.js │ │ │ ├── pick.js │ │ │ ├── pickLimit.js │ │ │ ├── pickSeries.js │ │ │ ├── priorityQueue.js │ │ │ ├── queue.js │ │ │ ├── race.js │ │ │ ├── reduce.js │ │ │ ├── reduceRight.js │ │ │ ├── reflect.js │ │ │ ├── reflectAll.js │ │ │ ├── reject.js │ │ │ ├── rejectLimit.js │ │ │ ├── rejectSeries.js │ │ │ ├── retry.js │ │ │ ├── retryable.js │ │ │ ├── safe.js │ │ │ ├── select.js │ │ │ ├── selectLimit.js │ │ │ ├── selectSeries.js │ │ │ ├── seq.js │ │ │ ├── series.js │ │ │ ├── setImmediate.js │ │ │ ├── some.js │ │ │ ├── someLimit.js │ │ │ ├── someSeries.js │ │ │ ├── sortBy.js │ │ │ ├── sortByLimit.js │ │ │ ├── sortBySeries.js │ │ │ ├── timeout.js │ │ │ ├── times.js │ │ │ ├── timesLimit.js │ │ │ ├── timesSeries.js │ │ │ ├── transform.js │ │ │ ├── transformLimit.js │ │ │ ├── transformSeries.js │ │ │ ├── tryEach.js │ │ │ ├── unmemoize.js │ │ │ ├── until.js │ │ │ ├── waterfall.js │ │ │ ├── whilst.js │ │ │ └── wrapSync.js │ │ ├── nodemon │ │ │ ├── .eslintrc.json │ │ │ ├── .jshintrc │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ ├── nodemon.js │ │ │ │ └── postinstall.js │ │ │ ├── commitlint.config.js │ │ │ ├── doc │ │ │ │ └── cli │ │ │ │ │ ├── authors.txt │ │ │ │ │ ├── config.txt │ │ │ │ │ ├── help.txt │ │ │ │ │ ├── logo.txt │ │ │ │ │ ├── options.txt │ │ │ │ │ ├── topics.txt │ │ │ │ │ ├── usage.txt │ │ │ │ │ └── whoami.txt │ │ │ ├── lib │ │ │ │ ├── cli │ │ │ │ │ ├── index.js │ │ │ │ │ └── parse.js │ │ │ │ ├── config │ │ │ │ │ ├── command.js │ │ │ │ │ ├── defaults.js │ │ │ │ │ ├── exec.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── load.js │ │ │ │ ├── help │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── monitor │ │ │ │ │ ├── index.js │ │ │ │ │ ├── match.js │ │ │ │ │ ├── run.js │ │ │ │ │ ├── signals.js │ │ │ │ │ └── watch.js │ │ │ │ ├── nodemon.js │ │ │ │ ├── rules │ │ │ │ │ ├── add.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── parse.js │ │ │ │ ├── spawn.js │ │ │ │ ├── utils │ │ │ │ │ ├── bus.js │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── colour.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── log.js │ │ │ │ │ └── merge.js │ │ │ │ └── version.js │ │ │ ├── node_modules │ │ │ │ ├── debug │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── node.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── node.js │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── nopt │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── nopt.js │ │ │ ├── examples │ │ │ │ └── my-program.js │ │ │ ├── lib │ │ │ │ └── nopt.js │ │ │ └── package.json │ │ ├── normalize-path │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── normalize-url │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── on-finished │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── on-headers │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── once │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── once.js │ │ │ └── package.json │ │ ├── optional-require │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── p-cancelable │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── package-json │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ ├── semver │ │ │ │ │ ├── semver.cmd │ │ │ │ │ └── semver.ps1 │ │ │ │ └── semver │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bin │ │ │ │ │ └── semver.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── range.bnf │ │ │ │ │ └── semver.js │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── parseurl │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── path-is-absolute │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── path-to-regexp │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── picomatch │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── constants.js │ │ │ │ ├── parse.js │ │ │ │ ├── picomatch.js │ │ │ │ ├── scan.js │ │ │ │ └── utils.js │ │ │ └── package.json │ │ ├── prepend-http │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── process-nextick-args │ │ │ ├── index.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── proxy-addr │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── pstree.remy │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ ├── tree.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── tests │ │ │ │ ├── fixtures │ │ │ │ ├── index.js │ │ │ │ ├── out1 │ │ │ │ └── out2 │ │ │ │ └── index.test.js │ │ ├── pump │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test-browser.js │ │ │ └── test-node.js │ │ ├── pupa │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── qs │ │ │ ├── .editorconfig │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ └── qs.js │ │ │ ├── lib │ │ │ │ ├── formats.js │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── .eslintrc │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ ├── random-bytes │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── range-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── raw-body │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── rc │ │ │ ├── LICENSE.APACHE2 │ │ │ ├── LICENSE.BSD │ │ │ ├── LICENSE.MIT │ │ │ ├── README.md │ │ │ ├── browser.js │ │ │ ├── cli.js │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── ini.js │ │ │ │ ├── nested-env-vars.js │ │ │ │ └── test.js │ │ ├── readable-stream │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── GOVERNANCE.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc │ │ │ │ └── wg-meetings │ │ │ │ │ └── 2015-01-30.md │ │ │ ├── duplex-browser.js │ │ │ ├── duplex.js │ │ │ ├── lib │ │ │ │ ├── _stream_duplex.js │ │ │ │ ├── _stream_passthrough.js │ │ │ │ ├── _stream_readable.js │ │ │ │ ├── _stream_transform.js │ │ │ │ ├── _stream_writable.js │ │ │ │ └── internal │ │ │ │ │ └── streams │ │ │ │ │ ├── BufferList.js │ │ │ │ │ ├── destroy.js │ │ │ │ │ ├── stream-browser.js │ │ │ │ │ └── stream.js │ │ │ ├── package.json │ │ │ ├── passthrough.js │ │ │ ├── readable-browser.js │ │ │ ├── readable.js │ │ │ ├── transform.js │ │ │ ├── writable-browser.js │ │ │ └── writable.js │ │ ├── readdirp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── registry-auth-token │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── base64.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── registry-url.js │ │ ├── registry-url │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── responselike │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ ├── safe-buffer │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── safer-buffer │ │ │ ├── LICENSE │ │ │ ├── Porting-Buffer.md │ │ │ ├── Readme.md │ │ │ ├── dangerous.js │ │ │ ├── package.json │ │ │ ├── safer.js │ │ │ └── tests.js │ │ ├── saslprep │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── code-points.mem │ │ │ ├── generate-code-points.js │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── code-points.js │ │ │ │ ├── memory-code-points.js │ │ │ │ └── util.js │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ └── test │ │ │ │ ├── index.js │ │ │ │ └── util.js │ │ ├── semver-diff │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ ├── semver │ │ │ │ │ ├── semver.cmd │ │ │ │ │ └── semver.ps1 │ │ │ │ └── semver │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bin │ │ │ │ │ └── semver.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── range.bnf │ │ │ │ │ └── semver.js │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── semver │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── semver │ │ │ ├── package.json │ │ │ ├── range.bnf │ │ │ └── semver.js │ │ ├── send │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── serve-static │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── setprototypeof │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ ├── signal-exit │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── signals.js │ │ ├── source-map │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── source-map.debug.js │ │ │ │ ├── source-map.js │ │ │ │ ├── source-map.min.js │ │ │ │ └── source-map.min.js.map │ │ │ ├── lib │ │ │ │ ├── array-set.js │ │ │ │ ├── base64-vlq.js │ │ │ │ ├── base64.js │ │ │ │ ├── binary-search.js │ │ │ │ ├── mapping-list.js │ │ │ │ ├── quick-sort.js │ │ │ │ ├── source-map-consumer.js │ │ │ │ ├── source-map-generator.js │ │ │ │ ├── source-node.js │ │ │ │ └── util.js │ │ │ ├── package.json │ │ │ ├── source-map.d.ts │ │ │ └── source-map.js │ │ ├── sparse-bitfield │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── statuses │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── codes.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── string-width │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── node_modules │ │ │ │ ├── ansi-regex │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ │ ├── emoji-regex │ │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── es2015 │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── text.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── text.js │ │ │ │ ├── is-fullwidth-code-point │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ │ └── strip-ansi │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── string_decoder │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── string_decoder.js │ │ │ └── package.json │ │ ├── strip-ansi │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── strip-json-comments │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── supports-color │ │ │ ├── browser.js │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── term-size │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ └── vendor │ │ │ │ ├── .DS_Store │ │ │ │ ├── macos │ │ │ │ ├── .DS_Store │ │ │ │ └── term-size │ │ │ │ └── windows │ │ │ │ └── term-size.exe │ │ ├── to-readable-stream │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── to-regex-range │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── toidentifier │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── touch │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── nodetouch.js │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── type-fest │ │ │ ├── index.d.ts │ │ │ ├── license │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ └── source │ │ │ │ ├── basic.d.ts │ │ │ │ ├── except.d.ts │ │ │ │ ├── literal-union.d.ts │ │ │ │ ├── merge-exclusive.d.ts │ │ │ │ ├── merge.d.ts │ │ │ │ ├── mutable.d.ts │ │ │ │ ├── opaque.d.ts │ │ │ │ ├── package-json.d.ts │ │ │ │ ├── partial-deep.d.ts │ │ │ │ ├── promisable.d.ts │ │ │ │ ├── readonly-deep.d.ts │ │ │ │ ├── require-at-least-one.d.ts │ │ │ │ ├── require-exactly-one.d.ts │ │ │ │ ├── set-optional.d.ts │ │ │ │ └── set-required.d.ts │ │ ├── type-is │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── typedarray-to-buffer │ │ │ ├── .airtap.yml │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── basic.js │ │ ├── uglify-js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── uglifyjs │ │ │ ├── lib │ │ │ │ ├── ast.js │ │ │ │ ├── compress.js │ │ │ │ ├── minify.js │ │ │ │ ├── mozilla-ast.js │ │ │ │ ├── output.js │ │ │ │ ├── parse.js │ │ │ │ ├── propmangle.js │ │ │ │ ├── scope.js │ │ │ │ ├── sourcemap.js │ │ │ │ ├── transform.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── tools │ │ │ │ ├── domprops.html │ │ │ │ ├── domprops.json │ │ │ │ ├── exports.js │ │ │ │ ├── node.js │ │ │ │ └── tty.js │ │ ├── uid-safe │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── undefsafe │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── example.js │ │ │ ├── lib │ │ │ │ └── undefsafe.js │ │ │ └── package.json │ │ ├── unique-string │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── unpipe │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── update-notifier │ │ │ ├── check.js │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── url-parse-lax │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── util-deprecate │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── browser.js │ │ │ ├── node.js │ │ │ └── package.json │ │ ├── utils-merge │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── vary │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── widest-line │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── wordwrap │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── example │ │ │ │ ├── center.js │ │ │ │ └── meat.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── break.js │ │ │ │ ├── idleness.txt │ │ │ │ └── wrap.js │ │ ├── wrappy │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── wrappy.js │ │ ├── write-file-atomic │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ └── xdg-basedir │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── css │ │ │ └── styles.css │ ├── routes │ │ └── notes.js │ └── views │ │ ├── home.handlebars │ │ ├── layouts │ │ └── main.handlebars │ │ └── notes │ │ ├── create.handlebars │ │ ├── detail.handlebars │ │ └── edit.handlebars └── 3_conectando_ao_atlas │ ├── .gitignore │ ├── db │ └── connection.js │ ├── index.js │ ├── node_modules │ ├── .bin │ │ ├── handlebars │ │ ├── handlebars.cmd │ │ ├── handlebars.ps1 │ │ ├── is-ci │ │ ├── is-ci.cmd │ │ ├── is-ci.ps1 │ │ ├── mime │ │ ├── mime.cmd │ │ ├── mime.ps1 │ │ ├── nodemon │ │ ├── nodemon.cmd │ │ ├── nodemon.ps1 │ │ ├── nodetouch │ │ ├── nodetouch.cmd │ │ ├── nodetouch.ps1 │ │ ├── nopt │ │ ├── nopt.cmd │ │ ├── nopt.ps1 │ │ ├── rc │ │ ├── rc.cmd │ │ ├── rc.ps1 │ │ ├── semver │ │ ├── semver.cmd │ │ ├── semver.ps1 │ │ ├── uglifyjs │ │ ├── uglifyjs.cmd │ │ └── uglifyjs.ps1 │ ├── @sindresorhus │ │ └── is │ │ │ ├── dist │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── index.js.map │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ ├── @szmarczak │ │ └── http-timer │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── source │ │ │ └── index.js │ ├── abbrev │ │ ├── LICENSE │ │ ├── README.md │ │ ├── abbrev.js │ │ └── package.json │ ├── accepts │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── ansi-align │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ └── string-width │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── ansi-regex │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── ansi-styles │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── anymatch │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── array-flatten │ │ ├── LICENSE │ │ ├── README.md │ │ ├── array-flatten.js │ │ └── package.json │ ├── balanced-match │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── binary-extensions │ │ ├── binary-extensions.json │ │ ├── binary-extensions.json.d.ts │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── bl │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bl.js │ │ ├── package.json │ │ └── test │ │ │ ├── indexOf.js │ │ │ └── test.js │ ├── body-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── read.js │ │ │ └── types │ │ │ │ ├── json.js │ │ │ │ ├── raw.js │ │ │ │ ├── text.js │ │ │ │ └── urlencoded.js │ │ └── package.json │ ├── boxen │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── brace-expansion │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── braces │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── compile.js │ │ │ ├── constants.js │ │ │ ├── expand.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ │ └── package.json │ ├── bson │ │ ├── HISTORY.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── browser_build │ │ │ ├── bson.js │ │ │ └── package.json │ │ ├── index.js │ │ ├── lib │ │ │ └── bson │ │ │ │ ├── binary.js │ │ │ │ ├── bson.js │ │ │ │ ├── code.js │ │ │ │ ├── db_ref.js │ │ │ │ ├── decimal128.js │ │ │ │ ├── double.js │ │ │ │ ├── float_parser.js │ │ │ │ ├── int_32.js │ │ │ │ ├── long.js │ │ │ │ ├── map.js │ │ │ │ ├── max_key.js │ │ │ │ ├── min_key.js │ │ │ │ ├── objectid.js │ │ │ │ ├── parser │ │ │ │ ├── calculate_size.js │ │ │ │ ├── deserializer.js │ │ │ │ ├── serializer.js │ │ │ │ └── utils.js │ │ │ │ ├── regexp.js │ │ │ │ ├── symbol.js │ │ │ │ └── timestamp.js │ │ └── package.json │ ├── bytes │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── cacheable-request │ │ ├── LICENSE │ │ ├── README.md │ │ ├── node_modules │ │ │ ├── get-stream │ │ │ │ ├── buffer-stream.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ └── lowercase-keys │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── camelcase │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── chalk │ │ ├── index.d.ts │ │ ├── license │ │ ├── node_modules │ │ │ ├── has-flag │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ └── supports-color │ │ │ │ ├── browser.js │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── package.json │ │ ├── readme.md │ │ └── source │ │ │ ├── index.js │ │ │ ├── templates.js │ │ │ └── util.js │ ├── chokidar │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── constants.js │ │ │ ├── fsevents-handler.js │ │ │ └── nodefs-handler.js │ │ ├── package.json │ │ └── types │ │ │ └── index.d.ts │ ├── ci-info │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── vendors.json │ ├── cli-boxes │ │ ├── boxes.json │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── clone-response │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── color-convert │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── conversions.js │ │ ├── index.js │ │ ├── package.json │ │ └── route.js │ ├── color-name │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── concat-map │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── example │ │ │ └── map.js │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── map.js │ ├── configstore │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── connect-flash │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── flash.js │ │ │ └── index.js │ │ └── package.json │ ├── content-disposition │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── content-type │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── cookie-signature │ │ ├── .npmignore │ │ ├── History.md │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── cookie │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── core-util-is │ │ ├── LICENSE │ │ ├── README.md │ │ ├── float.patch │ │ ├── lib │ │ │ └── util.js │ │ ├── package.json │ │ └── test.js │ ├── crypto-random-string │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── debug │ │ ├── .coveralls.yml │ │ ├── .eslintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── component.json │ │ ├── karma.conf.js │ │ ├── node.js │ │ ├── package.json │ │ └── src │ │ │ ├── browser.js │ │ │ ├── debug.js │ │ │ ├── index.js │ │ │ ├── inspector-log.js │ │ │ └── node.js │ ├── decompress-response │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── deep-extend │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ └── deep-extend.js │ │ └── package.json │ ├── defer-to-connect │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── denque │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── depd │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── browser │ │ │ │ └── index.js │ │ │ └── compat │ │ │ │ ├── callsite-tostring.js │ │ │ │ ├── event-listener-count.js │ │ │ │ └── index.js │ │ └── package.json │ ├── destroy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── dot-prop │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── dotenv │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config.js │ │ ├── lib │ │ │ ├── cli-options.js │ │ │ ├── env-options.js │ │ │ └── main.js │ │ ├── package.json │ │ └── types │ │ │ ├── index.d.ts │ │ │ ├── test.ts │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── duplexer3 │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── ee-first │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── emoji-regex │ │ ├── LICENSE-MIT.txt │ │ ├── README.md │ │ ├── es2015 │ │ │ ├── index.js │ │ │ └── text.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── text.js │ ├── encodeurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── end-of-stream │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── escape-goat │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── escape-html │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── etag │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── express-handlebars │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .github │ │ │ └── workflows │ │ │ │ ├── codeql-analysis.yml │ │ │ │ └── main.yml │ │ ├── CHANGELOG.md │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── jest.config.js │ │ ├── lib │ │ │ └── express-handlebars.js │ │ ├── package.json │ │ ├── renovate.json │ │ └── spec │ │ │ ├── express-handlebars.test.js │ │ │ └── fixtures │ │ │ ├── layouts │ │ │ ├── main-latin1.handlebars │ │ │ └── main.handlebars │ │ │ ├── other-views │ │ │ ├── layouts │ │ │ │ └── main.handlebars │ │ │ └── partials │ │ │ │ └── partial.handlebars │ │ │ ├── partials │ │ │ ├── partial-latin1.handlebars │ │ │ └── partial.handlebars │ │ │ ├── render-cached.handlebars │ │ │ ├── render-helper.handlebars │ │ │ ├── render-latin1.handlebars │ │ │ ├── render-partial.handlebars │ │ │ ├── render-text.handlebars │ │ │ └── templates │ │ │ ├── subdir │ │ │ └── template.handlebars │ │ │ ├── template-latin1.handlebars │ │ │ └── template.handlebars │ ├── express-session │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── depd │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── browser │ │ │ │ │ │ └── index.js │ │ │ │ └── package.json │ │ │ └── safe-buffer │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── package.json │ │ └── session │ │ │ ├── cookie.js │ │ │ ├── memory.js │ │ │ ├── session.js │ │ │ └── store.js │ ├── express │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── application.js │ │ │ ├── express.js │ │ │ ├── middleware │ │ │ │ ├── init.js │ │ │ │ └── query.js │ │ │ ├── request.js │ │ │ ├── response.js │ │ │ ├── router │ │ │ │ ├── index.js │ │ │ │ ├── layer.js │ │ │ │ └── route.js │ │ │ ├── utils.js │ │ │ └── view.js │ │ └── package.json │ ├── fill-range │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── finalhandler │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── forwarded │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── fresh │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── fs.realpath │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── old.js │ │ └── package.json │ ├── get-stream │ │ ├── buffer-stream.js │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── glob-parent │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── glob │ │ ├── LICENSE │ │ ├── README.md │ │ ├── changelog.md │ │ ├── common.js │ │ ├── glob.js │ │ ├── package.json │ │ └── sync.js │ ├── global-dirs │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── got │ │ ├── license │ │ ├── package.json │ │ ├── readme.md │ │ └── source │ │ │ ├── as-promise.js │ │ │ ├── as-stream.js │ │ │ ├── create.js │ │ │ ├── errors.js │ │ │ ├── get-response.js │ │ │ ├── index.js │ │ │ ├── known-hook-events.js │ │ │ ├── merge.js │ │ │ ├── normalize-arguments.js │ │ │ ├── progress.js │ │ │ ├── request-as-event-emitter.js │ │ │ └── utils │ │ │ ├── deep-freeze.js │ │ │ ├── get-body-size.js │ │ │ ├── is-form-data.js │ │ │ ├── timed-out.js │ │ │ └── url-to-options.js │ ├── graceful-fs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── clone.js │ │ ├── graceful-fs.js │ │ ├── legacy-streams.js │ │ ├── package.json │ │ └── polyfills.js │ ├── handlebars │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── bin │ │ │ ├── .eslintrc.js │ │ │ └── handlebars │ │ ├── dist │ │ │ ├── amd │ │ │ │ ├── handlebars.js │ │ │ │ ├── handlebars.runtime.js │ │ │ │ ├── handlebars │ │ │ │ │ ├── base.js │ │ │ │ │ ├── compiler │ │ │ │ │ │ ├── ast.js │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── code-gen.js │ │ │ │ │ │ ├── compiler.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── javascript-compiler.js │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ ├── printer.js │ │ │ │ │ │ ├── visitor.js │ │ │ │ │ │ └── whitespace-control.js │ │ │ │ │ ├── decorators.js │ │ │ │ │ ├── decorators │ │ │ │ │ │ └── inline.js │ │ │ │ │ ├── exception.js │ │ │ │ │ ├── helpers.js │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── block-helper-missing.js │ │ │ │ │ │ ├── each.js │ │ │ │ │ │ ├── helper-missing.js │ │ │ │ │ │ ├── if.js │ │ │ │ │ │ ├── log.js │ │ │ │ │ │ ├── lookup.js │ │ │ │ │ │ └── with.js │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── create-new-lookup-object.js │ │ │ │ │ │ ├── proto-access.js │ │ │ │ │ │ └── wrapHelper.js │ │ │ │ │ ├── logger.js │ │ │ │ │ ├── no-conflict.js │ │ │ │ │ ├── runtime.js │ │ │ │ │ ├── safe-string.js │ │ │ │ │ └── utils.js │ │ │ │ └── precompiler.js │ │ │ ├── cjs │ │ │ │ ├── handlebars.js │ │ │ │ ├── handlebars.runtime.js │ │ │ │ ├── handlebars │ │ │ │ │ ├── base.js │ │ │ │ │ ├── compiler │ │ │ │ │ │ ├── ast.js │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── code-gen.js │ │ │ │ │ │ ├── compiler.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── javascript-compiler.js │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ ├── printer.js │ │ │ │ │ │ ├── visitor.js │ │ │ │ │ │ └── whitespace-control.js │ │ │ │ │ ├── decorators.js │ │ │ │ │ ├── decorators │ │ │ │ │ │ └── inline.js │ │ │ │ │ ├── exception.js │ │ │ │ │ ├── helpers.js │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── block-helper-missing.js │ │ │ │ │ │ ├── each.js │ │ │ │ │ │ ├── helper-missing.js │ │ │ │ │ │ ├── if.js │ │ │ │ │ │ ├── log.js │ │ │ │ │ │ ├── lookup.js │ │ │ │ │ │ └── with.js │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── create-new-lookup-object.js │ │ │ │ │ │ ├── proto-access.js │ │ │ │ │ │ └── wrapHelper.js │ │ │ │ │ ├── logger.js │ │ │ │ │ ├── no-conflict.js │ │ │ │ │ ├── runtime.js │ │ │ │ │ ├── safe-string.js │ │ │ │ │ └── utils.js │ │ │ │ └── precompiler.js │ │ │ ├── handlebars.amd.js │ │ │ ├── handlebars.amd.min.js │ │ │ ├── handlebars.js │ │ │ ├── handlebars.min.js │ │ │ ├── handlebars.runtime.amd.js │ │ │ ├── handlebars.runtime.amd.min.js │ │ │ ├── handlebars.runtime.js │ │ │ └── handlebars.runtime.min.js │ │ ├── lib │ │ │ ├── handlebars.js │ │ │ ├── handlebars.runtime.js │ │ │ ├── handlebars │ │ │ │ ├── base.js │ │ │ │ ├── compiler │ │ │ │ │ ├── ast.js │ │ │ │ │ ├── base.js │ │ │ │ │ ├── code-gen.js │ │ │ │ │ ├── compiler.js │ │ │ │ │ ├── helpers.js │ │ │ │ │ ├── javascript-compiler.js │ │ │ │ │ ├── parser.js │ │ │ │ │ ├── printer.js │ │ │ │ │ ├── visitor.js │ │ │ │ │ └── whitespace-control.js │ │ │ │ ├── decorators.js │ │ │ │ ├── decorators │ │ │ │ │ └── inline.js │ │ │ │ ├── exception.js │ │ │ │ ├── helpers.js │ │ │ │ ├── helpers │ │ │ │ │ ├── block-helper-missing.js │ │ │ │ │ ├── each.js │ │ │ │ │ ├── helper-missing.js │ │ │ │ │ ├── if.js │ │ │ │ │ ├── log.js │ │ │ │ │ ├── lookup.js │ │ │ │ │ └── with.js │ │ │ │ ├── internal │ │ │ │ │ ├── create-new-lookup-object.js │ │ │ │ │ ├── proto-access.js │ │ │ │ │ └── wrapHelper.js │ │ │ │ ├── logger.js │ │ │ │ ├── no-conflict.js │ │ │ │ ├── runtime.js │ │ │ │ ├── safe-string.js │ │ │ │ └── utils.js │ │ │ ├── index.js │ │ │ └── precompiler.js │ │ ├── package.json │ │ ├── print-script │ │ ├── release-notes.md │ │ ├── runtime.d.ts │ │ ├── runtime.js │ │ └── types │ │ │ └── index.d.ts │ ├── has-flag │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── has-yarn │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── http-cache-semantics │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── http-errors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── iconv-lite │ │ ├── Changelog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── encodings │ │ │ ├── dbcs-codec.js │ │ │ ├── dbcs-data.js │ │ │ ├── index.js │ │ │ ├── internal.js │ │ │ ├── sbcs-codec.js │ │ │ ├── sbcs-data-generated.js │ │ │ ├── sbcs-data.js │ │ │ ├── tables │ │ │ │ ├── big5-added.json │ │ │ │ ├── cp936.json │ │ │ │ ├── cp949.json │ │ │ │ ├── cp950.json │ │ │ │ ├── eucjp.json │ │ │ │ ├── gb18030-ranges.json │ │ │ │ ├── gbk-added.json │ │ │ │ └── shiftjis.json │ │ │ ├── utf16.js │ │ │ └── utf7.js │ │ ├── lib │ │ │ ├── bom-handling.js │ │ │ ├── extend-node.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── streams.js │ │ └── package.json │ ├── ignore-by-default │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── import-lazy │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── imurmurhash │ │ ├── README.md │ │ ├── imurmurhash.js │ │ ├── imurmurhash.min.js │ │ └── package.json │ ├── inflight │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inflight.js │ │ └── package.json │ ├── inherits │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inherits.js │ │ ├── inherits_browser.js │ │ └── package.json │ ├── ini │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ini.js │ │ └── package.json │ ├── ipaddr.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ipaddr.min.js │ │ ├── lib │ │ │ ├── ipaddr.js │ │ │ └── ipaddr.js.d.ts │ │ └── package.json │ ├── is-binary-path │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-ci │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin.js │ │ ├── index.js │ │ └── package.json │ ├── is-extglob │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── is-fullwidth-code-point │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-glob │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── is-installed-globally │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-npm │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-number │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── is-obj │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-path-inside │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-typedarray │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── is-yarn-global │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── isarray │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Makefile │ │ ├── README.md │ │ ├── component.json │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── json-buffer │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── keyv │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── latest-version │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── lowercase-keys │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── make-dir │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ ├── semver │ │ │ │ ├── semver.cmd │ │ │ │ └── semver.ps1 │ │ │ └── semver │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ └── semver.js │ │ │ │ ├── package.json │ │ │ │ ├── range.bnf │ │ │ │ └── semver.js │ │ ├── package.json │ │ └── readme.md │ ├── media-typer │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── memory-pager │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── merge-descriptors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── methods │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime-db │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── db.json │ │ ├── index.js │ │ └── package.json │ ├── mime-types │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cli.js │ │ ├── mime.js │ │ ├── package.json │ │ ├── src │ │ │ ├── build.js │ │ │ └── test.js │ │ └── types.json │ ├── mimic-response │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── minimatch │ │ ├── LICENSE │ │ ├── README.md │ │ ├── minimatch.js │ │ └── package.json │ ├── minimist │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── example │ │ │ └── parse.js │ │ ├── index.js │ │ ├── package.json │ │ ├── readme.markdown │ │ └── test │ │ │ ├── all_bool.js │ │ │ ├── bool.js │ │ │ ├── dash.js │ │ │ ├── default_bool.js │ │ │ ├── dotted.js │ │ │ ├── kv_short.js │ │ │ ├── long.js │ │ │ ├── num.js │ │ │ ├── parse.js │ │ │ ├── parse_modified.js │ │ │ ├── proto.js │ │ │ ├── short.js │ │ │ ├── stop_early.js │ │ │ ├── unknown.js │ │ │ └── whitespace.js │ ├── mongodb │ │ ├── HISTORY.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── admin.js │ │ │ ├── aggregation_cursor.js │ │ │ ├── apm.js │ │ │ ├── async │ │ │ │ ├── .eslintrc │ │ │ │ └── async_iterator.js │ │ │ ├── bulk │ │ │ │ ├── common.js │ │ │ │ ├── ordered.js │ │ │ │ └── unordered.js │ │ │ ├── change_stream.js │ │ │ ├── cmap │ │ │ │ ├── connection.js │ │ │ │ ├── connection_pool.js │ │ │ │ ├── errors.js │ │ │ │ ├── events.js │ │ │ │ ├── message_stream.js │ │ │ │ └── stream_description.js │ │ │ ├── collection.js │ │ │ ├── command_cursor.js │ │ │ ├── constants.js │ │ │ ├── core │ │ │ │ ├── auth │ │ │ │ │ ├── auth_provider.js │ │ │ │ │ ├── defaultAuthProviders.js │ │ │ │ │ ├── gssapi.js │ │ │ │ │ ├── mongo_credentials.js │ │ │ │ │ ├── mongocr.js │ │ │ │ │ ├── mongodb_aws.js │ │ │ │ │ ├── plain.js │ │ │ │ │ ├── scram.js │ │ │ │ │ └── x509.js │ │ │ │ ├── connection │ │ │ │ │ ├── apm.js │ │ │ │ │ ├── command_result.js │ │ │ │ │ ├── commands.js │ │ │ │ │ ├── connect.js │ │ │ │ │ ├── connection.js │ │ │ │ │ ├── logger.js │ │ │ │ │ ├── msg.js │ │ │ │ │ ├── pool.js │ │ │ │ │ └── utils.js │ │ │ │ ├── cursor.js │ │ │ │ ├── error.js │ │ │ │ ├── index.js │ │ │ │ ├── sdam │ │ │ │ │ ├── common.js │ │ │ │ │ ├── events.js │ │ │ │ │ ├── monitor.js │ │ │ │ │ ├── server.js │ │ │ │ │ ├── server_description.js │ │ │ │ │ ├── server_selection.js │ │ │ │ │ ├── srv_polling.js │ │ │ │ │ ├── topology.js │ │ │ │ │ └── topology_description.js │ │ │ │ ├── sessions.js │ │ │ │ ├── tools │ │ │ │ │ └── smoke_plugin.js │ │ │ │ ├── topologies │ │ │ │ │ ├── mongos.js │ │ │ │ │ ├── read_preference.js │ │ │ │ │ ├── replset.js │ │ │ │ │ ├── replset_state.js │ │ │ │ │ ├── server.js │ │ │ │ │ └── shared.js │ │ │ │ ├── transactions.js │ │ │ │ ├── uri_parser.js │ │ │ │ ├── utils.js │ │ │ │ └── wireprotocol │ │ │ │ │ ├── command.js │ │ │ │ │ ├── compression.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── get_more.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── kill_cursors.js │ │ │ │ │ ├── query.js │ │ │ │ │ ├── shared.js │ │ │ │ │ └── write_command.js │ │ │ ├── cursor.js │ │ │ ├── db.js │ │ │ ├── dynamic_loaders.js │ │ │ ├── encrypter.js │ │ │ ├── error.js │ │ │ ├── explain.js │ │ │ ├── gridfs-stream │ │ │ │ ├── download.js │ │ │ │ ├── index.js │ │ │ │ └── upload.js │ │ │ ├── gridfs │ │ │ │ ├── chunk.js │ │ │ │ └── grid_store.js │ │ │ ├── mongo_client.js │ │ │ ├── operations │ │ │ │ ├── add_user.js │ │ │ │ ├── admin_ops.js │ │ │ │ ├── aggregate.js │ │ │ │ ├── bulk_write.js │ │ │ │ ├── collection_ops.js │ │ │ │ ├── collections.js │ │ │ │ ├── command.js │ │ │ │ ├── command_v2.js │ │ │ │ ├── common_functions.js │ │ │ │ ├── connect.js │ │ │ │ ├── count.js │ │ │ │ ├── count_documents.js │ │ │ │ ├── create_collection.js │ │ │ │ ├── create_indexes.js │ │ │ │ ├── cursor_ops.js │ │ │ │ ├── db_ops.js │ │ │ │ ├── delete_many.js │ │ │ │ ├── delete_one.js │ │ │ │ ├── distinct.js │ │ │ │ ├── drop.js │ │ │ │ ├── drop_index.js │ │ │ │ ├── drop_indexes.js │ │ │ │ ├── estimated_document_count.js │ │ │ │ ├── execute_db_admin_command.js │ │ │ │ ├── execute_operation.js │ │ │ │ ├── find.js │ │ │ │ ├── find_and_modify.js │ │ │ │ ├── find_one.js │ │ │ │ ├── find_one_and_delete.js │ │ │ │ ├── find_one_and_replace.js │ │ │ │ ├── find_one_and_update.js │ │ │ │ ├── geo_haystack_search.js │ │ │ │ ├── index_exists.js │ │ │ │ ├── index_information.js │ │ │ │ ├── indexes.js │ │ │ │ ├── insert_many.js │ │ │ │ ├── insert_one.js │ │ │ │ ├── is_capped.js │ │ │ │ ├── list_collections.js │ │ │ │ ├── list_databases.js │ │ │ │ ├── list_indexes.js │ │ │ │ ├── map_reduce.js │ │ │ │ ├── operation.js │ │ │ │ ├── options_operation.js │ │ │ │ ├── profiling_level.js │ │ │ │ ├── re_index.js │ │ │ │ ├── remove_user.js │ │ │ │ ├── rename.js │ │ │ │ ├── replace_one.js │ │ │ │ ├── run_command.js │ │ │ │ ├── set_profiling_level.js │ │ │ │ ├── stats.js │ │ │ │ ├── update_many.js │ │ │ │ ├── update_one.js │ │ │ │ └── validate_collection.js │ │ │ ├── read_concern.js │ │ │ ├── topologies │ │ │ │ ├── mongos.js │ │ │ │ ├── native_topology.js │ │ │ │ ├── replset.js │ │ │ │ ├── server.js │ │ │ │ └── topology_base.js │ │ │ ├── url_parser.js │ │ │ ├── utils.js │ │ │ └── write_concern.js │ │ └── package.json │ ├── ms │ │ ├── index.js │ │ ├── license.md │ │ ├── package.json │ │ └── readme.md │ ├── negotiator │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── charset.js │ │ │ ├── encoding.js │ │ │ ├── language.js │ │ │ └── mediaType.js │ │ └── package.json │ ├── neo-async │ │ ├── LICENSE │ │ ├── README.md │ │ ├── all.js │ │ ├── allLimit.js │ │ ├── allSeries.js │ │ ├── angelFall.js │ │ ├── any.js │ │ ├── anyLimit.js │ │ ├── anySeries.js │ │ ├── apply.js │ │ ├── applyEach.js │ │ ├── applyEachSeries.js │ │ ├── async.js │ │ ├── async.min.js │ │ ├── asyncify.js │ │ ├── auto.js │ │ ├── autoInject.js │ │ ├── cargo.js │ │ ├── compose.js │ │ ├── concat.js │ │ ├── concatLimit.js │ │ ├── concatSeries.js │ │ ├── constant.js │ │ ├── createLogger.js │ │ ├── detect.js │ │ ├── detectLimit.js │ │ ├── detectSeries.js │ │ ├── dir.js │ │ ├── doDuring.js │ │ ├── doUntil.js │ │ ├── doWhilst.js │ │ ├── during.js │ │ ├── each.js │ │ ├── eachLimit.js │ │ ├── eachOf.js │ │ ├── eachOfLimit.js │ │ ├── eachOfSeries.js │ │ ├── eachSeries.js │ │ ├── ensureAsync.js │ │ ├── every.js │ │ ├── everyLimit.js │ │ ├── everySeries.js │ │ ├── fast.js │ │ ├── filter.js │ │ ├── filterLimit.js │ │ ├── filterSeries.js │ │ ├── find.js │ │ ├── findLimit.js │ │ ├── findSeries.js │ │ ├── foldl.js │ │ ├── foldr.js │ │ ├── forEach.js │ │ ├── forEachLimit.js │ │ ├── forEachOf.js │ │ ├── forEachOfLimit.js │ │ ├── forEachOfSeries.js │ │ ├── forEachSeries.js │ │ ├── forever.js │ │ ├── groupBy.js │ │ ├── groupByLimit.js │ │ ├── groupBySeries.js │ │ ├── inject.js │ │ ├── iterator.js │ │ ├── log.js │ │ ├── map.js │ │ ├── mapLimit.js │ │ ├── mapSeries.js │ │ ├── mapValues.js │ │ ├── mapValuesLimit.js │ │ ├── mapValuesSeries.js │ │ ├── memoize.js │ │ ├── nextTick.js │ │ ├── omit.js │ │ ├── omitLimit.js │ │ ├── omitSeries.js │ │ ├── package.json │ │ ├── parallel.js │ │ ├── parallelLimit.js │ │ ├── pick.js │ │ ├── pickLimit.js │ │ ├── pickSeries.js │ │ ├── priorityQueue.js │ │ ├── queue.js │ │ ├── race.js │ │ ├── reduce.js │ │ ├── reduceRight.js │ │ ├── reflect.js │ │ ├── reflectAll.js │ │ ├── reject.js │ │ ├── rejectLimit.js │ │ ├── rejectSeries.js │ │ ├── retry.js │ │ ├── retryable.js │ │ ├── safe.js │ │ ├── select.js │ │ ├── selectLimit.js │ │ ├── selectSeries.js │ │ ├── seq.js │ │ ├── series.js │ │ ├── setImmediate.js │ │ ├── some.js │ │ ├── someLimit.js │ │ ├── someSeries.js │ │ ├── sortBy.js │ │ ├── sortByLimit.js │ │ ├── sortBySeries.js │ │ ├── timeout.js │ │ ├── times.js │ │ ├── timesLimit.js │ │ ├── timesSeries.js │ │ ├── transform.js │ │ ├── transformLimit.js │ │ ├── transformSeries.js │ │ ├── tryEach.js │ │ ├── unmemoize.js │ │ ├── until.js │ │ ├── waterfall.js │ │ ├── whilst.js │ │ └── wrapSync.js │ ├── nodemon │ │ ├── .eslintrc.json │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ ├── nodemon.js │ │ │ └── postinstall.js │ │ ├── commitlint.config.js │ │ ├── doc │ │ │ └── cli │ │ │ │ ├── authors.txt │ │ │ │ ├── config.txt │ │ │ │ ├── help.txt │ │ │ │ ├── logo.txt │ │ │ │ ├── options.txt │ │ │ │ ├── topics.txt │ │ │ │ ├── usage.txt │ │ │ │ └── whoami.txt │ │ ├── lib │ │ │ ├── cli │ │ │ │ ├── index.js │ │ │ │ └── parse.js │ │ │ ├── config │ │ │ │ ├── command.js │ │ │ │ ├── defaults.js │ │ │ │ ├── exec.js │ │ │ │ ├── index.js │ │ │ │ └── load.js │ │ │ ├── help │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── monitor │ │ │ │ ├── index.js │ │ │ │ ├── match.js │ │ │ │ ├── run.js │ │ │ │ ├── signals.js │ │ │ │ └── watch.js │ │ │ ├── nodemon.js │ │ │ ├── rules │ │ │ │ ├── add.js │ │ │ │ ├── index.js │ │ │ │ └── parse.js │ │ │ ├── spawn.js │ │ │ ├── utils │ │ │ │ ├── bus.js │ │ │ │ ├── clone.js │ │ │ │ ├── colour.js │ │ │ │ ├── index.js │ │ │ │ ├── log.js │ │ │ │ └── merge.js │ │ │ └── version.js │ │ ├── node_modules │ │ │ ├── debug │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── node.js │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── node.js │ │ │ └── ms │ │ │ │ ├── index.js │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── nopt │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── nopt.js │ │ ├── examples │ │ │ └── my-program.js │ │ ├── lib │ │ │ └── nopt.js │ │ └── package.json │ ├── normalize-path │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── normalize-url │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── on-finished │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── on-headers │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── once │ │ ├── LICENSE │ │ ├── README.md │ │ ├── once.js │ │ └── package.json │ ├── optional-require │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── p-cancelable │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── package-json │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ ├── semver │ │ │ │ ├── semver.cmd │ │ │ │ └── semver.ps1 │ │ │ └── semver │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ └── semver.js │ │ │ │ ├── package.json │ │ │ │ ├── range.bnf │ │ │ │ └── semver.js │ │ ├── package.json │ │ └── readme.md │ ├── parseurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── path-is-absolute │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── path-to-regexp │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── picomatch │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── constants.js │ │ │ ├── parse.js │ │ │ ├── picomatch.js │ │ │ ├── scan.js │ │ │ └── utils.js │ │ └── package.json │ ├── prepend-http │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── process-nextick-args │ │ ├── index.js │ │ ├── license.md │ │ ├── package.json │ │ └── readme.md │ ├── proxy-addr │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── pstree.remy │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── index.js │ │ │ ├── tree.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── tests │ │ │ ├── fixtures │ │ │ ├── index.js │ │ │ ├── out1 │ │ │ └── out2 │ │ │ └── index.test.js │ ├── pump │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ ├── test-browser.js │ │ └── test-node.js │ ├── pupa │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── qs │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ └── qs.js │ │ ├── lib │ │ │ ├── formats.js │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── .eslintrc │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ ├── random-bytes │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── range-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── raw-body │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── rc │ │ ├── LICENSE.APACHE2 │ │ ├── LICENSE.BSD │ │ ├── LICENSE.MIT │ │ ├── README.md │ │ ├── browser.js │ │ ├── cli.js │ │ ├── index.js │ │ ├── lib │ │ │ └── utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── ini.js │ │ │ ├── nested-env-vars.js │ │ │ └── test.js │ ├── readable-stream │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc │ │ │ └── wg-meetings │ │ │ │ └── 2015-01-30.md │ │ ├── duplex-browser.js │ │ ├── duplex.js │ │ ├── lib │ │ │ ├── _stream_duplex.js │ │ │ ├── _stream_passthrough.js │ │ │ ├── _stream_readable.js │ │ │ ├── _stream_transform.js │ │ │ ├── _stream_writable.js │ │ │ └── internal │ │ │ │ └── streams │ │ │ │ ├── BufferList.js │ │ │ │ ├── destroy.js │ │ │ │ ├── stream-browser.js │ │ │ │ └── stream.js │ │ ├── package.json │ │ ├── passthrough.js │ │ ├── readable-browser.js │ │ ├── readable.js │ │ ├── transform.js │ │ ├── writable-browser.js │ │ └── writable.js │ ├── readdirp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── registry-auth-token │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── base64.js │ │ ├── index.js │ │ ├── package.json │ │ └── registry-url.js │ ├── registry-url │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── responselike │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── safe-buffer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── safer-buffer │ │ ├── LICENSE │ │ ├── Porting-Buffer.md │ │ ├── Readme.md │ │ ├── dangerous.js │ │ ├── package.json │ │ ├── safer.js │ │ └── tests.js │ ├── saslprep │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── code-points.mem │ │ ├── generate-code-points.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── code-points.js │ │ │ ├── memory-code-points.js │ │ │ └── util.js │ │ ├── package.json │ │ ├── readme.md │ │ └── test │ │ │ ├── index.js │ │ │ └── util.js │ ├── semver-diff │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ ├── semver │ │ │ │ ├── semver.cmd │ │ │ │ └── semver.ps1 │ │ │ └── semver │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ └── semver.js │ │ │ │ ├── package.json │ │ │ │ ├── range.bnf │ │ │ │ └── semver.js │ │ ├── package.json │ │ └── readme.md │ ├── semver │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── semver │ │ ├── package.json │ │ ├── range.bnf │ │ └── semver.js │ ├── send │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ └── ms │ │ │ │ ├── index.js │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── serve-static │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── setprototypeof │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── signal-exit │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── signals.js │ ├── source-map │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── source-map.debug.js │ │ │ ├── source-map.js │ │ │ ├── source-map.min.js │ │ │ └── source-map.min.js.map │ │ ├── lib │ │ │ ├── array-set.js │ │ │ ├── base64-vlq.js │ │ │ ├── base64.js │ │ │ ├── binary-search.js │ │ │ ├── mapping-list.js │ │ │ ├── quick-sort.js │ │ │ ├── source-map-consumer.js │ │ │ ├── source-map-generator.js │ │ │ ├── source-node.js │ │ │ └── util.js │ │ ├── package.json │ │ ├── source-map.d.ts │ │ └── source-map.js │ ├── sparse-bitfield │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── statuses │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codes.json │ │ ├── index.js │ │ └── package.json │ ├── string-width │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── node_modules │ │ │ ├── ansi-regex │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ ├── emoji-regex │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ ├── README.md │ │ │ │ ├── es2015 │ │ │ │ │ ├── index.js │ │ │ │ │ └── text.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── text.js │ │ │ ├── is-fullwidth-code-point │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ └── strip-ansi │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── package.json │ │ └── readme.md │ ├── string_decoder │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── string_decoder.js │ │ └── package.json │ ├── strip-ansi │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── strip-json-comments │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── supports-color │ │ ├── browser.js │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── term-size │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ ├── readme.md │ │ └── vendor │ │ │ ├── .DS_Store │ │ │ ├── macos │ │ │ ├── .DS_Store │ │ │ └── term-size │ │ │ └── windows │ │ │ └── term-size.exe │ ├── to-readable-stream │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── to-regex-range │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── toidentifier │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── touch │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── nodetouch.js │ │ ├── index.js │ │ └── package.json │ ├── type-fest │ │ ├── index.d.ts │ │ ├── license │ │ ├── package.json │ │ ├── readme.md │ │ └── source │ │ │ ├── basic.d.ts │ │ │ ├── except.d.ts │ │ │ ├── literal-union.d.ts │ │ │ ├── merge-exclusive.d.ts │ │ │ ├── merge.d.ts │ │ │ ├── mutable.d.ts │ │ │ ├── opaque.d.ts │ │ │ ├── package-json.d.ts │ │ │ ├── partial-deep.d.ts │ │ │ ├── promisable.d.ts │ │ │ ├── readonly-deep.d.ts │ │ │ ├── require-at-least-one.d.ts │ │ │ ├── require-exactly-one.d.ts │ │ │ ├── set-optional.d.ts │ │ │ └── set-required.d.ts │ ├── type-is │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── typedarray-to-buffer │ │ ├── .airtap.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── basic.js │ ├── uglify-js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── uglifyjs │ │ ├── lib │ │ │ ├── ast.js │ │ │ ├── compress.js │ │ │ ├── minify.js │ │ │ ├── mozilla-ast.js │ │ │ ├── output.js │ │ │ ├── parse.js │ │ │ ├── propmangle.js │ │ │ ├── scope.js │ │ │ ├── sourcemap.js │ │ │ ├── transform.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── tools │ │ │ ├── domprops.html │ │ │ ├── domprops.json │ │ │ ├── exports.js │ │ │ ├── node.js │ │ │ └── tty.js │ ├── uid-safe │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── undefsafe │ │ ├── .jscsrc │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example.js │ │ ├── lib │ │ │ └── undefsafe.js │ │ └── package.json │ ├── unique-string │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── unpipe │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── update-notifier │ │ ├── check.js │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── url-parse-lax │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── util-deprecate │ │ ├── History.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── browser.js │ │ ├── node.js │ │ └── package.json │ ├── utils-merge │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── vary │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── widest-line │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── wordwrap │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── example │ │ │ ├── center.js │ │ │ └── meat.js │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ ├── break.js │ │ │ ├── idleness.txt │ │ │ └── wrap.js │ ├── wrappy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ └── wrappy.js │ ├── write-file-atomic │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ └── xdg-basedir │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── package-lock.json │ ├── package.json │ ├── public │ └── css │ │ └── styles.css │ ├── routes │ └── notes.js │ └── views │ ├── home.handlebars │ ├── layouts │ └── main.handlebars │ └── notes │ ├── create.handlebars │ ├── detail.handlebars │ └── edit.handlebars ├── 2_gerenciamento_de_dbs ├── books.json └── comandos.md ├── 3_insercao_de_dados └── comandos.md ├── 4_leitura_de_dados ├── books.json └── comandos.md ├── 5_atualizacao_de_dados └── comandos.md ├── 6_deletando_dados └── comandos.md ├── 7_tipos_de_dados └── comandos.md ├── 8_operadores_de_query ├── comandos.md └── restaurant.json └── 9_relacionamentos └── comandos.md /10_masterizando_select/comandos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/10_masterizando_select/comandos.md -------------------------------------------------------------------------------- /11_update_operators/comandos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/11_update_operators/comandos.md -------------------------------------------------------------------------------- /12_index/city_inspections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/12_index/city_inspections.json -------------------------------------------------------------------------------- /12_index/comandos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/12_index/comandos.md -------------------------------------------------------------------------------- /13_aggregation/comandos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/13_aggregation/comandos.md -------------------------------------------------------------------------------- /14_projeto_notes/db/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/db/connection.js -------------------------------------------------------------------------------- /14_projeto_notes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/handlebars -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/is-ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/is-ci -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/is-ci.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/is-ci.cmd -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/is-ci.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/is-ci.ps1 -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/mime -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/mime.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/mime.cmd -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/mime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/mime.ps1 -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/nodemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/nodemon -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/nodemon.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/nodemon.cmd -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/nodemon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/nodemon.ps1 -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/nodetouch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/nodetouch -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/nopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/nopt -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/nopt.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/nopt.cmd -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/nopt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/nopt.ps1 -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/rc -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/rc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/rc.cmd -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/rc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/rc.ps1 -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/semver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/semver -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/semver.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/semver.cmd -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/semver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/semver.ps1 -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/.bin/uglifyjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/.bin/uglifyjs -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/abbrev/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/abbrev/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/abbrev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/abbrev/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/abbrev/abbrev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/abbrev/abbrev.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/accepts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/accepts/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/accepts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/accepts/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/anymatch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/anymatch/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/balanced-match/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | tidelift: "npm/balanced-match" 2 | patreon: juliangruber 3 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/binary-extensions/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./binary-extensions.json'); 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/bl/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/bl/.jshintrc -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/bl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/bl/.travis.yml -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/bl/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/bl/LICENSE.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/bl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/bl/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/bl/bl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/bl/bl.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/bl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/bl/package.json -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/bl/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/bl/test/test.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/boxen/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/boxen/index.d.ts -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/boxen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/boxen/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/boxen/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/boxen/license -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/boxen/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/boxen/readme.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/braces/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/braces/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/braces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/braces/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/braces/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/braces/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/bson/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/bson/HISTORY.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/bson/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/bson/LICENSE.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/bson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/bson/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/bson/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/bson/bower.json -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/bson/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/bson/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/bytes/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/bytes/History.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/bytes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/bytes/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/bytes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/bytes/Readme.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/bytes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/bytes/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/chalk/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/chalk/index.d.ts -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/chalk/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/chalk/license -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/chalk/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/chalk/readme.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/chokidar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/chokidar/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/ci-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/ci-info/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/ci-info/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/ci-info/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/cookie/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/cookie/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/cookie/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/cookie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/cookie/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/debug/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/debug/.eslintrc -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/debug/.npmignore -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/debug/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/debug/Makefile -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/debug/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/deep-extend/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/deep-extend'); 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/denque/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.5.0 2 | 3 | - feat: adds capacity option for circular buffers (#27) 4 | 5 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/denque/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/denque/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/denque/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/denque/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/denque/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/denque/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/depd/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/depd/History.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/depd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/depd/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/depd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/depd/Readme.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/depd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/depd/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/destroy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/destroy/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/destroy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/destroy/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/dot-prop/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/dot-prop/license -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/ee-first/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/ee-first/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/etag/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/etag/HISTORY.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/etag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/etag/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/etag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/etag/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/etag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/etag/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/express-handlebars/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | coverage/ 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/express-handlebars/spec/fixtures/other-views/partials/partial.handlebars: -------------------------------------------------------------------------------- 1 | other partial {{text}} 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/express-handlebars/spec/fixtures/partials/partial.handlebars: -------------------------------------------------------------------------------- 1 | partial {{text}} 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/express-handlebars/spec/fixtures/render-cached.handlebars: -------------------------------------------------------------------------------- 1 | not cached 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/express-handlebars/spec/fixtures/render-helper.handlebars: -------------------------------------------------------------------------------- 1 |

{{help text}}

2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/express-handlebars/spec/fixtures/render-text.handlebars: -------------------------------------------------------------------------------- 1 |

{{text}}

2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/express-handlebars/spec/fixtures/templates/subdir/template.handlebars: -------------------------------------------------------------------------------- 1 |

{{text}}

2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/express-handlebars/spec/fixtures/templates/template.handlebars: -------------------------------------------------------------------------------- 1 |

{{text}}

2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/express/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/express/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/fresh/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/fresh/HISTORY.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/fresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/fresh/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/fresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/fresh/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/fresh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/fresh/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/glob/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/glob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/glob/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/glob/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/glob/common.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/glob/glob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/glob/glob.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/glob/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/glob/sync.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/got/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/got/license -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/got/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/got/package.json -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/got/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/got/readme.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/has-flag/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/has-flag/license -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/has-yarn/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/has-yarn/license -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/inflight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/inflight/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/inherits/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/inherits/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/ini/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/ini/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/ini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/ini/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/ini/ini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/ini/ini.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/ini/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/ini/package.json -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/is-ci/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/is-ci/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/is-ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/is-ci/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/is-ci/bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict' 3 | 4 | process.exit(require('./') ? 0 : 1) 5 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/is-ci/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('ci-info').isCI 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/is-glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/is-glob/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/is-glob/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/is-glob/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/is-npm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/is-npm/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/is-npm/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/is-npm/license -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/is-npm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/is-npm/readme.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/is-obj/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/is-obj/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/is-obj/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/is-obj/license -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/is-obj/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/is-obj/readme.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/isarray/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/isarray/Makefile -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/isarray/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/isarray/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/isarray/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/isarray/test.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/keyv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/keyv/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/keyv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/keyv/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/make-dir/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/make-dir/license -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/methods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/methods/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/methods/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/mime-db/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/mime-db/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/mime-db/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/mime-db/db.json -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/mime-db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/mime-db/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/mime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/mime/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/mime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/mime/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/mime/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/mime/cli.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/mime/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/mime/mime.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/mime/src/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/mime/src/test.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/mime/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/mime/types.json -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/minimist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/minimist/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/mongodb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/mongodb/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/ms/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/ms/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/ms/license.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/ms/package.json -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/ms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/ms/readme.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/all.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').all; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/allLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').allLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/allSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').allSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/angelFall.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').angelfall; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/any.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').any; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/anyLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').anyLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/anySeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').anySeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/apply.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').apply; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/applyEach.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').applyEach; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/applyEachSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').applyEachSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').auto; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/autoInject.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').autoInject; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/cargo.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').cargo; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/compose.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').compose; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/concat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').concat; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/concatLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').concatLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/concatSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').concatSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/constant.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').constant; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/createLogger.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').createLogger; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/detect.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').detect; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/detectLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').detectLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/detectSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').detectSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/dir.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').dir; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/doDuring.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').doDuring; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/doUntil.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').doUntil; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/doWhilst.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').doWhilst; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/during.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').during; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/each.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').each; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/eachLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/eachOf.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachOf; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/eachOfLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachOfLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/eachOfSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachOfSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/eachSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/every.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').every; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/everyLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').everyLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/everySeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').everySeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/fast.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').fast; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/filter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').filter; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/filterLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').filterLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/filterSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').filterSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/find.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').find; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/findLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').findLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/findSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').findSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/foldl.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').foldl; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/foldr.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').foldr; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/forEach.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEach; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/forEachLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEachLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/forEachOf.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEachOf; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/forEachOfLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEachOfLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/forEachOfSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEachOfSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/forEachSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEachSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/forever.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forever; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/groupBy.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').groupBy; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/groupByLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').groupByLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/groupBySeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').groupBySeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/inject.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').inject; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/iterator.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').iterator; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/log.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').log; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').map; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/mapLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/mapSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/mapValues.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapValues; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/mapValuesLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapValuesLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/mapValuesSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapValuesSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/memoize.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').memoize; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/nextTick.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').nextTick; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/omit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').omit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/omitLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').omitLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/omitSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').omitSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/parallel.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').parallel; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/parallelLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').parallelLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/pick.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').pick; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/pickLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').pickLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/pickSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').pickSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/priorityQueue.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').priorityQueue; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/queue.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').queue; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/race.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').race; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/reduce.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reduce; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/reduceRight.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reduceRight; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/reflect.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reflect; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/reflectAll.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reflectAll; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/reject.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reject; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/rejectLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').rejectLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/rejectSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').rejectSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/retry.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').retry; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/retryable.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').retryable; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/safe.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').safe; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/select.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').select; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/selectLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').selectLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/selectSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').selectSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/seq.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').seq; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/series.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').series; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/setImmediate.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').setImmediate; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/some.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').some; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/someLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').someLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/someSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').someSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/sortBy.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').sortBy; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/sortByLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').sortByLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/sortBySeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').sortBySeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/timeout.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').timeout; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/times.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').times; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/timesLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').timesLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/timesSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').timesSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/transform.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').transform; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/transformLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').transformLimit; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/transformSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').transformSeries; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/tryEach.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').tryEach; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/unmemoize.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').unmemoize; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/until.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').until; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/waterfall.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').waterfall; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/whilst.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').whilst; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/neo-async/wrapSync.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').wrapSync; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/nodemon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/nodemon/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/nodemon/commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'], 3 | }; 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/nodemon/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./nodemon'); -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/nodemon/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/nopt/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/nopt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/nopt/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/nopt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/nopt/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/nopt/bin/nopt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/nopt/bin/nopt.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/nopt/lib/nopt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/nopt/lib/nopt.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/once/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/once/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/once/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/once/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/once/once.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/once/once.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/parseurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/parseurl/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/picomatch/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/picomatch'); 4 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/pump/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/pump/.travis.yml -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/pump/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/pump/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/pump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/pump/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/pump/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/pump/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/pupa/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/pupa/index.d.ts -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/pupa/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/pupa/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/pupa/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/pupa/license -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/pupa/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/pupa/readme.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/qs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/qs/.editorconfig -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/qs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/qs/.eslintrc -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/qs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/qs/CHANGELOG.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/qs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/qs/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/qs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/qs/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/qs/dist/qs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/qs/dist/qs.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/qs/lib/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/qs/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/qs/lib/parse.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/qs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/qs/lib/utils.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/rc/LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/rc/LICENSE.BSD -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/rc/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/rc/LICENSE.MIT -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/rc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/rc/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/rc/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/rc/browser.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/rc/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/rc/cli.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/rc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/rc/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/rc/test/ini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/rc/test/ini.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/readable-stream/duplex-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_duplex.js'); 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Duplex 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/readable-stream/lib/internal/streams/stream.js: -------------------------------------------------------------------------------- 1 | module.exports = require('stream'); 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').PassThrough 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Transform 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/readable-stream/writable-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_writable.js'); 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/saslprep/.gitattributes: -------------------------------------------------------------------------------- 1 | *.mem binary 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/semver/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/send/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/send/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/send/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/send/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/send/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/send/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/sparse-bitfield/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/touch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/touch/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/touch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/touch/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/undefsafe/.npmignore: -------------------------------------------------------------------------------- 1 | # .npmignore file 2 | test/ 3 | -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/unpipe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/unpipe/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/vary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/vary/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/vary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/vary/README.md -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/vary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/vary/index.js -------------------------------------------------------------------------------- /14_projeto_notes/node_modules/wrappy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/node_modules/wrappy/LICENSE -------------------------------------------------------------------------------- /14_projeto_notes/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/package-lock.json -------------------------------------------------------------------------------- /14_projeto_notes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/package.json -------------------------------------------------------------------------------- /14_projeto_notes/public/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/public/css/styles.css -------------------------------------------------------------------------------- /14_projeto_notes/routes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/routes/notes.js -------------------------------------------------------------------------------- /14_projeto_notes/views/home.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/views/home.handlebars -------------------------------------------------------------------------------- /14_projeto_notes/views/notes/edit.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/14_projeto_notes/views/notes/edit.handlebars -------------------------------------------------------------------------------- /15_mongoose/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/15_mongoose/index.js -------------------------------------------------------------------------------- /15_mongoose/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/15_mongoose/package-lock.json -------------------------------------------------------------------------------- /15_mongoose/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/15_mongoose/package.json -------------------------------------------------------------------------------- /16_partytime/backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | public/img -------------------------------------------------------------------------------- /16_partytime/backend/helpers/check-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/backend/helpers/check-token.js -------------------------------------------------------------------------------- /16_partytime/backend/helpers/file-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/backend/helpers/file-storage.js -------------------------------------------------------------------------------- /16_partytime/backend/models/party.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/backend/models/party.js -------------------------------------------------------------------------------- /16_partytime/backend/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/backend/models/user.js -------------------------------------------------------------------------------- /16_partytime/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/backend/package-lock.json -------------------------------------------------------------------------------- /16_partytime/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/backend/package.json -------------------------------------------------------------------------------- /16_partytime/backend/routes/authRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/backend/routes/authRoutes.js -------------------------------------------------------------------------------- /16_partytime/backend/routes/partyRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/backend/routes/partyRoutes.js -------------------------------------------------------------------------------- /16_partytime/backend/routes/userRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/backend/routes/userRoutes.js -------------------------------------------------------------------------------- /16_partytime/backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/backend/server.js -------------------------------------------------------------------------------- /16_partytime/frontend/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /16_partytime/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/.gitignore -------------------------------------------------------------------------------- /16_partytime/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/README.md -------------------------------------------------------------------------------- /16_partytime/frontend/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/babel.config.js -------------------------------------------------------------------------------- /16_partytime/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/package-lock.json -------------------------------------------------------------------------------- /16_partytime/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/package.json -------------------------------------------------------------------------------- /16_partytime/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/public/favicon.ico -------------------------------------------------------------------------------- /16_partytime/frontend/public/img/party1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/public/img/party1.jpg -------------------------------------------------------------------------------- /16_partytime/frontend/public/img/party2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/public/img/party2.jpg -------------------------------------------------------------------------------- /16_partytime/frontend/public/img/party3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/public/img/party3.jpg -------------------------------------------------------------------------------- /16_partytime/frontend/public/img/party4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/public/img/party4.jpg -------------------------------------------------------------------------------- /16_partytime/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/public/index.html -------------------------------------------------------------------------------- /16_partytime/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/src/App.vue -------------------------------------------------------------------------------- /16_partytime/frontend/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/src/assets/logo.png -------------------------------------------------------------------------------- /16_partytime/frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/src/main.js -------------------------------------------------------------------------------- /16_partytime/frontend/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/src/router/index.js -------------------------------------------------------------------------------- /16_partytime/frontend/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/src/store/index.js -------------------------------------------------------------------------------- /16_partytime/frontend/src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/src/views/Home.vue -------------------------------------------------------------------------------- /16_partytime/frontend/src/views/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/src/views/Login.vue -------------------------------------------------------------------------------- /16_partytime/frontend/src/views/NewParty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/src/views/NewParty.vue -------------------------------------------------------------------------------- /16_partytime/frontend/src/views/Party.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/src/views/Party.vue -------------------------------------------------------------------------------- /16_partytime/frontend/src/views/Profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/src/views/Profile.vue -------------------------------------------------------------------------------- /16_partytime/frontend/src/views/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/src/views/Register.vue -------------------------------------------------------------------------------- /16_partytime/frontend/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/16_partytime/frontend/vue.config.js -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/17_mongodb_atlas/1_inicio_app/index.js -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/balanced-match/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | tidelift: "npm/balanced-match" 2 | patreon: juliangruber 3 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/binary-extensions/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./binary-extensions.json'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/deep-extend/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/deep-extend'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/denque/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.5.0 2 | 3 | - feat: adds capacity option for circular buffers (#27) 4 | 5 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/express-handlebars/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | coverage/ 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/express-handlebars/spec/fixtures/other-views/partials/partial.handlebars: -------------------------------------------------------------------------------- 1 | other partial {{text}} 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/express-handlebars/spec/fixtures/partials/partial.handlebars: -------------------------------------------------------------------------------- 1 | partial {{text}} 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/express-handlebars/spec/fixtures/render-cached.handlebars: -------------------------------------------------------------------------------- 1 | not cached 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/express-handlebars/spec/fixtures/render-helper.handlebars: -------------------------------------------------------------------------------- 1 |

{{help text}}

2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/express-handlebars/spec/fixtures/render-text.handlebars: -------------------------------------------------------------------------------- 1 |

{{text}}

2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/express-handlebars/spec/fixtures/templates/subdir/template.handlebars: -------------------------------------------------------------------------------- 1 |

{{text}}

2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/express-handlebars/spec/fixtures/templates/template.handlebars: -------------------------------------------------------------------------------- 1 |

{{text}}

2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/is-ci/bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict' 3 | 4 | process.exit(require('./') ? 0 : 1) 5 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/is-ci/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('ci-info').isCI 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/all.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').all; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/allLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').allLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/allSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').allSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/angelFall.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').angelfall; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/any.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').any; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/anyLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').anyLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/anySeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').anySeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/apply.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').apply; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/applyEach.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').applyEach; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/applyEachSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').applyEachSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').auto; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/autoInject.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').autoInject; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/cargo.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').cargo; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/compose.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').compose; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/concat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').concat; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/concatLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').concatLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/concatSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').concatSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/constant.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').constant; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/createLogger.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').createLogger; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/detect.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').detect; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/detectLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').detectLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/detectSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').detectSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/dir.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').dir; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/doDuring.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').doDuring; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/doUntil.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').doUntil; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/doWhilst.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').doWhilst; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/during.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').during; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/each.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').each; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/eachLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/eachOf.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachOf; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/eachOfLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachOfLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/eachOfSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachOfSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/eachSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/every.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').every; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/everyLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').everyLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/everySeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').everySeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/fast.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').fast; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/filter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').filter; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/filterLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').filterLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/filterSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').filterSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/find.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').find; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/findLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').findLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/findSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').findSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/foldl.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').foldl; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/foldr.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').foldr; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/forEach.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEach; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/forEachLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEachLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/forEachOf.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEachOf; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/forEachOfLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEachOfLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/forEachOfSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEachOfSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/forEachSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEachSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/forever.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forever; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/groupBy.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').groupBy; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/groupByLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').groupByLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/groupBySeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').groupBySeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/inject.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').inject; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/iterator.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').iterator; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/log.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').log; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').map; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/mapLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/mapSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/mapValues.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapValues; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/mapValuesLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapValuesLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/mapValuesSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapValuesSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/memoize.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').memoize; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/nextTick.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').nextTick; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/omit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').omit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/omitLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').omitLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/omitSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').omitSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/parallel.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').parallel; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/parallelLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').parallelLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/pick.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').pick; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/pickLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').pickLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/pickSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').pickSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/priorityQueue.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').priorityQueue; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/queue.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').queue; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/race.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').race; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/reduce.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reduce; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/reduceRight.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reduceRight; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/reflect.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reflect; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/reflectAll.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reflectAll; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/reject.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reject; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/rejectLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').rejectLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/rejectSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').rejectSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/retry.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').retry; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/retryable.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').retryable; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/safe.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').safe; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/select.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').select; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/selectLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').selectLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/selectSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').selectSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/seq.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').seq; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/series.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').series; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/setImmediate.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').setImmediate; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/some.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').some; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/someLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').someLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/someSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').someSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/sortBy.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').sortBy; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/sortByLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').sortByLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/sortBySeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').sortBySeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/timeout.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').timeout; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/times.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').times; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/timesLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').timesLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/timesSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').timesSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/transform.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').transform; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/transformLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').transformLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/transformSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').transformSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/tryEach.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').tryEach; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/unmemoize.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').unmemoize; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/until.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').until; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/waterfall.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').waterfall; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/whilst.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').whilst; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/neo-async/wrapSync.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').wrapSync; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/nodemon/commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'], 3 | }; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/nodemon/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./nodemon'); -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/nodemon/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/nopt/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/picomatch/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/picomatch'); 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/readable-stream/duplex-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_duplex.js'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Duplex 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/readable-stream/lib/internal/streams/stream.js: -------------------------------------------------------------------------------- 1 | module.exports = require('stream'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').PassThrough 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Transform 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/readable-stream/writable-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_writable.js'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/saslprep/.gitattributes: -------------------------------------------------------------------------------- 1 | *.mem binary 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/sparse-bitfield/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/node_modules/undefsafe/.npmignore: -------------------------------------------------------------------------------- 1 | # .npmignore file 2 | test/ 3 | -------------------------------------------------------------------------------- /17_mongodb_atlas/1_inicio_app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/17_mongodb_atlas/1_inicio_app/package.json -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/db/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/17_mongodb_atlas/2_dotenv/db/connection.js -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/17_mongodb_atlas/2_dotenv/index.js -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/balanced-match/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | tidelift: "npm/balanced-match" 2 | patreon: juliangruber 3 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/binary-extensions/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./binary-extensions.json'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/deep-extend/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/deep-extend'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/denque/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.5.0 2 | 3 | - feat: adds capacity option for circular buffers (#27) 4 | 5 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/express-handlebars/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | coverage/ 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/express-handlebars/spec/fixtures/other-views/partials/partial.handlebars: -------------------------------------------------------------------------------- 1 | other partial {{text}} 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/express-handlebars/spec/fixtures/partials/partial.handlebars: -------------------------------------------------------------------------------- 1 | partial {{text}} 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/express-handlebars/spec/fixtures/render-cached.handlebars: -------------------------------------------------------------------------------- 1 | not cached 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/express-handlebars/spec/fixtures/render-helper.handlebars: -------------------------------------------------------------------------------- 1 |

{{help text}}

2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/express-handlebars/spec/fixtures/render-text.handlebars: -------------------------------------------------------------------------------- 1 |

{{text}}

2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/express-handlebars/spec/fixtures/templates/subdir/template.handlebars: -------------------------------------------------------------------------------- 1 |

{{text}}

2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/express-handlebars/spec/fixtures/templates/template.handlebars: -------------------------------------------------------------------------------- 1 |

{{text}}

2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/is-ci/bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict' 3 | 4 | process.exit(require('./') ? 0 : 1) 5 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/is-ci/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('ci-info').isCI 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/all.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').all; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/allLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').allLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/allSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').allSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/angelFall.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').angelfall; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/any.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').any; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/anyLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').anyLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/anySeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').anySeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/apply.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').apply; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/applyEach.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').applyEach; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/applyEachSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').applyEachSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').auto; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/autoInject.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').autoInject; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/cargo.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').cargo; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/compose.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').compose; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/concat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').concat; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/concatLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').concatLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/concatSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').concatSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/constant.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').constant; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/createLogger.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').createLogger; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/detect.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').detect; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/detectLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').detectLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/detectSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').detectSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/dir.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').dir; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/doDuring.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').doDuring; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/doUntil.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').doUntil; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/doWhilst.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').doWhilst; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/during.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').during; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/each.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').each; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/eachLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/eachOf.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachOf; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/eachOfLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachOfLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/eachOfSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachOfSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/eachSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/every.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').every; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/everyLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').everyLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/everySeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').everySeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/fast.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').fast; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/filter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').filter; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/filterLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').filterLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/filterSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').filterSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/find.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').find; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/findLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').findLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/findSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').findSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/foldl.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').foldl; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/foldr.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').foldr; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/forEach.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEach; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/forEachLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEachLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/forEachOf.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEachOf; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/forEachOfLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEachOfLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/forEachOfSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEachOfSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/forEachSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEachSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/forever.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forever; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/groupBy.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').groupBy; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/groupByLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').groupByLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/groupBySeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').groupBySeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/inject.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').inject; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/iterator.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').iterator; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/log.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').log; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').map; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/mapLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/mapSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/mapValues.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapValues; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/mapValuesLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapValuesLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/mapValuesSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapValuesSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/memoize.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').memoize; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/nextTick.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').nextTick; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/omit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').omit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/omitLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').omitLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/omitSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').omitSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/parallel.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').parallel; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/parallelLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').parallelLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/pick.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').pick; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/pickLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').pickLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/pickSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').pickSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/priorityQueue.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').priorityQueue; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/queue.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').queue; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/race.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').race; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/reduce.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reduce; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/reduceRight.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reduceRight; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/reflect.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reflect; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/reflectAll.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reflectAll; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/reject.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reject; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/rejectLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').rejectLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/rejectSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').rejectSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/retry.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').retry; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/retryable.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').retryable; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/safe.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').safe; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/select.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').select; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/selectLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').selectLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/selectSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').selectSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/seq.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').seq; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/series.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').series; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/setImmediate.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').setImmediate; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/some.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').some; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/someLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').someLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/someSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').someSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/sortBy.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').sortBy; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/sortByLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').sortByLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/sortBySeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').sortBySeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/timeout.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').timeout; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/times.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').times; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/timesLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').timesLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/timesSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').timesSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/transform.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').transform; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/transformLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').transformLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/transformSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').transformSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/tryEach.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').tryEach; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/unmemoize.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').unmemoize; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/until.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').until; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/waterfall.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').waterfall; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/whilst.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').whilst; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/neo-async/wrapSync.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').wrapSync; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/nodemon/commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'], 3 | }; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/nodemon/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./nodemon'); -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/nodemon/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/nopt/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/picomatch/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/picomatch'); 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/readable-stream/duplex-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_duplex.js'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Duplex 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/readable-stream/lib/internal/streams/stream.js: -------------------------------------------------------------------------------- 1 | module.exports = require('stream'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').PassThrough 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Transform 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/readable-stream/writable-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_writable.js'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/saslprep/.gitattributes: -------------------------------------------------------------------------------- 1 | *.mem binary 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/sparse-bitfield/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/node_modules/undefsafe/.npmignore: -------------------------------------------------------------------------------- 1 | # .npmignore file 2 | test/ 3 | -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/17_mongodb_atlas/2_dotenv/package-lock.json -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/17_mongodb_atlas/2_dotenv/package.json -------------------------------------------------------------------------------- /17_mongodb_atlas/2_dotenv/routes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/17_mongodb_atlas/2_dotenv/routes/notes.js -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/balanced-match/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | tidelift: "npm/balanced-match" 2 | patreon: juliangruber 3 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/binary-extensions/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./binary-extensions.json'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/deep-extend/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/deep-extend'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/express-handlebars/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | coverage/ 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/express-handlebars/spec/fixtures/other-views/partials/partial.handlebars: -------------------------------------------------------------------------------- 1 | other partial {{text}} 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/express-handlebars/spec/fixtures/partials/partial.handlebars: -------------------------------------------------------------------------------- 1 | partial {{text}} 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/express-handlebars/spec/fixtures/render-cached.handlebars: -------------------------------------------------------------------------------- 1 | not cached 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/express-handlebars/spec/fixtures/render-helper.handlebars: -------------------------------------------------------------------------------- 1 |

{{help text}}

2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/express-handlebars/spec/fixtures/render-text.handlebars: -------------------------------------------------------------------------------- 1 |

{{text}}

2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/express-handlebars/spec/fixtures/templates/subdir/template.handlebars: -------------------------------------------------------------------------------- 1 |

{{text}}

2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/express-handlebars/spec/fixtures/templates/template.handlebars: -------------------------------------------------------------------------------- 1 |

{{text}}

2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/is-ci/bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict' 3 | 4 | process.exit(require('./') ? 0 : 1) 5 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/is-ci/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('ci-info').isCI 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/all.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').all; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/allLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').allLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/allSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').allSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/angelFall.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').angelfall; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/any.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').any; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/anyLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').anyLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/anySeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').anySeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/apply.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').apply; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/applyEach.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').applyEach; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/auto.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').auto; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/autoInject.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').autoInject; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/cargo.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').cargo; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/compose.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').compose; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/concat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').concat; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/concatLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').concatLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/constant.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').constant; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/detect.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').detect; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/detectLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').detectLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/dir.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').dir; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/doDuring.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').doDuring; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/doUntil.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').doUntil; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/doWhilst.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').doWhilst; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/during.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').during; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/each.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').each; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/eachLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/eachOf.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachOf; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/eachOfLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachOfLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/eachSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').eachSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/every.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').every; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/everyLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').everyLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/everySeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').everySeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/fast.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').fast; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/filter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').filter; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/filterLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').filterLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/find.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').find; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/findLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').findLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/findSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').findSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/foldl.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').foldl; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/foldr.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').foldr; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/forEach.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEach; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/forEachOf.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forEachOf; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/forever.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').forever; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/groupBy.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').groupBy; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/inject.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').inject; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/iterator.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').iterator; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/log.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').log; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').map; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/mapLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/mapSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/mapValues.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').mapValues; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/memoize.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').memoize; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/nextTick.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').nextTick; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/omit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').omit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/omitLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').omitLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/omitSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').omitSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/parallel.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').parallel; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/pick.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').pick; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/pickLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').pickLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/pickSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').pickSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/queue.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').queue; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/race.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').race; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/reduce.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reduce; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/reduceRight.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reduceRight; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/reflect.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reflect; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/reflectAll.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reflectAll; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/reject.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').reject; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/rejectLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').rejectLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/retry.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').retry; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/retryable.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').retryable; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/safe.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').safe; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/select.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').select; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/selectLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').selectLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/seq.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').seq; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/series.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').series; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/some.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').some; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/someLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').someLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/someSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').someSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/sortBy.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').sortBy; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/sortByLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').sortByLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/timeout.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').timeout; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/times.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').times; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/timesLimit.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').timesLimit; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/timesSeries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').timesSeries; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/transform.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').transform; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/tryEach.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').tryEach; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/unmemoize.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').unmemoize; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/until.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').until; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/waterfall.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').waterfall; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/whilst.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').whilst; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/neo-async/wrapSync.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./async').wrapSync; 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/nodemon/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./nodemon'); -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/nodemon/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/nopt/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/picomatch/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/picomatch'); 4 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/readable-stream/duplex-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_duplex.js'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Duplex 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/readable-stream/lib/internal/streams/stream.js: -------------------------------------------------------------------------------- 1 | module.exports = require('stream'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').PassThrough 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Transform 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/readable-stream/writable-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_writable.js'); 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/saslprep/.gitattributes: -------------------------------------------------------------------------------- 1 | *.mem binary 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/sparse-bitfield/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /17_mongodb_atlas/3_conectando_ao_atlas/node_modules/undefsafe/.npmignore: -------------------------------------------------------------------------------- 1 | # .npmignore file 2 | test/ 3 | -------------------------------------------------------------------------------- /2_gerenciamento_de_dbs/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/2_gerenciamento_de_dbs/books.json -------------------------------------------------------------------------------- /2_gerenciamento_de_dbs/comandos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/2_gerenciamento_de_dbs/comandos.md -------------------------------------------------------------------------------- /3_insercao_de_dados/comandos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/3_insercao_de_dados/comandos.md -------------------------------------------------------------------------------- /4_leitura_de_dados/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/4_leitura_de_dados/books.json -------------------------------------------------------------------------------- /4_leitura_de_dados/comandos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/4_leitura_de_dados/comandos.md -------------------------------------------------------------------------------- /5_atualizacao_de_dados/comandos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/5_atualizacao_de_dados/comandos.md -------------------------------------------------------------------------------- /6_deletando_dados/comandos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/6_deletando_dados/comandos.md -------------------------------------------------------------------------------- /7_tipos_de_dados/comandos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/7_tipos_de_dados/comandos.md -------------------------------------------------------------------------------- /8_operadores_de_query/comandos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/8_operadores_de_query/comandos.md -------------------------------------------------------------------------------- /8_operadores_de_query/restaurant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/8_operadores_de_query/restaurant.json -------------------------------------------------------------------------------- /9_relacionamentos/comandos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/curso_mongodb/HEAD/9_relacionamentos/comandos.md --------------------------------------------------------------------------------