├── README.md ├── beerlocker-1 ├── node_modules │ └── express │ │ ├── .npmignore │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── 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 │ │ ├── node_modules │ │ ├── accepts │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ ├── mime │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── mime.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test.js │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ └── negotiator │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── lib │ │ │ │ │ ├── charset.js │ │ │ │ │ ├── encoding.js │ │ │ │ │ ├── language.js │ │ │ │ │ ├── mediaType.js │ │ │ │ │ └── negotiator.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── buffer-crc32 │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── tests │ │ │ │ └── crc.test.js │ │ ├── cookie-signature │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── debug │ │ │ ├── Readme.md │ │ │ ├── debug.js │ │ │ ├── lib │ │ │ │ └── debug.js │ │ │ └── package.json │ │ ├── escape-html │ │ │ ├── .npmignore │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── component.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── fresh │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── merge-descriptors │ │ │ ├── .npmignore │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── methods │ │ │ ├── History.md │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── parseurl │ │ │ ├── .npmignore │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── path-to-regexp │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Readme.md │ │ │ ├── component.json │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── qs │ │ │ ├── .gitmodules │ │ │ ├── .npmignore │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── range-parser │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── send │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── send.js │ │ │ │ └── utils.js │ │ │ ├── node_modules │ │ │ │ ├── debug │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── debug.js │ │ │ │ │ ├── lib │ │ │ │ │ │ └── debug.js │ │ │ │ │ └── package.json │ │ │ │ └── mime │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── mime.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test.js │ │ │ │ │ └── types │ │ │ │ │ ├── mime.types │ │ │ │ │ └── node.types │ │ │ └── package.json │ │ ├── serve-static │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── type-is │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── HISTORY.md │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ └── mime │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── mime.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test.js │ │ │ │ │ └── types │ │ │ │ │ ├── mime.types │ │ │ │ │ └── node.types │ │ │ └── package.json │ │ └── utils-merge │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ └── package.json ├── package.json └── server.js ├── beerlocker-2 ├── models │ └── beer.js ├── node_modules │ ├── body-parser │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── HISTORY.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── qs │ │ │ │ ├── .gitmodules │ │ │ │ ├── .npmignore │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── raw-body │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── bytes │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ └── type-is │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── HISTORY.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ └── mime │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── mime.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test.js │ │ │ │ │ └── types │ │ │ │ │ ├── mime.types │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ └── package.json │ ├── express │ │ ├── .npmignore │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── 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 │ │ ├── node_modules │ │ │ ├── accepts │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ │ └── node.types │ │ │ │ │ └── negotiator │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── charset.js │ │ │ │ │ │ ├── encoding.js │ │ │ │ │ │ ├── language.js │ │ │ │ │ │ ├── mediaType.js │ │ │ │ │ │ └── negotiator.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── readme.md │ │ │ │ └── package.json │ │ │ ├── buffer-crc32 │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ └── crc.test.js │ │ │ ├── cookie-signature │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── cookie │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── debug │ │ │ │ ├── Readme.md │ │ │ │ ├── debug.js │ │ │ │ ├── lib │ │ │ │ │ └── debug.js │ │ │ │ └── package.json │ │ │ ├── escape-html │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── fresh │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── merge-descriptors │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── methods │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── parseurl │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── path-to-regexp │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── qs │ │ │ │ ├── .gitmodules │ │ │ │ ├── .npmignore │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── range-parser │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── send │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── send.js │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── debug.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ │ ├── serve-static │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── type-is │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── HISTORY.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ │ └── utils-merge │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ └── mongoose │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── History.md │ │ ├── README.md │ │ ├── contRun.sh │ │ ├── examples │ │ ├── README.md │ │ ├── aggregate │ │ │ ├── aggregate.js │ │ │ ├── package.json │ │ │ └── person.js │ │ ├── doc-methods.js │ │ ├── express │ │ │ ├── README.md │ │ │ └── connection-sharing │ │ │ │ ├── README.md │ │ │ │ ├── app.js │ │ │ │ ├── modelA.js │ │ │ │ ├── package.json │ │ │ │ └── routes.js │ │ ├── geospatial │ │ │ ├── geoJSONSchema.js │ │ │ ├── geoJSONexample.js │ │ │ ├── geospatial.js │ │ │ ├── package.json │ │ │ └── person.js │ │ ├── globalschemas │ │ │ ├── gs_example.js │ │ │ └── person.js │ │ ├── lean │ │ │ ├── lean.js │ │ │ ├── package.json │ │ │ └── person.js │ │ ├── mapreduce │ │ │ ├── mapreduce.js │ │ │ ├── package.json │ │ │ └── person.js │ │ ├── population │ │ │ ├── population-across-three-collections.js │ │ │ ├── population-basic.js │ │ │ ├── population-of-existing-doc.js │ │ │ ├── population-of-multiple-existing-docs.js │ │ │ ├── population-options.js │ │ │ └── population-plain-objects.js │ │ ├── promises │ │ │ ├── package.json │ │ │ ├── person.js │ │ │ └── promise.js │ │ ├── querybuilder │ │ │ ├── package.json │ │ │ ├── person.js │ │ │ └── querybuilder.js │ │ ├── replicasets │ │ │ ├── package.json │ │ │ ├── person.js │ │ │ └── replica-sets.js │ │ ├── schema │ │ │ ├── schema.js │ │ │ └── storing-schemas-as-json │ │ │ │ ├── index.js │ │ │ │ └── schema.json │ │ └── statics │ │ │ ├── person.js │ │ │ └── statics.js │ │ ├── index.js │ │ ├── lib │ │ ├── aggregate.js │ │ ├── collection.js │ │ ├── connection.js │ │ ├── connectionstate.js │ │ ├── document.js │ │ ├── drivers │ │ │ ├── SPEC.md │ │ │ └── node-mongodb-native │ │ │ │ ├── binary.js │ │ │ │ ├── collection.js │ │ │ │ ├── connection.js │ │ │ │ └── objectid.js │ │ ├── error.js │ │ ├── error │ │ │ ├── cast.js │ │ │ ├── divergentArray.js │ │ │ ├── messages.js │ │ │ ├── missingSchema.js │ │ │ ├── overwriteModel.js │ │ │ ├── validation.js │ │ │ ├── validator.js │ │ │ └── version.js │ │ ├── index.js │ │ ├── internal.js │ │ ├── model.js │ │ ├── promise.js │ │ ├── query.js │ │ ├── queryhelpers.js │ │ ├── querystream.js │ │ ├── schema.js │ │ ├── schema │ │ │ ├── array.js │ │ │ ├── boolean.js │ │ │ ├── buffer.js │ │ │ ├── date.js │ │ │ ├── documentarray.js │ │ │ ├── index.js │ │ │ ├── mixed.js │ │ │ ├── number.js │ │ │ ├── objectid.js │ │ │ └── string.js │ │ ├── schemadefault.js │ │ ├── schematype.js │ │ ├── statemachine.js │ │ ├── types │ │ │ ├── array.js │ │ │ ├── buffer.js │ │ │ ├── documentarray.js │ │ │ ├── embedded.js │ │ │ ├── index.js │ │ │ └── objectid.js │ │ ├── utils.js │ │ └── virtualtype.js │ │ ├── node_modules │ │ ├── hooks │ │ │ ├── .npmignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── hooks.alt.js │ │ │ ├── hooks.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── mongodb │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── mongodb │ │ │ │ │ ├── admin.js │ │ │ │ │ ├── aggregation_cursor.js │ │ │ │ │ ├── auth │ │ │ │ │ ├── mongodb_cr.js │ │ │ │ │ ├── mongodb_gssapi.js │ │ │ │ │ ├── mongodb_plain.js │ │ │ │ │ ├── mongodb_sspi.js │ │ │ │ │ └── mongodb_x509.js │ │ │ │ │ ├── collection.js │ │ │ │ │ ├── collection │ │ │ │ │ ├── aggregation.js │ │ │ │ │ ├── commands.js │ │ │ │ │ ├── core.js │ │ │ │ │ ├── geo.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── query.js │ │ │ │ │ └── shared.js │ │ │ │ │ ├── command_cursor.js │ │ │ │ │ ├── commands │ │ │ │ │ ├── base_command.js │ │ │ │ │ ├── db_command.js │ │ │ │ │ ├── delete_command.js │ │ │ │ │ ├── get_more_command.js │ │ │ │ │ ├── insert_command.js │ │ │ │ │ ├── kill_cursor_command.js │ │ │ │ │ ├── query_command.js │ │ │ │ │ └── update_command.js │ │ │ │ │ ├── connection │ │ │ │ │ ├── base.js │ │ │ │ │ ├── connection.js │ │ │ │ │ ├── connection_pool.js │ │ │ │ │ ├── connection_utils.js │ │ │ │ │ ├── mongos.js │ │ │ │ │ ├── read_preference.js │ │ │ │ │ ├── repl_set │ │ │ │ │ │ ├── ha.js │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ ├── repl_set.js │ │ │ │ │ │ ├── repl_set_state.js │ │ │ │ │ │ └── strategies │ │ │ │ │ │ │ ├── ping_strategy.js │ │ │ │ │ │ │ └── statistics_strategy.js │ │ │ │ │ ├── server.js │ │ │ │ │ ├── server_capabilities.js │ │ │ │ │ └── url_parser.js │ │ │ │ │ ├── cursor.js │ │ │ │ │ ├── cursorstream.js │ │ │ │ │ ├── db.js │ │ │ │ │ ├── gridfs │ │ │ │ │ ├── chunk.js │ │ │ │ │ ├── grid.js │ │ │ │ │ ├── gridstore.js │ │ │ │ │ └── readstream.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── mongo_client.js │ │ │ │ │ ├── responses │ │ │ │ │ └── mongo_reply.js │ │ │ │ │ ├── scope.js │ │ │ │ │ └── utils.js │ │ │ ├── node_modules │ │ │ │ ├── bson │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── binding.gyp │ │ │ │ │ ├── browser_build │ │ │ │ │ │ ├── bson.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── build │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ ├── bson.node.d │ │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ │ └── bson.o.d │ │ │ │ │ │ │ ├── bson.node │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ └── bson.o │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ ├── bson.target.mk │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ └── gyp-mac-tool │ │ │ │ │ ├── build_browser.js │ │ │ │ │ ├── builderror.log │ │ │ │ │ ├── ext │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bson.cc │ │ │ │ │ │ ├── bson.h │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── nan.h │ │ │ │ │ │ ├── win32 │ │ │ │ │ │ │ ├── ia32 │ │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ │ └── x64 │ │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ └── wscript │ │ │ │ │ ├── lib │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ ├── binary.js │ │ │ │ │ │ │ ├── binary_parser.js │ │ │ │ │ │ │ ├── bson.js │ │ │ │ │ │ │ ├── code.js │ │ │ │ │ │ │ ├── db_ref.js │ │ │ │ │ │ │ ├── double.js │ │ │ │ │ │ │ ├── float_parser.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── long.js │ │ │ │ │ │ │ ├── max_key.js │ │ │ │ │ │ │ ├── min_key.js │ │ │ │ │ │ │ ├── objectid.js │ │ │ │ │ │ │ ├── symbol.js │ │ │ │ │ │ │ └── timestamp.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── tools │ │ │ │ │ │ ├── gleak.js │ │ │ │ │ │ └── jasmine-1.1.0 │ │ │ │ │ │ ├── MIT.LICENSE │ │ │ │ │ │ ├── jasmine-html.js │ │ │ │ │ │ ├── jasmine.css │ │ │ │ │ │ ├── jasmine.js │ │ │ │ │ │ └── jasmine_favicon.png │ │ │ │ └── kerberos │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── binding.gyp │ │ │ │ │ ├── build │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Release │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ ├── kerberos.node.d │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ └── kerberos │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ ├── base64.o.d │ │ │ │ │ │ │ │ ├── kerberos.o.d │ │ │ │ │ │ │ │ ├── kerberos_context.o.d │ │ │ │ │ │ │ │ ├── kerberosgss.o.d │ │ │ │ │ │ │ │ └── worker.o.d │ │ │ │ │ │ ├── kerberos.node │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ └── kerberos │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── base64.o │ │ │ │ │ │ │ ├── kerberos.o │ │ │ │ │ │ │ ├── kerberos_context.o │ │ │ │ │ │ │ ├── kerberosgss.o │ │ │ │ │ │ │ └── worker.o │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ ├── config.gypi │ │ │ │ │ ├── gyp-mac-tool │ │ │ │ │ └── kerberos.target.mk │ │ │ │ │ ├── builderror.log │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ ├── auth_processes │ │ │ │ │ │ └── mongodb.js │ │ │ │ │ ├── base64.c │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── kerberos.cc │ │ │ │ │ ├── kerberos.h │ │ │ │ │ ├── kerberos.js │ │ │ │ │ ├── kerberos_context.cc │ │ │ │ │ ├── kerberos_context.h │ │ │ │ │ ├── kerberosgss.c │ │ │ │ │ ├── kerberosgss.h │ │ │ │ │ ├── sspi.js │ │ │ │ │ ├── win32 │ │ │ │ │ │ ├── base64.c │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ ├── kerberos.cc │ │ │ │ │ │ ├── kerberos.h │ │ │ │ │ │ ├── kerberos_sspi.c │ │ │ │ │ │ ├── kerberos_sspi.h │ │ │ │ │ │ ├── worker.cc │ │ │ │ │ │ ├── worker.h │ │ │ │ │ │ └── wrappers │ │ │ │ │ │ │ ├── security_buffer.cc │ │ │ │ │ │ │ ├── security_buffer.h │ │ │ │ │ │ │ ├── security_buffer.js │ │ │ │ │ │ │ ├── security_buffer_descriptor.cc │ │ │ │ │ │ │ ├── security_buffer_descriptor.h │ │ │ │ │ │ │ ├── security_buffer_descriptor.js │ │ │ │ │ │ │ ├── security_context.cc │ │ │ │ │ │ │ ├── security_context.h │ │ │ │ │ │ │ ├── security_context.js │ │ │ │ │ │ │ ├── security_credentials.cc │ │ │ │ │ │ │ ├── security_credentials.h │ │ │ │ │ │ │ └── security_credentials.js │ │ │ │ │ ├── worker.cc │ │ │ │ │ └── worker.h │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ ├── kerberos_tests.js │ │ │ │ │ ├── kerberos_win32_test.js │ │ │ │ │ └── win32 │ │ │ │ │ ├── security_buffer_descriptor_tests.js │ │ │ │ │ ├── security_buffer_tests.js │ │ │ │ │ └── security_credentials_tests.js │ │ │ ├── package.json │ │ │ └── t.js │ │ ├── mpath │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ ├── mpromise │ │ │ ├── .idea │ │ │ │ ├── .name │ │ │ │ ├── codeStyleSettings.xml │ │ │ │ ├── encodings.xml │ │ │ │ ├── inspectionProfiles │ │ │ │ │ ├── Project_Default.xml │ │ │ │ │ └── profiles_settings.xml │ │ │ │ ├── jsLibraryMappings.xml │ │ │ │ ├── libraries │ │ │ │ │ └── Node_js_Dependencies_for_mpromise.xml │ │ │ │ ├── misc.xml │ │ │ │ ├── modules.xml │ │ │ │ ├── mpromise.iml │ │ │ │ ├── other.xml │ │ │ │ ├── scopes │ │ │ │ │ └── scope_settings.xml │ │ │ │ ├── vcs.xml │ │ │ │ └── workspace.xml │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── promise.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── promise.domain.test.js │ │ │ │ ├── promise.test.js │ │ │ │ └── promises.Aplus.js │ │ ├── mquery │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── collection │ │ │ │ │ ├── collection.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── node.js │ │ │ │ ├── env.js │ │ │ │ ├── mquery.js │ │ │ │ ├── permissions.js │ │ │ │ └── utils.js │ │ │ ├── node_modules │ │ │ │ └── debug │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── debug.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ └── debug.js │ │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── collection │ │ │ │ ├── browser.js │ │ │ │ ├── mongo.js │ │ │ │ └── node.js │ │ │ │ ├── env.js │ │ │ │ ├── index.js │ │ │ │ ├── utils.js │ │ │ │ └── utils.test.js │ │ ├── ms │ │ │ ├── .npmignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── ms.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── index.html │ │ │ │ ├── support │ │ │ │ └── jquery.js │ │ │ │ └── test.js │ │ ├── muri │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ ├── regexp-clone │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ └── sliced │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── bench.js │ │ │ ├── component.json │ │ │ ├── index.js │ │ │ ├── lib │ │ │ └── sliced.js │ │ │ ├── package.json │ │ │ └── test │ │ │ └── index.js │ │ ├── package.json │ │ ├── release-items.md │ │ ├── static.js │ │ └── website.js ├── package.json └── server.js ├── beerlocker-3.1 ├── controllers │ └── beer.js ├── models │ └── beer.js ├── node_modules │ ├── body-parser │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── HISTORY.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── qs │ │ │ │ ├── .gitmodules │ │ │ │ ├── .npmignore │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── raw-body │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── bytes │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ └── type-is │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── HISTORY.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ └── mime │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── mime.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test.js │ │ │ │ │ └── types │ │ │ │ │ ├── mime.types │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ └── package.json │ ├── express │ │ ├── .npmignore │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── 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 │ │ ├── node_modules │ │ │ ├── accepts │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ │ └── node.types │ │ │ │ │ └── negotiator │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── charset.js │ │ │ │ │ │ ├── encoding.js │ │ │ │ │ │ ├── language.js │ │ │ │ │ │ ├── mediaType.js │ │ │ │ │ │ └── negotiator.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── readme.md │ │ │ │ └── package.json │ │ │ ├── buffer-crc32 │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ └── crc.test.js │ │ │ ├── cookie-signature │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── cookie │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── debug │ │ │ │ ├── Readme.md │ │ │ │ ├── debug.js │ │ │ │ ├── lib │ │ │ │ │ └── debug.js │ │ │ │ └── package.json │ │ │ ├── escape-html │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── fresh │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── merge-descriptors │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── methods │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── parseurl │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── path-to-regexp │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── qs │ │ │ │ ├── .gitmodules │ │ │ │ ├── .npmignore │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── range-parser │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── send │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── send.js │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── debug.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ │ ├── serve-static │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── type-is │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── HISTORY.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ │ └── utils-merge │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ └── mongoose │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── History.md │ │ ├── README.md │ │ ├── contRun.sh │ │ ├── examples │ │ ├── README.md │ │ ├── aggregate │ │ │ ├── aggregate.js │ │ │ ├── package.json │ │ │ └── person.js │ │ ├── doc-methods.js │ │ ├── express │ │ │ ├── README.md │ │ │ └── connection-sharing │ │ │ │ ├── README.md │ │ │ │ ├── app.js │ │ │ │ ├── modelA.js │ │ │ │ ├── package.json │ │ │ │ └── routes.js │ │ ├── geospatial │ │ │ ├── geoJSONSchema.js │ │ │ ├── geoJSONexample.js │ │ │ ├── geospatial.js │ │ │ ├── package.json │ │ │ └── person.js │ │ ├── globalschemas │ │ │ ├── gs_example.js │ │ │ └── person.js │ │ ├── lean │ │ │ ├── lean.js │ │ │ ├── package.json │ │ │ └── person.js │ │ ├── mapreduce │ │ │ ├── mapreduce.js │ │ │ ├── package.json │ │ │ └── person.js │ │ ├── population │ │ │ ├── population-across-three-collections.js │ │ │ ├── population-basic.js │ │ │ ├── population-of-existing-doc.js │ │ │ ├── population-of-multiple-existing-docs.js │ │ │ ├── population-options.js │ │ │ └── population-plain-objects.js │ │ ├── promises │ │ │ ├── package.json │ │ │ ├── person.js │ │ │ └── promise.js │ │ ├── querybuilder │ │ │ ├── package.json │ │ │ ├── person.js │ │ │ └── querybuilder.js │ │ ├── replicasets │ │ │ ├── package.json │ │ │ ├── person.js │ │ │ └── replica-sets.js │ │ ├── schema │ │ │ ├── schema.js │ │ │ └── storing-schemas-as-json │ │ │ │ ├── index.js │ │ │ │ └── schema.json │ │ └── statics │ │ │ ├── person.js │ │ │ └── statics.js │ │ ├── index.js │ │ ├── lib │ │ ├── aggregate.js │ │ ├── collection.js │ │ ├── connection.js │ │ ├── connectionstate.js │ │ ├── document.js │ │ ├── drivers │ │ │ ├── SPEC.md │ │ │ └── node-mongodb-native │ │ │ │ ├── binary.js │ │ │ │ ├── collection.js │ │ │ │ ├── connection.js │ │ │ │ └── objectid.js │ │ ├── error.js │ │ ├── error │ │ │ ├── cast.js │ │ │ ├── divergentArray.js │ │ │ ├── messages.js │ │ │ ├── missingSchema.js │ │ │ ├── overwriteModel.js │ │ │ ├── validation.js │ │ │ ├── validator.js │ │ │ └── version.js │ │ ├── index.js │ │ ├── internal.js │ │ ├── model.js │ │ ├── promise.js │ │ ├── query.js │ │ ├── queryhelpers.js │ │ ├── querystream.js │ │ ├── schema.js │ │ ├── schema │ │ │ ├── array.js │ │ │ ├── boolean.js │ │ │ ├── buffer.js │ │ │ ├── date.js │ │ │ ├── documentarray.js │ │ │ ├── index.js │ │ │ ├── mixed.js │ │ │ ├── number.js │ │ │ ├── objectid.js │ │ │ └── string.js │ │ ├── schemadefault.js │ │ ├── schematype.js │ │ ├── statemachine.js │ │ ├── types │ │ │ ├── array.js │ │ │ ├── buffer.js │ │ │ ├── documentarray.js │ │ │ ├── embedded.js │ │ │ ├── index.js │ │ │ └── objectid.js │ │ ├── utils.js │ │ └── virtualtype.js │ │ ├── node_modules │ │ ├── hooks │ │ │ ├── .npmignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── hooks.alt.js │ │ │ ├── hooks.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── mongodb │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── mongodb │ │ │ │ │ ├── admin.js │ │ │ │ │ ├── aggregation_cursor.js │ │ │ │ │ ├── auth │ │ │ │ │ ├── mongodb_cr.js │ │ │ │ │ ├── mongodb_gssapi.js │ │ │ │ │ ├── mongodb_plain.js │ │ │ │ │ ├── mongodb_sspi.js │ │ │ │ │ └── mongodb_x509.js │ │ │ │ │ ├── collection.js │ │ │ │ │ ├── collection │ │ │ │ │ ├── aggregation.js │ │ │ │ │ ├── commands.js │ │ │ │ │ ├── core.js │ │ │ │ │ ├── geo.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── query.js │ │ │ │ │ └── shared.js │ │ │ │ │ ├── command_cursor.js │ │ │ │ │ ├── commands │ │ │ │ │ ├── base_command.js │ │ │ │ │ ├── db_command.js │ │ │ │ │ ├── delete_command.js │ │ │ │ │ ├── get_more_command.js │ │ │ │ │ ├── insert_command.js │ │ │ │ │ ├── kill_cursor_command.js │ │ │ │ │ ├── query_command.js │ │ │ │ │ └── update_command.js │ │ │ │ │ ├── connection │ │ │ │ │ ├── base.js │ │ │ │ │ ├── connection.js │ │ │ │ │ ├── connection_pool.js │ │ │ │ │ ├── connection_utils.js │ │ │ │ │ ├── mongos.js │ │ │ │ │ ├── read_preference.js │ │ │ │ │ ├── repl_set │ │ │ │ │ │ ├── ha.js │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ ├── repl_set.js │ │ │ │ │ │ ├── repl_set_state.js │ │ │ │ │ │ └── strategies │ │ │ │ │ │ │ ├── ping_strategy.js │ │ │ │ │ │ │ └── statistics_strategy.js │ │ │ │ │ ├── server.js │ │ │ │ │ ├── server_capabilities.js │ │ │ │ │ └── url_parser.js │ │ │ │ │ ├── cursor.js │ │ │ │ │ ├── cursorstream.js │ │ │ │ │ ├── db.js │ │ │ │ │ ├── gridfs │ │ │ │ │ ├── chunk.js │ │ │ │ │ ├── grid.js │ │ │ │ │ ├── gridstore.js │ │ │ │ │ └── readstream.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── mongo_client.js │ │ │ │ │ ├── responses │ │ │ │ │ └── mongo_reply.js │ │ │ │ │ ├── scope.js │ │ │ │ │ └── utils.js │ │ │ ├── node_modules │ │ │ │ ├── bson │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── binding.gyp │ │ │ │ │ ├── browser_build │ │ │ │ │ │ ├── bson.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── build │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ ├── bson.node.d │ │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ │ └── bson.o.d │ │ │ │ │ │ │ ├── bson.node │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ └── bson.o │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ ├── bson.target.mk │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ └── gyp-mac-tool │ │ │ │ │ ├── build_browser.js │ │ │ │ │ ├── builderror.log │ │ │ │ │ ├── ext │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bson.cc │ │ │ │ │ │ ├── bson.h │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── nan.h │ │ │ │ │ │ ├── win32 │ │ │ │ │ │ │ ├── ia32 │ │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ │ └── x64 │ │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ └── wscript │ │ │ │ │ ├── lib │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ ├── binary.js │ │ │ │ │ │ │ ├── binary_parser.js │ │ │ │ │ │ │ ├── bson.js │ │ │ │ │ │ │ ├── code.js │ │ │ │ │ │ │ ├── db_ref.js │ │ │ │ │ │ │ ├── double.js │ │ │ │ │ │ │ ├── float_parser.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── long.js │ │ │ │ │ │ │ ├── max_key.js │ │ │ │ │ │ │ ├── min_key.js │ │ │ │ │ │ │ ├── objectid.js │ │ │ │ │ │ │ ├── symbol.js │ │ │ │ │ │ │ └── timestamp.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── tools │ │ │ │ │ │ ├── gleak.js │ │ │ │ │ │ └── jasmine-1.1.0 │ │ │ │ │ │ ├── MIT.LICENSE │ │ │ │ │ │ ├── jasmine-html.js │ │ │ │ │ │ ├── jasmine.css │ │ │ │ │ │ ├── jasmine.js │ │ │ │ │ │ └── jasmine_favicon.png │ │ │ │ └── kerberos │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── binding.gyp │ │ │ │ │ ├── build │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Release │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ ├── kerberos.node.d │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ └── kerberos │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ ├── base64.o.d │ │ │ │ │ │ │ │ ├── kerberos.o.d │ │ │ │ │ │ │ │ ├── kerberos_context.o.d │ │ │ │ │ │ │ │ ├── kerberosgss.o.d │ │ │ │ │ │ │ │ └── worker.o.d │ │ │ │ │ │ ├── kerberos.node │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ └── kerberos │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── base64.o │ │ │ │ │ │ │ ├── kerberos.o │ │ │ │ │ │ │ ├── kerberos_context.o │ │ │ │ │ │ │ ├── kerberosgss.o │ │ │ │ │ │ │ └── worker.o │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ ├── config.gypi │ │ │ │ │ ├── gyp-mac-tool │ │ │ │ │ └── kerberos.target.mk │ │ │ │ │ ├── builderror.log │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ ├── auth_processes │ │ │ │ │ │ └── mongodb.js │ │ │ │ │ ├── base64.c │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── kerberos.cc │ │ │ │ │ ├── kerberos.h │ │ │ │ │ ├── kerberos.js │ │ │ │ │ ├── kerberos_context.cc │ │ │ │ │ ├── kerberos_context.h │ │ │ │ │ ├── kerberosgss.c │ │ │ │ │ ├── kerberosgss.h │ │ │ │ │ ├── sspi.js │ │ │ │ │ ├── win32 │ │ │ │ │ │ ├── base64.c │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ ├── kerberos.cc │ │ │ │ │ │ ├── kerberos.h │ │ │ │ │ │ ├── kerberos_sspi.c │ │ │ │ │ │ ├── kerberos_sspi.h │ │ │ │ │ │ ├── worker.cc │ │ │ │ │ │ ├── worker.h │ │ │ │ │ │ └── wrappers │ │ │ │ │ │ │ ├── security_buffer.cc │ │ │ │ │ │ │ ├── security_buffer.h │ │ │ │ │ │ │ ├── security_buffer.js │ │ │ │ │ │ │ ├── security_buffer_descriptor.cc │ │ │ │ │ │ │ ├── security_buffer_descriptor.h │ │ │ │ │ │ │ ├── security_buffer_descriptor.js │ │ │ │ │ │ │ ├── security_context.cc │ │ │ │ │ │ │ ├── security_context.h │ │ │ │ │ │ │ ├── security_context.js │ │ │ │ │ │ │ ├── security_credentials.cc │ │ │ │ │ │ │ ├── security_credentials.h │ │ │ │ │ │ │ └── security_credentials.js │ │ │ │ │ ├── worker.cc │ │ │ │ │ └── worker.h │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ ├── kerberos_tests.js │ │ │ │ │ ├── kerberos_win32_test.js │ │ │ │ │ └── win32 │ │ │ │ │ ├── security_buffer_descriptor_tests.js │ │ │ │ │ ├── security_buffer_tests.js │ │ │ │ │ └── security_credentials_tests.js │ │ │ ├── package.json │ │ │ └── t.js │ │ ├── mpath │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ ├── mpromise │ │ │ ├── .idea │ │ │ │ ├── .name │ │ │ │ ├── codeStyleSettings.xml │ │ │ │ ├── encodings.xml │ │ │ │ ├── inspectionProfiles │ │ │ │ │ ├── Project_Default.xml │ │ │ │ │ └── profiles_settings.xml │ │ │ │ ├── jsLibraryMappings.xml │ │ │ │ ├── libraries │ │ │ │ │ └── Node_js_Dependencies_for_mpromise.xml │ │ │ │ ├── misc.xml │ │ │ │ ├── modules.xml │ │ │ │ ├── mpromise.iml │ │ │ │ ├── other.xml │ │ │ │ ├── scopes │ │ │ │ │ └── scope_settings.xml │ │ │ │ ├── vcs.xml │ │ │ │ └── workspace.xml │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── promise.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── promise.domain.test.js │ │ │ │ ├── promise.test.js │ │ │ │ └── promises.Aplus.js │ │ ├── mquery │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── collection │ │ │ │ │ ├── collection.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── node.js │ │ │ │ ├── env.js │ │ │ │ ├── mquery.js │ │ │ │ ├── permissions.js │ │ │ │ └── utils.js │ │ │ ├── node_modules │ │ │ │ └── debug │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── debug.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ └── debug.js │ │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── collection │ │ │ │ ├── browser.js │ │ │ │ ├── mongo.js │ │ │ │ └── node.js │ │ │ │ ├── env.js │ │ │ │ ├── index.js │ │ │ │ ├── utils.js │ │ │ │ └── utils.test.js │ │ ├── ms │ │ │ ├── .npmignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── ms.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── index.html │ │ │ │ ├── support │ │ │ │ └── jquery.js │ │ │ │ └── test.js │ │ ├── muri │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ ├── regexp-clone │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ └── sliced │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── bench.js │ │ │ ├── component.json │ │ │ ├── index.js │ │ │ ├── lib │ │ │ └── sliced.js │ │ │ ├── package.json │ │ │ └── test │ │ │ └── index.js │ │ ├── package.json │ │ ├── release-items.md │ │ ├── static.js │ │ └── website.js ├── package.json └── server.js ├── beerlocker-3.2 ├── controllers │ ├── auth.js │ ├── beer.js │ └── user.js ├── models │ ├── beer.js │ └── user.js ├── node_modules │ ├── bcrypt-nodejs │ │ ├── .gitattributes │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bCrypt.js │ │ ├── package.json │ │ ├── test-async.js │ │ └── test-sync.js │ ├── body-parser │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── HISTORY.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── qs │ │ │ │ ├── .gitmodules │ │ │ │ ├── .npmignore │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── raw-body │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── bytes │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ └── type-is │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── HISTORY.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ └── mime │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── mime.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test.js │ │ │ │ │ └── types │ │ │ │ │ ├── mime.types │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ └── package.json │ ├── express │ │ ├── .npmignore │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── 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 │ │ ├── node_modules │ │ │ ├── accepts │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ │ └── node.types │ │ │ │ │ └── negotiator │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── charset.js │ │ │ │ │ │ ├── encoding.js │ │ │ │ │ │ ├── language.js │ │ │ │ │ │ ├── mediaType.js │ │ │ │ │ │ └── negotiator.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── readme.md │ │ │ │ └── package.json │ │ │ ├── buffer-crc32 │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ └── crc.test.js │ │ │ ├── cookie-signature │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── cookie │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── debug │ │ │ │ ├── Readme.md │ │ │ │ ├── debug.js │ │ │ │ ├── lib │ │ │ │ │ └── debug.js │ │ │ │ └── package.json │ │ │ ├── escape-html │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── fresh │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── merge-descriptors │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── methods │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── parseurl │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── path-to-regexp │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── qs │ │ │ │ ├── .gitmodules │ │ │ │ ├── .npmignore │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── range-parser │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── send │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── send.js │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── debug.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ │ ├── serve-static │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── type-is │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── HISTORY.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ │ └── utils-merge │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ ├── mongoose │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── History.md │ │ ├── README.md │ │ ├── contRun.sh │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── aggregate │ │ │ │ ├── aggregate.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── doc-methods.js │ │ │ ├── express │ │ │ │ ├── README.md │ │ │ │ └── connection-sharing │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app.js │ │ │ │ │ ├── modelA.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── routes.js │ │ │ ├── geospatial │ │ │ │ ├── geoJSONSchema.js │ │ │ │ ├── geoJSONexample.js │ │ │ │ ├── geospatial.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── globalschemas │ │ │ │ ├── gs_example.js │ │ │ │ └── person.js │ │ │ ├── lean │ │ │ │ ├── lean.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── mapreduce │ │ │ │ ├── mapreduce.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── population │ │ │ │ ├── population-across-three-collections.js │ │ │ │ ├── population-basic.js │ │ │ │ ├── population-of-existing-doc.js │ │ │ │ ├── population-of-multiple-existing-docs.js │ │ │ │ ├── population-options.js │ │ │ │ └── population-plain-objects.js │ │ │ ├── promises │ │ │ │ ├── package.json │ │ │ │ ├── person.js │ │ │ │ └── promise.js │ │ │ ├── querybuilder │ │ │ │ ├── package.json │ │ │ │ ├── person.js │ │ │ │ └── querybuilder.js │ │ │ ├── replicasets │ │ │ │ ├── package.json │ │ │ │ ├── person.js │ │ │ │ └── replica-sets.js │ │ │ ├── schema │ │ │ │ ├── schema.js │ │ │ │ └── storing-schemas-as-json │ │ │ │ │ ├── index.js │ │ │ │ │ └── schema.json │ │ │ └── statics │ │ │ │ ├── person.js │ │ │ │ └── statics.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── aggregate.js │ │ │ ├── collection.js │ │ │ ├── connection.js │ │ │ ├── connectionstate.js │ │ │ ├── document.js │ │ │ ├── drivers │ │ │ │ ├── SPEC.md │ │ │ │ └── node-mongodb-native │ │ │ │ │ ├── binary.js │ │ │ │ │ ├── collection.js │ │ │ │ │ ├── connection.js │ │ │ │ │ └── objectid.js │ │ │ ├── error.js │ │ │ ├── error │ │ │ │ ├── cast.js │ │ │ │ ├── divergentArray.js │ │ │ │ ├── messages.js │ │ │ │ ├── missingSchema.js │ │ │ │ ├── overwriteModel.js │ │ │ │ ├── validation.js │ │ │ │ ├── validator.js │ │ │ │ └── version.js │ │ │ ├── index.js │ │ │ ├── internal.js │ │ │ ├── model.js │ │ │ ├── promise.js │ │ │ ├── query.js │ │ │ ├── queryhelpers.js │ │ │ ├── querystream.js │ │ │ ├── schema.js │ │ │ ├── schema │ │ │ │ ├── array.js │ │ │ │ ├── boolean.js │ │ │ │ ├── buffer.js │ │ │ │ ├── date.js │ │ │ │ ├── documentarray.js │ │ │ │ ├── index.js │ │ │ │ ├── mixed.js │ │ │ │ ├── number.js │ │ │ │ ├── objectid.js │ │ │ │ └── string.js │ │ │ ├── schemadefault.js │ │ │ ├── schematype.js │ │ │ ├── statemachine.js │ │ │ ├── types │ │ │ │ ├── array.js │ │ │ │ ├── buffer.js │ │ │ │ ├── documentarray.js │ │ │ │ ├── embedded.js │ │ │ │ ├── index.js │ │ │ │ └── objectid.js │ │ │ ├── utils.js │ │ │ └── virtualtype.js │ │ ├── node_modules │ │ │ ├── hooks │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── hooks.alt.js │ │ │ │ ├── hooks.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── mongodb │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── mongodb │ │ │ │ │ │ ├── admin.js │ │ │ │ │ │ ├── aggregation_cursor.js │ │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── mongodb_cr.js │ │ │ │ │ │ ├── mongodb_gssapi.js │ │ │ │ │ │ ├── mongodb_plain.js │ │ │ │ │ │ ├── mongodb_sspi.js │ │ │ │ │ │ └── mongodb_x509.js │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── collection │ │ │ │ │ │ ├── aggregation.js │ │ │ │ │ │ ├── commands.js │ │ │ │ │ │ ├── core.js │ │ │ │ │ │ ├── geo.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── query.js │ │ │ │ │ │ └── shared.js │ │ │ │ │ │ ├── command_cursor.js │ │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── base_command.js │ │ │ │ │ │ ├── db_command.js │ │ │ │ │ │ ├── delete_command.js │ │ │ │ │ │ ├── get_more_command.js │ │ │ │ │ │ ├── insert_command.js │ │ │ │ │ │ ├── kill_cursor_command.js │ │ │ │ │ │ ├── query_command.js │ │ │ │ │ │ └── update_command.js │ │ │ │ │ │ ├── connection │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── connection.js │ │ │ │ │ │ ├── connection_pool.js │ │ │ │ │ │ ├── connection_utils.js │ │ │ │ │ │ ├── mongos.js │ │ │ │ │ │ ├── read_preference.js │ │ │ │ │ │ ├── repl_set │ │ │ │ │ │ │ ├── ha.js │ │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ │ ├── repl_set.js │ │ │ │ │ │ │ ├── repl_set_state.js │ │ │ │ │ │ │ └── strategies │ │ │ │ │ │ │ │ ├── ping_strategy.js │ │ │ │ │ │ │ │ └── statistics_strategy.js │ │ │ │ │ │ ├── server.js │ │ │ │ │ │ ├── server_capabilities.js │ │ │ │ │ │ └── url_parser.js │ │ │ │ │ │ ├── cursor.js │ │ │ │ │ │ ├── cursorstream.js │ │ │ │ │ │ ├── db.js │ │ │ │ │ │ ├── gridfs │ │ │ │ │ │ ├── chunk.js │ │ │ │ │ │ ├── grid.js │ │ │ │ │ │ ├── gridstore.js │ │ │ │ │ │ └── readstream.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── mongo_client.js │ │ │ │ │ │ ├── responses │ │ │ │ │ │ └── mongo_reply.js │ │ │ │ │ │ ├── scope.js │ │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── bson │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── binding.gyp │ │ │ │ │ │ ├── browser_build │ │ │ │ │ │ │ ├── bson.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ │ ├── bson.node.d │ │ │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ │ │ └── bson.o.d │ │ │ │ │ │ │ │ ├── bson.node │ │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ │ └── bson.o │ │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ │ ├── bson.target.mk │ │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ │ └── gyp-mac-tool │ │ │ │ │ │ ├── build_browser.js │ │ │ │ │ │ ├── builderror.log │ │ │ │ │ │ ├── ext │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── bson.cc │ │ │ │ │ │ │ ├── bson.h │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── nan.h │ │ │ │ │ │ │ ├── win32 │ │ │ │ │ │ │ │ ├── ia32 │ │ │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ │ │ └── x64 │ │ │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ │ └── wscript │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ ├── binary.js │ │ │ │ │ │ │ │ ├── binary_parser.js │ │ │ │ │ │ │ │ ├── bson.js │ │ │ │ │ │ │ │ ├── code.js │ │ │ │ │ │ │ │ ├── db_ref.js │ │ │ │ │ │ │ │ ├── double.js │ │ │ │ │ │ │ │ ├── float_parser.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── long.js │ │ │ │ │ │ │ │ ├── max_key.js │ │ │ │ │ │ │ │ ├── min_key.js │ │ │ │ │ │ │ │ ├── objectid.js │ │ │ │ │ │ │ │ ├── symbol.js │ │ │ │ │ │ │ │ └── timestamp.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── tools │ │ │ │ │ │ │ ├── gleak.js │ │ │ │ │ │ │ └── jasmine-1.1.0 │ │ │ │ │ │ │ ├── MIT.LICENSE │ │ │ │ │ │ │ ├── jasmine-html.js │ │ │ │ │ │ │ ├── jasmine.css │ │ │ │ │ │ │ ├── jasmine.js │ │ │ │ │ │ │ └── jasmine_favicon.png │ │ │ │ │ └── kerberos │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── binding.gyp │ │ │ │ │ │ ├── build │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ ├── kerberos.node.d │ │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ └── kerberos │ │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ │ ├── base64.o.d │ │ │ │ │ │ │ │ │ ├── kerberos.o.d │ │ │ │ │ │ │ │ │ ├── kerberos_context.o.d │ │ │ │ │ │ │ │ │ ├── kerberosgss.o.d │ │ │ │ │ │ │ │ │ └── worker.o.d │ │ │ │ │ │ │ ├── kerberos.node │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ └── kerberos │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ ├── base64.o │ │ │ │ │ │ │ │ ├── kerberos.o │ │ │ │ │ │ │ │ ├── kerberos_context.o │ │ │ │ │ │ │ │ ├── kerberosgss.o │ │ │ │ │ │ │ │ └── worker.o │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ ├── gyp-mac-tool │ │ │ │ │ │ └── kerberos.target.mk │ │ │ │ │ │ ├── builderror.log │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── auth_processes │ │ │ │ │ │ │ └── mongodb.js │ │ │ │ │ │ ├── base64.c │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ ├── kerberos.cc │ │ │ │ │ │ ├── kerberos.h │ │ │ │ │ │ ├── kerberos.js │ │ │ │ │ │ ├── kerberos_context.cc │ │ │ │ │ │ ├── kerberos_context.h │ │ │ │ │ │ ├── kerberosgss.c │ │ │ │ │ │ ├── kerberosgss.h │ │ │ │ │ │ ├── sspi.js │ │ │ │ │ │ ├── win32 │ │ │ │ │ │ │ ├── base64.c │ │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ │ ├── kerberos.cc │ │ │ │ │ │ │ ├── kerberos.h │ │ │ │ │ │ │ ├── kerberos_sspi.c │ │ │ │ │ │ │ ├── kerberos_sspi.h │ │ │ │ │ │ │ ├── worker.cc │ │ │ │ │ │ │ ├── worker.h │ │ │ │ │ │ │ └── wrappers │ │ │ │ │ │ │ │ ├── security_buffer.cc │ │ │ │ │ │ │ │ ├── security_buffer.h │ │ │ │ │ │ │ │ ├── security_buffer.js │ │ │ │ │ │ │ │ ├── security_buffer_descriptor.cc │ │ │ │ │ │ │ │ ├── security_buffer_descriptor.h │ │ │ │ │ │ │ │ ├── security_buffer_descriptor.js │ │ │ │ │ │ │ │ ├── security_context.cc │ │ │ │ │ │ │ │ ├── security_context.h │ │ │ │ │ │ │ │ ├── security_context.js │ │ │ │ │ │ │ │ ├── security_credentials.cc │ │ │ │ │ │ │ │ ├── security_credentials.h │ │ │ │ │ │ │ │ └── security_credentials.js │ │ │ │ │ │ ├── worker.cc │ │ │ │ │ │ └── worker.h │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── kerberos_tests.js │ │ │ │ │ │ ├── kerberos_win32_test.js │ │ │ │ │ │ └── win32 │ │ │ │ │ │ ├── security_buffer_descriptor_tests.js │ │ │ │ │ │ ├── security_buffer_tests.js │ │ │ │ │ │ └── security_credentials_tests.js │ │ │ │ ├── package.json │ │ │ │ └── t.js │ │ │ ├── mpath │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ ├── mpromise │ │ │ │ ├── .idea │ │ │ │ │ ├── .name │ │ │ │ │ ├── codeStyleSettings.xml │ │ │ │ │ ├── encodings.xml │ │ │ │ │ ├── inspectionProfiles │ │ │ │ │ │ ├── Project_Default.xml │ │ │ │ │ │ └── profiles_settings.xml │ │ │ │ │ ├── jsLibraryMappings.xml │ │ │ │ │ ├── libraries │ │ │ │ │ │ └── Node_js_Dependencies_for_mpromise.xml │ │ │ │ │ ├── misc.xml │ │ │ │ │ ├── modules.xml │ │ │ │ │ ├── mpromise.iml │ │ │ │ │ ├── other.xml │ │ │ │ │ ├── scopes │ │ │ │ │ │ └── scope_settings.xml │ │ │ │ │ ├── vcs.xml │ │ │ │ │ └── workspace.xml │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── promise.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── promise.domain.test.js │ │ │ │ │ ├── promise.test.js │ │ │ │ │ └── promises.Aplus.js │ │ │ ├── mquery │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── collection │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── node.js │ │ │ │ │ ├── env.js │ │ │ │ │ ├── mquery.js │ │ │ │ │ ├── permissions.js │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ └── debug │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── debug.js │ │ │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── collection │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── mongo.js │ │ │ │ │ └── node.js │ │ │ │ │ ├── env.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── utils.js │ │ │ │ │ └── utils.test.js │ │ │ ├── ms │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── ms.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ ├── support │ │ │ │ │ └── jquery.js │ │ │ │ │ └── test.js │ │ │ ├── muri │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ ├── regexp-clone │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ └── sliced │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── bench.js │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ └── sliced.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ └── index.js │ │ ├── package.json │ │ ├── release-items.md │ │ ├── static.js │ │ └── website.js │ ├── passport-http │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── passport-http │ │ │ │ ├── index.js │ │ │ │ └── strategies │ │ │ │ ├── basic.js │ │ │ │ └── digest.js │ │ ├── node_modules │ │ │ ├── passport │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ └── passport │ │ │ │ │ │ ├── context │ │ │ │ │ │ └── http │ │ │ │ │ │ │ ├── actions.js │ │ │ │ │ │ │ └── context.js │ │ │ │ │ │ ├── http │ │ │ │ │ │ └── request.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── middleware │ │ │ │ │ │ ├── authenticate.js │ │ │ │ │ │ └── initialize.js │ │ │ │ │ │ ├── strategies │ │ │ │ │ │ └── session.js │ │ │ │ │ │ └── strategy.js │ │ │ │ ├── node_modules │ │ │ │ │ └── pause │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ └── pkginfo │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── docs │ │ │ │ ├── docco.css │ │ │ │ └── pkginfo.html │ │ │ │ ├── examples │ │ │ │ ├── all-properties.js │ │ │ │ ├── array-argument.js │ │ │ │ ├── multiple-properties.js │ │ │ │ ├── object-argument.js │ │ │ │ ├── package.json │ │ │ │ └── single-property.js │ │ │ │ ├── lib │ │ │ │ └── pkginfo.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ └── pkginfo-test.js │ │ └── package.json │ └── passport │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ ├── authenticator.js │ │ ├── errors │ │ │ └── authenticationerror.js │ │ ├── framework │ │ │ └── connect.js │ │ ├── http │ │ │ └── request.js │ │ ├── index.js │ │ ├── middleware │ │ │ ├── authenticate.js │ │ │ └── initialize.js │ │ └── strategies │ │ │ └── session.js │ │ ├── node_modules │ │ ├── passport-strategy │ │ │ ├── .jshintrc │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── strategy.js │ │ │ └── package.json │ │ └── pause │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ └── package.json ├── package.json └── server.js ├── beerlocker-4 ├── controllers │ ├── auth.js │ ├── beer.js │ ├── client.js │ ├── oauth2.js │ └── user.js ├── models │ ├── beer.js │ ├── client.js │ ├── code.js │ ├── token.js │ └── user.js ├── node_modules │ ├── bcrypt-nodejs │ │ ├── .gitattributes │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bCrypt.js │ │ ├── package.json │ │ ├── test-async.js │ │ └── test-sync.js │ ├── body-parser │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── HISTORY.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── qs │ │ │ │ ├── .gitmodules │ │ │ │ ├── .npmignore │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── raw-body │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── bytes │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ └── type-is │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── HISTORY.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ └── mime │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── mime.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test.js │ │ │ │ │ └── types │ │ │ │ │ ├── mime.types │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ └── package.json │ ├── ejs │ │ ├── .gitmodules │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── History.md │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── benchmark.js │ │ ├── ejs.js │ │ ├── ejs.min.js │ │ ├── examples │ │ │ ├── client.html │ │ │ ├── functions.ejs │ │ │ ├── functions.js │ │ │ ├── list.ejs │ │ │ └── list.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── ejs.js │ │ │ ├── filters.js │ │ │ └── utils.js │ │ ├── package.json │ │ ├── support │ │ │ └── compile.js │ │ └── test │ │ │ ├── ejs.js │ │ │ └── fixtures │ │ │ ├── backslash.ejs │ │ │ ├── backslash.html │ │ │ ├── comments.ejs │ │ │ ├── comments.html │ │ │ ├── double-quote.ejs │ │ │ ├── double-quote.html │ │ │ ├── error.ejs │ │ │ ├── error.out │ │ │ ├── fail.ejs │ │ │ ├── include.css.ejs │ │ │ ├── include.css.html │ │ │ ├── include.ejs │ │ │ ├── include.html │ │ │ ├── includes │ │ │ ├── menu-item.ejs │ │ │ └── menu │ │ │ │ └── item.ejs │ │ │ ├── menu.ejs │ │ │ ├── menu.html │ │ │ ├── messed.ejs │ │ │ ├── messed.html │ │ │ ├── newlines.ejs │ │ │ ├── newlines.html │ │ │ ├── no.newlines.ejs │ │ │ ├── no.newlines.html │ │ │ ├── para.ejs │ │ │ ├── pet.ejs │ │ │ ├── single-quote.ejs │ │ │ ├── single-quote.html │ │ │ ├── style.css │ │ │ └── user.ejs │ ├── express-session │ │ ├── .npmignore │ │ ├── History.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── buffer-crc32 │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ └── crc.test.js │ │ │ ├── cookie-signature │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── cookie │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── debug │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── browser.js │ │ │ │ ├── component.json │ │ │ │ ├── debug.js │ │ │ │ ├── node.js │ │ │ │ ├── node_modules │ │ │ │ │ └── ms │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ ├── depd │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── on-headers │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── uid-safe │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── base64-url │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── mz │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── _promisify.js │ │ │ │ │ │ ├── _promisify_all.js │ │ │ │ │ │ ├── child_process.js │ │ │ │ │ │ ├── crypto.js │ │ │ │ │ │ ├── dns.js │ │ │ │ │ │ ├── fs.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── zlib.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ └── utils-merge │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── package.json │ │ └── session │ │ │ ├── cookie.js │ │ │ ├── memory.js │ │ │ ├── session.js │ │ │ └── store.js │ ├── express │ │ ├── .npmignore │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── 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 │ │ ├── node_modules │ │ │ ├── accepts │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ │ └── node.types │ │ │ │ │ └── negotiator │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── charset.js │ │ │ │ │ │ ├── encoding.js │ │ │ │ │ │ ├── language.js │ │ │ │ │ │ ├── mediaType.js │ │ │ │ │ │ └── negotiator.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── readme.md │ │ │ │ └── package.json │ │ │ ├── buffer-crc32 │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ └── crc.test.js │ │ │ ├── cookie-signature │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── cookie │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── debug │ │ │ │ ├── Readme.md │ │ │ │ ├── debug.js │ │ │ │ ├── lib │ │ │ │ │ └── debug.js │ │ │ │ └── package.json │ │ │ ├── escape-html │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── fresh │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── merge-descriptors │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── methods │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── parseurl │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── path-to-regexp │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── qs │ │ │ │ ├── .gitmodules │ │ │ │ ├── .npmignore │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── range-parser │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── send │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── send.js │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── debug.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ │ ├── serve-static │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── type-is │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── HISTORY.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ │ └── utils-merge │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ ├── mongoose │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── History.md │ │ ├── README.md │ │ ├── contRun.sh │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── aggregate │ │ │ │ ├── aggregate.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── doc-methods.js │ │ │ ├── express │ │ │ │ ├── README.md │ │ │ │ └── connection-sharing │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app.js │ │ │ │ │ ├── modelA.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── routes.js │ │ │ ├── geospatial │ │ │ │ ├── geoJSONSchema.js │ │ │ │ ├── geoJSONexample.js │ │ │ │ ├── geospatial.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── globalschemas │ │ │ │ ├── gs_example.js │ │ │ │ └── person.js │ │ │ ├── lean │ │ │ │ ├── lean.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── mapreduce │ │ │ │ ├── mapreduce.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── population │ │ │ │ ├── population-across-three-collections.js │ │ │ │ ├── population-basic.js │ │ │ │ ├── population-of-existing-doc.js │ │ │ │ ├── population-of-multiple-existing-docs.js │ │ │ │ ├── population-options.js │ │ │ │ └── population-plain-objects.js │ │ │ ├── promises │ │ │ │ ├── package.json │ │ │ │ ├── person.js │ │ │ │ └── promise.js │ │ │ ├── querybuilder │ │ │ │ ├── package.json │ │ │ │ ├── person.js │ │ │ │ └── querybuilder.js │ │ │ ├── replicasets │ │ │ │ ├── package.json │ │ │ │ ├── person.js │ │ │ │ └── replica-sets.js │ │ │ ├── schema │ │ │ │ ├── schema.js │ │ │ │ └── storing-schemas-as-json │ │ │ │ │ ├── index.js │ │ │ │ │ └── schema.json │ │ │ └── statics │ │ │ │ ├── person.js │ │ │ │ └── statics.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── aggregate.js │ │ │ ├── collection.js │ │ │ ├── connection.js │ │ │ ├── connectionstate.js │ │ │ ├── document.js │ │ │ ├── drivers │ │ │ │ ├── SPEC.md │ │ │ │ └── node-mongodb-native │ │ │ │ │ ├── binary.js │ │ │ │ │ ├── collection.js │ │ │ │ │ ├── connection.js │ │ │ │ │ └── objectid.js │ │ │ ├── error.js │ │ │ ├── error │ │ │ │ ├── cast.js │ │ │ │ ├── divergentArray.js │ │ │ │ ├── messages.js │ │ │ │ ├── missingSchema.js │ │ │ │ ├── overwriteModel.js │ │ │ │ ├── validation.js │ │ │ │ ├── validator.js │ │ │ │ └── version.js │ │ │ ├── index.js │ │ │ ├── internal.js │ │ │ ├── model.js │ │ │ ├── promise.js │ │ │ ├── query.js │ │ │ ├── queryhelpers.js │ │ │ ├── querystream.js │ │ │ ├── schema.js │ │ │ ├── schema │ │ │ │ ├── array.js │ │ │ │ ├── boolean.js │ │ │ │ ├── buffer.js │ │ │ │ ├── date.js │ │ │ │ ├── documentarray.js │ │ │ │ ├── index.js │ │ │ │ ├── mixed.js │ │ │ │ ├── number.js │ │ │ │ ├── objectid.js │ │ │ │ └── string.js │ │ │ ├── schemadefault.js │ │ │ ├── schematype.js │ │ │ ├── statemachine.js │ │ │ ├── types │ │ │ │ ├── array.js │ │ │ │ ├── buffer.js │ │ │ │ ├── documentarray.js │ │ │ │ ├── embedded.js │ │ │ │ ├── index.js │ │ │ │ └── objectid.js │ │ │ ├── utils.js │ │ │ └── virtualtype.js │ │ ├── node_modules │ │ │ ├── hooks │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── hooks.alt.js │ │ │ │ ├── hooks.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── mongodb │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── mongodb │ │ │ │ │ │ ├── admin.js │ │ │ │ │ │ ├── aggregation_cursor.js │ │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── mongodb_cr.js │ │ │ │ │ │ ├── mongodb_gssapi.js │ │ │ │ │ │ ├── mongodb_plain.js │ │ │ │ │ │ ├── mongodb_sspi.js │ │ │ │ │ │ └── mongodb_x509.js │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── collection │ │ │ │ │ │ ├── aggregation.js │ │ │ │ │ │ ├── commands.js │ │ │ │ │ │ ├── core.js │ │ │ │ │ │ ├── geo.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── query.js │ │ │ │ │ │ └── shared.js │ │ │ │ │ │ ├── command_cursor.js │ │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── base_command.js │ │ │ │ │ │ ├── db_command.js │ │ │ │ │ │ ├── delete_command.js │ │ │ │ │ │ ├── get_more_command.js │ │ │ │ │ │ ├── insert_command.js │ │ │ │ │ │ ├── kill_cursor_command.js │ │ │ │ │ │ ├── query_command.js │ │ │ │ │ │ └── update_command.js │ │ │ │ │ │ ├── connection │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── connection.js │ │ │ │ │ │ ├── connection_pool.js │ │ │ │ │ │ ├── connection_utils.js │ │ │ │ │ │ ├── mongos.js │ │ │ │ │ │ ├── read_preference.js │ │ │ │ │ │ ├── repl_set │ │ │ │ │ │ │ ├── ha.js │ │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ │ ├── repl_set.js │ │ │ │ │ │ │ ├── repl_set_state.js │ │ │ │ │ │ │ └── strategies │ │ │ │ │ │ │ │ ├── ping_strategy.js │ │ │ │ │ │ │ │ └── statistics_strategy.js │ │ │ │ │ │ ├── server.js │ │ │ │ │ │ ├── server_capabilities.js │ │ │ │ │ │ └── url_parser.js │ │ │ │ │ │ ├── cursor.js │ │ │ │ │ │ ├── cursorstream.js │ │ │ │ │ │ ├── db.js │ │ │ │ │ │ ├── gridfs │ │ │ │ │ │ ├── chunk.js │ │ │ │ │ │ ├── grid.js │ │ │ │ │ │ ├── gridstore.js │ │ │ │ │ │ └── readstream.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── mongo_client.js │ │ │ │ │ │ ├── responses │ │ │ │ │ │ └── mongo_reply.js │ │ │ │ │ │ ├── scope.js │ │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── bson │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── binding.gyp │ │ │ │ │ │ ├── browser_build │ │ │ │ │ │ │ ├── bson.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ │ ├── bson.node.d │ │ │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ │ │ └── bson.o.d │ │ │ │ │ │ │ │ ├── bson.node │ │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ │ └── bson.o │ │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ │ ├── bson.target.mk │ │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ │ └── gyp-mac-tool │ │ │ │ │ │ ├── build_browser.js │ │ │ │ │ │ ├── builderror.log │ │ │ │ │ │ ├── ext │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── bson.cc │ │ │ │ │ │ │ ├── bson.h │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── nan.h │ │ │ │ │ │ │ ├── win32 │ │ │ │ │ │ │ │ ├── ia32 │ │ │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ │ │ └── x64 │ │ │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ │ └── wscript │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ ├── binary.js │ │ │ │ │ │ │ │ ├── binary_parser.js │ │ │ │ │ │ │ │ ├── bson.js │ │ │ │ │ │ │ │ ├── code.js │ │ │ │ │ │ │ │ ├── db_ref.js │ │ │ │ │ │ │ │ ├── double.js │ │ │ │ │ │ │ │ ├── float_parser.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── long.js │ │ │ │ │ │ │ │ ├── max_key.js │ │ │ │ │ │ │ │ ├── min_key.js │ │ │ │ │ │ │ │ ├── objectid.js │ │ │ │ │ │ │ │ ├── symbol.js │ │ │ │ │ │ │ │ └── timestamp.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── tools │ │ │ │ │ │ │ ├── gleak.js │ │ │ │ │ │ │ └── jasmine-1.1.0 │ │ │ │ │ │ │ ├── MIT.LICENSE │ │ │ │ │ │ │ ├── jasmine-html.js │ │ │ │ │ │ │ ├── jasmine.css │ │ │ │ │ │ │ ├── jasmine.js │ │ │ │ │ │ │ └── jasmine_favicon.png │ │ │ │ │ └── kerberos │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── binding.gyp │ │ │ │ │ │ ├── build │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ ├── kerberos.node.d │ │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ └── kerberos │ │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ │ ├── base64.o.d │ │ │ │ │ │ │ │ │ ├── kerberos.o.d │ │ │ │ │ │ │ │ │ ├── kerberos_context.o.d │ │ │ │ │ │ │ │ │ ├── kerberosgss.o.d │ │ │ │ │ │ │ │ │ └── worker.o.d │ │ │ │ │ │ │ ├── kerberos.node │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ └── kerberos │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ ├── base64.o │ │ │ │ │ │ │ │ ├── kerberos.o │ │ │ │ │ │ │ │ ├── kerberos_context.o │ │ │ │ │ │ │ │ ├── kerberosgss.o │ │ │ │ │ │ │ │ └── worker.o │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ ├── gyp-mac-tool │ │ │ │ │ │ └── kerberos.target.mk │ │ │ │ │ │ ├── builderror.log │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── auth_processes │ │ │ │ │ │ │ └── mongodb.js │ │ │ │ │ │ ├── base64.c │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ ├── kerberos.cc │ │ │ │ │ │ ├── kerberos.h │ │ │ │ │ │ ├── kerberos.js │ │ │ │ │ │ ├── kerberos_context.cc │ │ │ │ │ │ ├── kerberos_context.h │ │ │ │ │ │ ├── kerberosgss.c │ │ │ │ │ │ ├── kerberosgss.h │ │ │ │ │ │ ├── sspi.js │ │ │ │ │ │ ├── win32 │ │ │ │ │ │ │ ├── base64.c │ │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ │ ├── kerberos.cc │ │ │ │ │ │ │ ├── kerberos.h │ │ │ │ │ │ │ ├── kerberos_sspi.c │ │ │ │ │ │ │ ├── kerberos_sspi.h │ │ │ │ │ │ │ ├── worker.cc │ │ │ │ │ │ │ ├── worker.h │ │ │ │ │ │ │ └── wrappers │ │ │ │ │ │ │ │ ├── security_buffer.cc │ │ │ │ │ │ │ │ ├── security_buffer.h │ │ │ │ │ │ │ │ ├── security_buffer.js │ │ │ │ │ │ │ │ ├── security_buffer_descriptor.cc │ │ │ │ │ │ │ │ ├── security_buffer_descriptor.h │ │ │ │ │ │ │ │ ├── security_buffer_descriptor.js │ │ │ │ │ │ │ │ ├── security_context.cc │ │ │ │ │ │ │ │ ├── security_context.h │ │ │ │ │ │ │ │ ├── security_context.js │ │ │ │ │ │ │ │ ├── security_credentials.cc │ │ │ │ │ │ │ │ ├── security_credentials.h │ │ │ │ │ │ │ │ └── security_credentials.js │ │ │ │ │ │ ├── worker.cc │ │ │ │ │ │ └── worker.h │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── kerberos_tests.js │ │ │ │ │ │ ├── kerberos_win32_test.js │ │ │ │ │ │ └── win32 │ │ │ │ │ │ ├── security_buffer_descriptor_tests.js │ │ │ │ │ │ ├── security_buffer_tests.js │ │ │ │ │ │ └── security_credentials_tests.js │ │ │ │ ├── package.json │ │ │ │ └── t.js │ │ │ ├── mpath │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ ├── mpromise │ │ │ │ ├── .idea │ │ │ │ │ ├── .name │ │ │ │ │ ├── codeStyleSettings.xml │ │ │ │ │ ├── encodings.xml │ │ │ │ │ ├── inspectionProfiles │ │ │ │ │ │ ├── Project_Default.xml │ │ │ │ │ │ └── profiles_settings.xml │ │ │ │ │ ├── jsLibraryMappings.xml │ │ │ │ │ ├── libraries │ │ │ │ │ │ └── Node_js_Dependencies_for_mpromise.xml │ │ │ │ │ ├── misc.xml │ │ │ │ │ ├── modules.xml │ │ │ │ │ ├── mpromise.iml │ │ │ │ │ ├── other.xml │ │ │ │ │ ├── scopes │ │ │ │ │ │ └── scope_settings.xml │ │ │ │ │ ├── vcs.xml │ │ │ │ │ └── workspace.xml │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── promise.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── promise.domain.test.js │ │ │ │ │ ├── promise.test.js │ │ │ │ │ └── promises.Aplus.js │ │ │ ├── mquery │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── collection │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── node.js │ │ │ │ │ ├── env.js │ │ │ │ │ ├── mquery.js │ │ │ │ │ ├── permissions.js │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ └── debug │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── debug.js │ │ │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── collection │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── mongo.js │ │ │ │ │ └── node.js │ │ │ │ │ ├── env.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── utils.js │ │ │ │ │ └── utils.test.js │ │ │ ├── ms │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── ms.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ ├── support │ │ │ │ │ └── jquery.js │ │ │ │ │ └── test.js │ │ │ ├── muri │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ ├── regexp-clone │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ └── sliced │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── bench.js │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ └── sliced.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ └── index.js │ │ ├── package.json │ │ ├── release-items.md │ │ ├── static.js │ │ └── website.js │ ├── oauth2orize │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── errors │ │ │ │ ├── authorizationerror.js │ │ │ │ ├── badrequesterror.js │ │ │ │ ├── forbiddenerror.js │ │ │ │ └── tokenerror.js │ │ │ ├── exchange │ │ │ │ ├── authorizationCode.js │ │ │ │ ├── clientCredentials.js │ │ │ │ ├── password.js │ │ │ │ └── refreshToken.js │ │ │ ├── grant │ │ │ │ ├── code.js │ │ │ │ └── token.js │ │ │ ├── index.js │ │ │ ├── middleware │ │ │ │ ├── authorization.js │ │ │ │ ├── decision.js │ │ │ │ ├── errorHandler.js │ │ │ │ ├── token.js │ │ │ │ └── transactionLoader.js │ │ │ ├── server.js │ │ │ ├── unorderedlist.js │ │ │ └── utils.js │ │ ├── node_modules │ │ │ ├── debug │ │ │ │ ├── Readme.md │ │ │ │ ├── debug.js │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── debug.js │ │ │ │ └── package.json │ │ │ ├── uid2 │ │ │ │ ├── LICENSE │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── utils-merge │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ ├── passport-http-bearer │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── index.js │ │ │ └── strategy.js │ │ ├── node_modules │ │ │ └── passport-strategy │ │ │ │ ├── .jshintrc │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── strategy.js │ │ │ │ └── package.json │ │ └── package.json │ ├── passport-http │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── passport-http │ │ │ │ ├── index.js │ │ │ │ └── strategies │ │ │ │ ├── basic.js │ │ │ │ └── digest.js │ │ ├── node_modules │ │ │ ├── passport │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ └── passport │ │ │ │ │ │ ├── context │ │ │ │ │ │ └── http │ │ │ │ │ │ │ ├── actions.js │ │ │ │ │ │ │ └── context.js │ │ │ │ │ │ ├── http │ │ │ │ │ │ └── request.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── middleware │ │ │ │ │ │ ├── authenticate.js │ │ │ │ │ │ └── initialize.js │ │ │ │ │ │ ├── strategies │ │ │ │ │ │ └── session.js │ │ │ │ │ │ └── strategy.js │ │ │ │ ├── node_modules │ │ │ │ │ └── pause │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ └── pkginfo │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── docs │ │ │ │ ├── docco.css │ │ │ │ └── pkginfo.html │ │ │ │ ├── examples │ │ │ │ ├── all-properties.js │ │ │ │ ├── array-argument.js │ │ │ │ ├── multiple-properties.js │ │ │ │ ├── object-argument.js │ │ │ │ ├── package.json │ │ │ │ └── single-property.js │ │ │ │ ├── lib │ │ │ │ └── pkginfo.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ └── pkginfo-test.js │ │ └── package.json │ └── passport │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ ├── authenticator.js │ │ ├── errors │ │ │ └── authenticationerror.js │ │ ├── framework │ │ │ └── connect.js │ │ ├── http │ │ │ └── request.js │ │ ├── index.js │ │ ├── middleware │ │ │ ├── authenticate.js │ │ │ └── initialize.js │ │ └── strategies │ │ │ └── session.js │ │ ├── node_modules │ │ ├── passport-strategy │ │ │ ├── .jshintrc │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── strategy.js │ │ │ └── package.json │ │ └── pause │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ └── package.json ├── package.json ├── server.js └── views │ └── dialog.ejs ├── beerlocker-5 ├── controllers │ ├── auth.js │ ├── beer.js │ ├── client.js │ ├── oauth2.js │ └── user.js ├── models │ ├── beer.js │ ├── client.js │ ├── code.js │ ├── token.js │ └── user.js ├── node_modules │ ├── bcrypt-nodejs │ │ ├── .gitattributes │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bCrypt.js │ │ ├── package.json │ │ ├── test-async.js │ │ └── test-sync.js │ ├── body-parser │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── HISTORY.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── qs │ │ │ │ ├── .gitmodules │ │ │ │ ├── .npmignore │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── raw-body │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── bytes │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ └── type-is │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── HISTORY.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ └── mime │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── mime.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test.js │ │ │ │ │ └── types │ │ │ │ │ ├── mime.types │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ └── package.json │ ├── ejs │ │ ├── .gitmodules │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── History.md │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── benchmark.js │ │ ├── ejs.js │ │ ├── ejs.min.js │ │ ├── examples │ │ │ ├── client.html │ │ │ ├── functions.ejs │ │ │ ├── functions.js │ │ │ ├── list.ejs │ │ │ └── list.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── ejs.js │ │ │ ├── filters.js │ │ │ └── utils.js │ │ ├── package.json │ │ ├── support │ │ │ └── compile.js │ │ └── test │ │ │ ├── ejs.js │ │ │ └── fixtures │ │ │ ├── backslash.ejs │ │ │ ├── backslash.html │ │ │ ├── comments.ejs │ │ │ ├── comments.html │ │ │ ├── double-quote.ejs │ │ │ ├── double-quote.html │ │ │ ├── error.ejs │ │ │ ├── error.out │ │ │ ├── fail.ejs │ │ │ ├── include.css.ejs │ │ │ ├── include.css.html │ │ │ ├── include.ejs │ │ │ ├── include.html │ │ │ ├── includes │ │ │ ├── menu-item.ejs │ │ │ └── menu │ │ │ │ └── item.ejs │ │ │ ├── menu.ejs │ │ │ ├── menu.html │ │ │ ├── messed.ejs │ │ │ ├── messed.html │ │ │ ├── newlines.ejs │ │ │ ├── newlines.html │ │ │ ├── no.newlines.ejs │ │ │ ├── no.newlines.html │ │ │ ├── para.ejs │ │ │ ├── pet.ejs │ │ │ ├── single-quote.ejs │ │ │ ├── single-quote.html │ │ │ ├── style.css │ │ │ └── user.ejs │ ├── express-session │ │ ├── .npmignore │ │ ├── History.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── buffer-crc32 │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ └── crc.test.js │ │ │ ├── cookie-signature │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── cookie │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── debug │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── browser.js │ │ │ │ ├── component.json │ │ │ │ ├── debug.js │ │ │ │ ├── node.js │ │ │ │ ├── node_modules │ │ │ │ │ └── ms │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ ├── depd │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── on-headers │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── uid-safe │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── base64-url │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── mz │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── _promisify.js │ │ │ │ │ │ ├── _promisify_all.js │ │ │ │ │ │ ├── child_process.js │ │ │ │ │ │ ├── crypto.js │ │ │ │ │ │ ├── dns.js │ │ │ │ │ │ ├── fs.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── zlib.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ └── utils-merge │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── package.json │ │ └── session │ │ │ ├── cookie.js │ │ │ ├── memory.js │ │ │ ├── session.js │ │ │ └── store.js │ ├── express │ │ ├── .npmignore │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── 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 │ │ ├── node_modules │ │ │ ├── accepts │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ │ └── node.types │ │ │ │ │ └── negotiator │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── charset.js │ │ │ │ │ │ ├── encoding.js │ │ │ │ │ │ ├── language.js │ │ │ │ │ │ ├── mediaType.js │ │ │ │ │ │ └── negotiator.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── readme.md │ │ │ │ └── package.json │ │ │ ├── buffer-crc32 │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ └── crc.test.js │ │ │ ├── cookie-signature │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── cookie │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── debug │ │ │ │ ├── Readme.md │ │ │ │ ├── debug.js │ │ │ │ ├── lib │ │ │ │ │ └── debug.js │ │ │ │ └── package.json │ │ │ ├── escape-html │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── fresh │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── merge-descriptors │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── methods │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── parseurl │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── path-to-regexp │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── qs │ │ │ │ ├── .gitmodules │ │ │ │ ├── .npmignore │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── range-parser │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── send │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── send.js │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── debug.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ │ ├── serve-static │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── type-is │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── HISTORY.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ │ └── utils-merge │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ ├── mongoose │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── History.md │ │ ├── README.md │ │ ├── contRun.sh │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── aggregate │ │ │ │ ├── aggregate.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── doc-methods.js │ │ │ ├── express │ │ │ │ ├── README.md │ │ │ │ └── connection-sharing │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app.js │ │ │ │ │ ├── modelA.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── routes.js │ │ │ ├── geospatial │ │ │ │ ├── geoJSONSchema.js │ │ │ │ ├── geoJSONexample.js │ │ │ │ ├── geospatial.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── globalschemas │ │ │ │ ├── gs_example.js │ │ │ │ └── person.js │ │ │ ├── lean │ │ │ │ ├── lean.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── mapreduce │ │ │ │ ├── mapreduce.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── population │ │ │ │ ├── population-across-three-collections.js │ │ │ │ ├── population-basic.js │ │ │ │ ├── population-of-existing-doc.js │ │ │ │ ├── population-of-multiple-existing-docs.js │ │ │ │ ├── population-options.js │ │ │ │ └── population-plain-objects.js │ │ │ ├── promises │ │ │ │ ├── package.json │ │ │ │ ├── person.js │ │ │ │ └── promise.js │ │ │ ├── querybuilder │ │ │ │ ├── package.json │ │ │ │ ├── person.js │ │ │ │ └── querybuilder.js │ │ │ ├── replicasets │ │ │ │ ├── package.json │ │ │ │ ├── person.js │ │ │ │ └── replica-sets.js │ │ │ ├── schema │ │ │ │ ├── schema.js │ │ │ │ └── storing-schemas-as-json │ │ │ │ │ ├── index.js │ │ │ │ │ └── schema.json │ │ │ └── statics │ │ │ │ ├── person.js │ │ │ │ └── statics.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── aggregate.js │ │ │ ├── collection.js │ │ │ ├── connection.js │ │ │ ├── connectionstate.js │ │ │ ├── document.js │ │ │ ├── drivers │ │ │ │ ├── SPEC.md │ │ │ │ └── node-mongodb-native │ │ │ │ │ ├── binary.js │ │ │ │ │ ├── collection.js │ │ │ │ │ ├── connection.js │ │ │ │ │ └── objectid.js │ │ │ ├── error.js │ │ │ ├── error │ │ │ │ ├── cast.js │ │ │ │ ├── divergentArray.js │ │ │ │ ├── messages.js │ │ │ │ ├── missingSchema.js │ │ │ │ ├── overwriteModel.js │ │ │ │ ├── validation.js │ │ │ │ ├── validator.js │ │ │ │ └── version.js │ │ │ ├── index.js │ │ │ ├── internal.js │ │ │ ├── model.js │ │ │ ├── promise.js │ │ │ ├── query.js │ │ │ ├── queryhelpers.js │ │ │ ├── querystream.js │ │ │ ├── schema.js │ │ │ ├── schema │ │ │ │ ├── array.js │ │ │ │ ├── boolean.js │ │ │ │ ├── buffer.js │ │ │ │ ├── date.js │ │ │ │ ├── documentarray.js │ │ │ │ ├── index.js │ │ │ │ ├── mixed.js │ │ │ │ ├── number.js │ │ │ │ ├── objectid.js │ │ │ │ └── string.js │ │ │ ├── schemadefault.js │ │ │ ├── schematype.js │ │ │ ├── statemachine.js │ │ │ ├── types │ │ │ │ ├── array.js │ │ │ │ ├── buffer.js │ │ │ │ ├── documentarray.js │ │ │ │ ├── embedded.js │ │ │ │ ├── index.js │ │ │ │ └── objectid.js │ │ │ ├── utils.js │ │ │ └── virtualtype.js │ │ ├── node_modules │ │ │ ├── hooks │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── hooks.alt.js │ │ │ │ ├── hooks.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── mongodb │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── mongodb │ │ │ │ │ │ ├── admin.js │ │ │ │ │ │ ├── aggregation_cursor.js │ │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── mongodb_cr.js │ │ │ │ │ │ ├── mongodb_gssapi.js │ │ │ │ │ │ ├── mongodb_plain.js │ │ │ │ │ │ ├── mongodb_sspi.js │ │ │ │ │ │ └── mongodb_x509.js │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── collection │ │ │ │ │ │ ├── aggregation.js │ │ │ │ │ │ ├── commands.js │ │ │ │ │ │ ├── core.js │ │ │ │ │ │ ├── geo.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── query.js │ │ │ │ │ │ └── shared.js │ │ │ │ │ │ ├── command_cursor.js │ │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── base_command.js │ │ │ │ │ │ ├── db_command.js │ │ │ │ │ │ ├── delete_command.js │ │ │ │ │ │ ├── get_more_command.js │ │ │ │ │ │ ├── insert_command.js │ │ │ │ │ │ ├── kill_cursor_command.js │ │ │ │ │ │ ├── query_command.js │ │ │ │ │ │ └── update_command.js │ │ │ │ │ │ ├── connection │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── connection.js │ │ │ │ │ │ ├── connection_pool.js │ │ │ │ │ │ ├── connection_utils.js │ │ │ │ │ │ ├── mongos.js │ │ │ │ │ │ ├── read_preference.js │ │ │ │ │ │ ├── repl_set │ │ │ │ │ │ │ ├── ha.js │ │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ │ ├── repl_set.js │ │ │ │ │ │ │ ├── repl_set_state.js │ │ │ │ │ │ │ └── strategies │ │ │ │ │ │ │ │ ├── ping_strategy.js │ │ │ │ │ │ │ │ └── statistics_strategy.js │ │ │ │ │ │ ├── server.js │ │ │ │ │ │ ├── server_capabilities.js │ │ │ │ │ │ └── url_parser.js │ │ │ │ │ │ ├── cursor.js │ │ │ │ │ │ ├── cursorstream.js │ │ │ │ │ │ ├── db.js │ │ │ │ │ │ ├── gridfs │ │ │ │ │ │ ├── chunk.js │ │ │ │ │ │ ├── grid.js │ │ │ │ │ │ ├── gridstore.js │ │ │ │ │ │ └── readstream.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── mongo_client.js │ │ │ │ │ │ ├── responses │ │ │ │ │ │ └── mongo_reply.js │ │ │ │ │ │ ├── scope.js │ │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── bson │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── binding.gyp │ │ │ │ │ │ ├── browser_build │ │ │ │ │ │ │ ├── bson.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ │ ├── bson.node.d │ │ │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ │ │ └── bson.o.d │ │ │ │ │ │ │ │ ├── bson.node │ │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ │ └── bson.o │ │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ │ ├── bson.target.mk │ │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ │ └── gyp-mac-tool │ │ │ │ │ │ ├── build_browser.js │ │ │ │ │ │ ├── builderror.log │ │ │ │ │ │ ├── ext │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── bson.cc │ │ │ │ │ │ │ ├── bson.h │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── nan.h │ │ │ │ │ │ │ ├── win32 │ │ │ │ │ │ │ │ ├── ia32 │ │ │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ │ │ └── x64 │ │ │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ │ └── wscript │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ ├── binary.js │ │ │ │ │ │ │ │ ├── binary_parser.js │ │ │ │ │ │ │ │ ├── bson.js │ │ │ │ │ │ │ │ ├── code.js │ │ │ │ │ │ │ │ ├── db_ref.js │ │ │ │ │ │ │ │ ├── double.js │ │ │ │ │ │ │ │ ├── float_parser.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── long.js │ │ │ │ │ │ │ │ ├── max_key.js │ │ │ │ │ │ │ │ ├── min_key.js │ │ │ │ │ │ │ │ ├── objectid.js │ │ │ │ │ │ │ │ ├── symbol.js │ │ │ │ │ │ │ │ └── timestamp.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── tools │ │ │ │ │ │ │ ├── gleak.js │ │ │ │ │ │ │ └── jasmine-1.1.0 │ │ │ │ │ │ │ ├── MIT.LICENSE │ │ │ │ │ │ │ ├── jasmine-html.js │ │ │ │ │ │ │ ├── jasmine.css │ │ │ │ │ │ │ ├── jasmine.js │ │ │ │ │ │ │ └── jasmine_favicon.png │ │ │ │ │ └── kerberos │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── binding.gyp │ │ │ │ │ │ ├── build │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ ├── kerberos.node.d │ │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ └── kerberos │ │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ │ ├── base64.o.d │ │ │ │ │ │ │ │ │ ├── kerberos.o.d │ │ │ │ │ │ │ │ │ ├── kerberos_context.o.d │ │ │ │ │ │ │ │ │ ├── kerberosgss.o.d │ │ │ │ │ │ │ │ │ └── worker.o.d │ │ │ │ │ │ │ ├── kerberos.node │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ └── kerberos │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ ├── base64.o │ │ │ │ │ │ │ │ ├── kerberos.o │ │ │ │ │ │ │ │ ├── kerberos_context.o │ │ │ │ │ │ │ │ ├── kerberosgss.o │ │ │ │ │ │ │ │ └── worker.o │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ ├── gyp-mac-tool │ │ │ │ │ │ └── kerberos.target.mk │ │ │ │ │ │ ├── builderror.log │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── auth_processes │ │ │ │ │ │ │ └── mongodb.js │ │ │ │ │ │ ├── base64.c │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ ├── kerberos.cc │ │ │ │ │ │ ├── kerberos.h │ │ │ │ │ │ ├── kerberos.js │ │ │ │ │ │ ├── kerberos_context.cc │ │ │ │ │ │ ├── kerberos_context.h │ │ │ │ │ │ ├── kerberosgss.c │ │ │ │ │ │ ├── kerberosgss.h │ │ │ │ │ │ ├── sspi.js │ │ │ │ │ │ ├── win32 │ │ │ │ │ │ │ ├── base64.c │ │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ │ ├── kerberos.cc │ │ │ │ │ │ │ ├── kerberos.h │ │ │ │ │ │ │ ├── kerberos_sspi.c │ │ │ │ │ │ │ ├── kerberos_sspi.h │ │ │ │ │ │ │ ├── worker.cc │ │ │ │ │ │ │ ├── worker.h │ │ │ │ │ │ │ └── wrappers │ │ │ │ │ │ │ │ ├── security_buffer.cc │ │ │ │ │ │ │ │ ├── security_buffer.h │ │ │ │ │ │ │ │ ├── security_buffer.js │ │ │ │ │ │ │ │ ├── security_buffer_descriptor.cc │ │ │ │ │ │ │ │ ├── security_buffer_descriptor.h │ │ │ │ │ │ │ │ ├── security_buffer_descriptor.js │ │ │ │ │ │ │ │ ├── security_context.cc │ │ │ │ │ │ │ │ ├── security_context.h │ │ │ │ │ │ │ │ ├── security_context.js │ │ │ │ │ │ │ │ ├── security_credentials.cc │ │ │ │ │ │ │ │ ├── security_credentials.h │ │ │ │ │ │ │ │ └── security_credentials.js │ │ │ │ │ │ ├── worker.cc │ │ │ │ │ │ └── worker.h │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── kerberos_tests.js │ │ │ │ │ │ ├── kerberos_win32_test.js │ │ │ │ │ │ └── win32 │ │ │ │ │ │ ├── security_buffer_descriptor_tests.js │ │ │ │ │ │ ├── security_buffer_tests.js │ │ │ │ │ │ └── security_credentials_tests.js │ │ │ │ ├── package.json │ │ │ │ └── t.js │ │ │ ├── mpath │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ ├── mpromise │ │ │ │ ├── .idea │ │ │ │ │ ├── .name │ │ │ │ │ ├── codeStyleSettings.xml │ │ │ │ │ ├── encodings.xml │ │ │ │ │ ├── inspectionProfiles │ │ │ │ │ │ ├── Project_Default.xml │ │ │ │ │ │ └── profiles_settings.xml │ │ │ │ │ ├── jsLibraryMappings.xml │ │ │ │ │ ├── libraries │ │ │ │ │ │ └── Node_js_Dependencies_for_mpromise.xml │ │ │ │ │ ├── misc.xml │ │ │ │ │ ├── modules.xml │ │ │ │ │ ├── mpromise.iml │ │ │ │ │ ├── other.xml │ │ │ │ │ ├── scopes │ │ │ │ │ │ └── scope_settings.xml │ │ │ │ │ ├── vcs.xml │ │ │ │ │ └── workspace.xml │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── promise.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── promise.domain.test.js │ │ │ │ │ ├── promise.test.js │ │ │ │ │ └── promises.Aplus.js │ │ │ ├── mquery │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── collection │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── node.js │ │ │ │ │ ├── env.js │ │ │ │ │ ├── mquery.js │ │ │ │ │ ├── permissions.js │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ └── debug │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── debug.js │ │ │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── collection │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── mongo.js │ │ │ │ │ └── node.js │ │ │ │ │ ├── env.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── utils.js │ │ │ │ │ └── utils.test.js │ │ │ ├── ms │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── ms.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ ├── support │ │ │ │ │ └── jquery.js │ │ │ │ │ └── test.js │ │ │ ├── muri │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ ├── regexp-clone │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ └── sliced │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── bench.js │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ └── sliced.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ └── index.js │ │ ├── package.json │ │ ├── release-items.md │ │ ├── static.js │ │ └── website.js │ ├── oauth2orize │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── errors │ │ │ │ ├── authorizationerror.js │ │ │ │ ├── badrequesterror.js │ │ │ │ ├── forbiddenerror.js │ │ │ │ └── tokenerror.js │ │ │ ├── exchange │ │ │ │ ├── authorizationCode.js │ │ │ │ ├── clientCredentials.js │ │ │ │ ├── password.js │ │ │ │ └── refreshToken.js │ │ │ ├── grant │ │ │ │ ├── code.js │ │ │ │ └── token.js │ │ │ ├── index.js │ │ │ ├── middleware │ │ │ │ ├── authorization.js │ │ │ │ ├── decision.js │ │ │ │ ├── errorHandler.js │ │ │ │ ├── token.js │ │ │ │ └── transactionLoader.js │ │ │ ├── server.js │ │ │ ├── unorderedlist.js │ │ │ └── utils.js │ │ ├── node_modules │ │ │ ├── debug │ │ │ │ ├── Readme.md │ │ │ │ ├── debug.js │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── debug.js │ │ │ │ └── package.json │ │ │ ├── uid2 │ │ │ │ ├── LICENSE │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── utils-merge │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ ├── passport-http-bearer │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── index.js │ │ │ └── strategy.js │ │ ├── node_modules │ │ │ └── passport-strategy │ │ │ │ ├── .jshintrc │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── strategy.js │ │ │ │ └── package.json │ │ └── package.json │ ├── passport-http │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── passport-http │ │ │ │ ├── index.js │ │ │ │ └── strategies │ │ │ │ ├── basic.js │ │ │ │ └── digest.js │ │ ├── node_modules │ │ │ ├── passport │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ └── passport │ │ │ │ │ │ ├── context │ │ │ │ │ │ └── http │ │ │ │ │ │ │ ├── actions.js │ │ │ │ │ │ │ └── context.js │ │ │ │ │ │ ├── http │ │ │ │ │ │ └── request.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── middleware │ │ │ │ │ │ ├── authenticate.js │ │ │ │ │ │ └── initialize.js │ │ │ │ │ │ ├── strategies │ │ │ │ │ │ └── session.js │ │ │ │ │ │ └── strategy.js │ │ │ │ ├── node_modules │ │ │ │ │ └── pause │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ └── pkginfo │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── docs │ │ │ │ ├── docco.css │ │ │ │ └── pkginfo.html │ │ │ │ ├── examples │ │ │ │ ├── all-properties.js │ │ │ │ ├── array-argument.js │ │ │ │ ├── multiple-properties.js │ │ │ │ ├── object-argument.js │ │ │ │ ├── package.json │ │ │ │ └── single-property.js │ │ │ │ ├── lib │ │ │ │ └── pkginfo.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ └── pkginfo-test.js │ │ └── package.json │ └── passport │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ ├── authenticator.js │ │ ├── errors │ │ │ └── authenticationerror.js │ │ ├── framework │ │ │ └── connect.js │ │ ├── http │ │ │ └── request.js │ │ ├── index.js │ │ ├── middleware │ │ │ ├── authenticate.js │ │ │ └── initialize.js │ │ └── strategies │ │ │ └── session.js │ │ ├── node_modules │ │ ├── passport-strategy │ │ │ ├── .jshintrc │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── strategy.js │ │ │ └── package.json │ │ └── pause │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ └── package.json ├── package.json ├── server.js └── views │ └── dialog.ejs ├── beerlocker-6.1 ├── controllers │ ├── auth.js │ ├── beer.js │ ├── client.js │ ├── oauth2.js │ └── user.js ├── models │ ├── beer.js │ ├── client.js │ ├── code.js │ ├── token.js │ └── user.js ├── node_modules │ ├── bcrypt-nodejs │ │ ├── .gitattributes │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bCrypt.js │ │ ├── package.json │ │ ├── test-async.js │ │ └── test-sync.js │ ├── body-parser │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── HISTORY.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── qs │ │ │ │ ├── .gitmodules │ │ │ │ ├── .npmignore │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── raw-body │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── bytes │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ └── type-is │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── HISTORY.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ └── mime │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── mime.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test.js │ │ │ │ │ └── types │ │ │ │ │ ├── mime.types │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ └── package.json │ ├── ejs │ │ ├── .gitmodules │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── History.md │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── benchmark.js │ │ ├── ejs.js │ │ ├── ejs.min.js │ │ ├── examples │ │ │ ├── client.html │ │ │ ├── functions.ejs │ │ │ ├── functions.js │ │ │ ├── list.ejs │ │ │ └── list.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── ejs.js │ │ │ ├── filters.js │ │ │ └── utils.js │ │ ├── package.json │ │ ├── support │ │ │ └── compile.js │ │ └── test │ │ │ ├── ejs.js │ │ │ └── fixtures │ │ │ ├── backslash.ejs │ │ │ ├── backslash.html │ │ │ ├── comments.ejs │ │ │ ├── comments.html │ │ │ ├── double-quote.ejs │ │ │ ├── double-quote.html │ │ │ ├── error.ejs │ │ │ ├── error.out │ │ │ ├── fail.ejs │ │ │ ├── include.css.ejs │ │ │ ├── include.css.html │ │ │ ├── include.ejs │ │ │ ├── include.html │ │ │ ├── includes │ │ │ ├── menu-item.ejs │ │ │ └── menu │ │ │ │ └── item.ejs │ │ │ ├── menu.ejs │ │ │ ├── menu.html │ │ │ ├── messed.ejs │ │ │ ├── messed.html │ │ │ ├── newlines.ejs │ │ │ ├── newlines.html │ │ │ ├── no.newlines.ejs │ │ │ ├── no.newlines.html │ │ │ ├── para.ejs │ │ │ ├── pet.ejs │ │ │ ├── single-quote.ejs │ │ │ ├── single-quote.html │ │ │ ├── style.css │ │ │ └── user.ejs │ ├── express-session │ │ ├── .npmignore │ │ ├── History.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── buffer-crc32 │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ └── crc.test.js │ │ │ ├── cookie-signature │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── cookie │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── debug │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── browser.js │ │ │ │ ├── component.json │ │ │ │ ├── debug.js │ │ │ │ ├── node.js │ │ │ │ ├── node_modules │ │ │ │ │ └── ms │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ ├── depd │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── on-headers │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── uid-safe │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── base64-url │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── mz │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── _promisify.js │ │ │ │ │ │ ├── _promisify_all.js │ │ │ │ │ │ ├── child_process.js │ │ │ │ │ │ ├── crypto.js │ │ │ │ │ │ ├── dns.js │ │ │ │ │ │ ├── fs.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── zlib.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ └── utils-merge │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── package.json │ │ └── session │ │ │ ├── cookie.js │ │ │ ├── memory.js │ │ │ ├── session.js │ │ │ └── store.js │ ├── express │ │ ├── .npmignore │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── 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 │ │ ├── node_modules │ │ │ ├── accepts │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ │ └── node.types │ │ │ │ │ └── negotiator │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── charset.js │ │ │ │ │ │ ├── encoding.js │ │ │ │ │ │ ├── language.js │ │ │ │ │ │ ├── mediaType.js │ │ │ │ │ │ └── negotiator.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── readme.md │ │ │ │ └── package.json │ │ │ ├── buffer-crc32 │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ └── crc.test.js │ │ │ ├── cookie-signature │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── cookie │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── debug │ │ │ │ ├── Readme.md │ │ │ │ ├── debug.js │ │ │ │ ├── lib │ │ │ │ │ └── debug.js │ │ │ │ └── package.json │ │ │ ├── escape-html │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── fresh │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── merge-descriptors │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── methods │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── parseurl │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── path-to-regexp │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── qs │ │ │ │ ├── .gitmodules │ │ │ │ ├── .npmignore │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── range-parser │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── send │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── send.js │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── debug.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ │ ├── serve-static │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── type-is │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── HISTORY.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ │ └── utils-merge │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ ├── mongoose │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── History.md │ │ ├── README.md │ │ ├── contRun.sh │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── aggregate │ │ │ │ ├── aggregate.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── doc-methods.js │ │ │ ├── express │ │ │ │ ├── README.md │ │ │ │ └── connection-sharing │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app.js │ │ │ │ │ ├── modelA.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── routes.js │ │ │ ├── geospatial │ │ │ │ ├── geoJSONSchema.js │ │ │ │ ├── geoJSONexample.js │ │ │ │ ├── geospatial.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── globalschemas │ │ │ │ ├── gs_example.js │ │ │ │ └── person.js │ │ │ ├── lean │ │ │ │ ├── lean.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── mapreduce │ │ │ │ ├── mapreduce.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── population │ │ │ │ ├── population-across-three-collections.js │ │ │ │ ├── population-basic.js │ │ │ │ ├── population-of-existing-doc.js │ │ │ │ ├── population-of-multiple-existing-docs.js │ │ │ │ ├── population-options.js │ │ │ │ └── population-plain-objects.js │ │ │ ├── promises │ │ │ │ ├── package.json │ │ │ │ ├── person.js │ │ │ │ └── promise.js │ │ │ ├── querybuilder │ │ │ │ ├── package.json │ │ │ │ ├── person.js │ │ │ │ └── querybuilder.js │ │ │ ├── replicasets │ │ │ │ ├── package.json │ │ │ │ ├── person.js │ │ │ │ └── replica-sets.js │ │ │ ├── schema │ │ │ │ ├── schema.js │ │ │ │ └── storing-schemas-as-json │ │ │ │ │ ├── index.js │ │ │ │ │ └── schema.json │ │ │ └── statics │ │ │ │ ├── person.js │ │ │ │ └── statics.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── aggregate.js │ │ │ ├── collection.js │ │ │ ├── connection.js │ │ │ ├── connectionstate.js │ │ │ ├── document.js │ │ │ ├── drivers │ │ │ │ ├── SPEC.md │ │ │ │ └── node-mongodb-native │ │ │ │ │ ├── binary.js │ │ │ │ │ ├── collection.js │ │ │ │ │ ├── connection.js │ │ │ │ │ └── objectid.js │ │ │ ├── error.js │ │ │ ├── error │ │ │ │ ├── cast.js │ │ │ │ ├── divergentArray.js │ │ │ │ ├── messages.js │ │ │ │ ├── missingSchema.js │ │ │ │ ├── overwriteModel.js │ │ │ │ ├── validation.js │ │ │ │ ├── validator.js │ │ │ │ └── version.js │ │ │ ├── index.js │ │ │ ├── internal.js │ │ │ ├── model.js │ │ │ ├── promise.js │ │ │ ├── query.js │ │ │ ├── queryhelpers.js │ │ │ ├── querystream.js │ │ │ ├── schema.js │ │ │ ├── schema │ │ │ │ ├── array.js │ │ │ │ ├── boolean.js │ │ │ │ ├── buffer.js │ │ │ │ ├── date.js │ │ │ │ ├── documentarray.js │ │ │ │ ├── index.js │ │ │ │ ├── mixed.js │ │ │ │ ├── number.js │ │ │ │ ├── objectid.js │ │ │ │ └── string.js │ │ │ ├── schemadefault.js │ │ │ ├── schematype.js │ │ │ ├── statemachine.js │ │ │ ├── types │ │ │ │ ├── array.js │ │ │ │ ├── buffer.js │ │ │ │ ├── documentarray.js │ │ │ │ ├── embedded.js │ │ │ │ ├── index.js │ │ │ │ └── objectid.js │ │ │ ├── utils.js │ │ │ └── virtualtype.js │ │ ├── node_modules │ │ │ ├── hooks │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── hooks.alt.js │ │ │ │ ├── hooks.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── mongodb │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── mongodb │ │ │ │ │ │ ├── admin.js │ │ │ │ │ │ ├── aggregation_cursor.js │ │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── mongodb_cr.js │ │ │ │ │ │ ├── mongodb_gssapi.js │ │ │ │ │ │ ├── mongodb_plain.js │ │ │ │ │ │ ├── mongodb_sspi.js │ │ │ │ │ │ └── mongodb_x509.js │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── collection │ │ │ │ │ │ ├── aggregation.js │ │ │ │ │ │ ├── commands.js │ │ │ │ │ │ ├── core.js │ │ │ │ │ │ ├── geo.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── query.js │ │ │ │ │ │ └── shared.js │ │ │ │ │ │ ├── command_cursor.js │ │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── base_command.js │ │ │ │ │ │ ├── db_command.js │ │ │ │ │ │ ├── delete_command.js │ │ │ │ │ │ ├── get_more_command.js │ │ │ │ │ │ ├── insert_command.js │ │ │ │ │ │ ├── kill_cursor_command.js │ │ │ │ │ │ ├── query_command.js │ │ │ │ │ │ └── update_command.js │ │ │ │ │ │ ├── connection │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── connection.js │ │ │ │ │ │ ├── connection_pool.js │ │ │ │ │ │ ├── connection_utils.js │ │ │ │ │ │ ├── mongos.js │ │ │ │ │ │ ├── read_preference.js │ │ │ │ │ │ ├── repl_set │ │ │ │ │ │ │ ├── ha.js │ │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ │ ├── repl_set.js │ │ │ │ │ │ │ ├── repl_set_state.js │ │ │ │ │ │ │ └── strategies │ │ │ │ │ │ │ │ ├── ping_strategy.js │ │ │ │ │ │ │ │ └── statistics_strategy.js │ │ │ │ │ │ ├── server.js │ │ │ │ │ │ ├── server_capabilities.js │ │ │ │ │ │ └── url_parser.js │ │ │ │ │ │ ├── cursor.js │ │ │ │ │ │ ├── cursorstream.js │ │ │ │ │ │ ├── db.js │ │ │ │ │ │ ├── gridfs │ │ │ │ │ │ ├── chunk.js │ │ │ │ │ │ ├── grid.js │ │ │ │ │ │ ├── gridstore.js │ │ │ │ │ │ └── readstream.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── mongo_client.js │ │ │ │ │ │ ├── responses │ │ │ │ │ │ └── mongo_reply.js │ │ │ │ │ │ ├── scope.js │ │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── bson │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── binding.gyp │ │ │ │ │ │ ├── browser_build │ │ │ │ │ │ │ ├── bson.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ │ ├── bson.node.d │ │ │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ │ │ └── bson.o.d │ │ │ │ │ │ │ │ ├── bson.node │ │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ │ └── bson.o │ │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ │ ├── bson.target.mk │ │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ │ └── gyp-mac-tool │ │ │ │ │ │ ├── build_browser.js │ │ │ │ │ │ ├── builderror.log │ │ │ │ │ │ ├── ext │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── bson.cc │ │ │ │ │ │ │ ├── bson.h │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── nan.h │ │ │ │ │ │ │ ├── win32 │ │ │ │ │ │ │ │ ├── ia32 │ │ │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ │ │ └── x64 │ │ │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ │ └── wscript │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ ├── binary.js │ │ │ │ │ │ │ │ ├── binary_parser.js │ │ │ │ │ │ │ │ ├── bson.js │ │ │ │ │ │ │ │ ├── code.js │ │ │ │ │ │ │ │ ├── db_ref.js │ │ │ │ │ │ │ │ ├── double.js │ │ │ │ │ │ │ │ ├── float_parser.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── long.js │ │ │ │ │ │ │ │ ├── max_key.js │ │ │ │ │ │ │ │ ├── min_key.js │ │ │ │ │ │ │ │ ├── objectid.js │ │ │ │ │ │ │ │ ├── symbol.js │ │ │ │ │ │ │ │ └── timestamp.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── tools │ │ │ │ │ │ │ ├── gleak.js │ │ │ │ │ │ │ └── jasmine-1.1.0 │ │ │ │ │ │ │ ├── MIT.LICENSE │ │ │ │ │ │ │ ├── jasmine-html.js │ │ │ │ │ │ │ ├── jasmine.css │ │ │ │ │ │ │ ├── jasmine.js │ │ │ │ │ │ │ └── jasmine_favicon.png │ │ │ │ │ └── kerberos │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── binding.gyp │ │ │ │ │ │ ├── build │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ ├── kerberos.node.d │ │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ └── kerberos │ │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ │ ├── base64.o.d │ │ │ │ │ │ │ │ │ ├── kerberos.o.d │ │ │ │ │ │ │ │ │ ├── kerberos_context.o.d │ │ │ │ │ │ │ │ │ ├── kerberosgss.o.d │ │ │ │ │ │ │ │ │ └── worker.o.d │ │ │ │ │ │ │ ├── kerberos.node │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ └── kerberos │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ ├── base64.o │ │ │ │ │ │ │ │ ├── kerberos.o │ │ │ │ │ │ │ │ ├── kerberos_context.o │ │ │ │ │ │ │ │ ├── kerberosgss.o │ │ │ │ │ │ │ │ └── worker.o │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ ├── gyp-mac-tool │ │ │ │ │ │ └── kerberos.target.mk │ │ │ │ │ │ ├── builderror.log │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── auth_processes │ │ │ │ │ │ │ └── mongodb.js │ │ │ │ │ │ ├── base64.c │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ ├── kerberos.cc │ │ │ │ │ │ ├── kerberos.h │ │ │ │ │ │ ├── kerberos.js │ │ │ │ │ │ ├── kerberos_context.cc │ │ │ │ │ │ ├── kerberos_context.h │ │ │ │ │ │ ├── kerberosgss.c │ │ │ │ │ │ ├── kerberosgss.h │ │ │ │ │ │ ├── sspi.js │ │ │ │ │ │ ├── win32 │ │ │ │ │ │ │ ├── base64.c │ │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ │ ├── kerberos.cc │ │ │ │ │ │ │ ├── kerberos.h │ │ │ │ │ │ │ ├── kerberos_sspi.c │ │ │ │ │ │ │ ├── kerberos_sspi.h │ │ │ │ │ │ │ ├── worker.cc │ │ │ │ │ │ │ ├── worker.h │ │ │ │ │ │ │ └── wrappers │ │ │ │ │ │ │ │ ├── security_buffer.cc │ │ │ │ │ │ │ │ ├── security_buffer.h │ │ │ │ │ │ │ │ ├── security_buffer.js │ │ │ │ │ │ │ │ ├── security_buffer_descriptor.cc │ │ │ │ │ │ │ │ ├── security_buffer_descriptor.h │ │ │ │ │ │ │ │ ├── security_buffer_descriptor.js │ │ │ │ │ │ │ │ ├── security_context.cc │ │ │ │ │ │ │ │ ├── security_context.h │ │ │ │ │ │ │ │ ├── security_context.js │ │ │ │ │ │ │ │ ├── security_credentials.cc │ │ │ │ │ │ │ │ ├── security_credentials.h │ │ │ │ │ │ │ │ └── security_credentials.js │ │ │ │ │ │ ├── worker.cc │ │ │ │ │ │ └── worker.h │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── kerberos_tests.js │ │ │ │ │ │ ├── kerberos_win32_test.js │ │ │ │ │ │ └── win32 │ │ │ │ │ │ ├── security_buffer_descriptor_tests.js │ │ │ │ │ │ ├── security_buffer_tests.js │ │ │ │ │ │ └── security_credentials_tests.js │ │ │ │ ├── package.json │ │ │ │ └── t.js │ │ │ ├── mpath │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ ├── mpromise │ │ │ │ ├── .idea │ │ │ │ │ ├── .name │ │ │ │ │ ├── codeStyleSettings.xml │ │ │ │ │ ├── encodings.xml │ │ │ │ │ ├── inspectionProfiles │ │ │ │ │ │ ├── Project_Default.xml │ │ │ │ │ │ └── profiles_settings.xml │ │ │ │ │ ├── jsLibraryMappings.xml │ │ │ │ │ ├── libraries │ │ │ │ │ │ └── Node_js_Dependencies_for_mpromise.xml │ │ │ │ │ ├── misc.xml │ │ │ │ │ ├── modules.xml │ │ │ │ │ ├── mpromise.iml │ │ │ │ │ ├── other.xml │ │ │ │ │ ├── scopes │ │ │ │ │ │ └── scope_settings.xml │ │ │ │ │ ├── vcs.xml │ │ │ │ │ └── workspace.xml │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── promise.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── promise.domain.test.js │ │ │ │ │ ├── promise.test.js │ │ │ │ │ └── promises.Aplus.js │ │ │ ├── mquery │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── collection │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── node.js │ │ │ │ │ ├── env.js │ │ │ │ │ ├── mquery.js │ │ │ │ │ ├── permissions.js │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ └── debug │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── debug.js │ │ │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── collection │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── mongo.js │ │ │ │ │ └── node.js │ │ │ │ │ ├── env.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── utils.js │ │ │ │ │ └── utils.test.js │ │ │ ├── ms │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── ms.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ ├── support │ │ │ │ │ └── jquery.js │ │ │ │ │ └── test.js │ │ │ ├── muri │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ ├── regexp-clone │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ └── sliced │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── bench.js │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ └── sliced.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ └── index.js │ │ ├── package.json │ │ ├── release-items.md │ │ ├── static.js │ │ └── website.js │ ├── oauth2orize │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── errors │ │ │ │ ├── authorizationerror.js │ │ │ │ ├── badrequesterror.js │ │ │ │ ├── forbiddenerror.js │ │ │ │ └── tokenerror.js │ │ │ ├── exchange │ │ │ │ ├── authorizationCode.js │ │ │ │ ├── clientCredentials.js │ │ │ │ ├── password.js │ │ │ │ └── refreshToken.js │ │ │ ├── grant │ │ │ │ ├── code.js │ │ │ │ └── token.js │ │ │ ├── index.js │ │ │ ├── middleware │ │ │ │ ├── authorization.js │ │ │ │ ├── decision.js │ │ │ │ ├── errorHandler.js │ │ │ │ ├── token.js │ │ │ │ └── transactionLoader.js │ │ │ ├── server.js │ │ │ ├── unorderedlist.js │ │ │ └── utils.js │ │ ├── node_modules │ │ │ ├── debug │ │ │ │ ├── Readme.md │ │ │ │ ├── debug.js │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── debug.js │ │ │ │ └── package.json │ │ │ ├── uid2 │ │ │ │ ├── LICENSE │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── utils-merge │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ ├── passport-http-bearer │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── index.js │ │ │ └── strategy.js │ │ ├── node_modules │ │ │ └── passport-strategy │ │ │ │ ├── .jshintrc │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── strategy.js │ │ │ │ └── package.json │ │ └── package.json │ ├── passport-http │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── passport-http │ │ │ │ ├── index.js │ │ │ │ └── strategies │ │ │ │ ├── basic.js │ │ │ │ └── digest.js │ │ ├── node_modules │ │ │ ├── passport │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ └── passport │ │ │ │ │ │ ├── context │ │ │ │ │ │ └── http │ │ │ │ │ │ │ ├── actions.js │ │ │ │ │ │ │ └── context.js │ │ │ │ │ │ ├── http │ │ │ │ │ │ └── request.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── middleware │ │ │ │ │ │ ├── authenticate.js │ │ │ │ │ │ └── initialize.js │ │ │ │ │ │ ├── strategies │ │ │ │ │ │ └── session.js │ │ │ │ │ │ └── strategy.js │ │ │ │ ├── node_modules │ │ │ │ │ └── pause │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ └── pkginfo │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── docs │ │ │ │ ├── docco.css │ │ │ │ └── pkginfo.html │ │ │ │ ├── examples │ │ │ │ ├── all-properties.js │ │ │ │ ├── array-argument.js │ │ │ │ ├── multiple-properties.js │ │ │ │ ├── object-argument.js │ │ │ │ ├── package.json │ │ │ │ └── single-property.js │ │ │ │ ├── lib │ │ │ │ └── pkginfo.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ └── pkginfo-test.js │ │ └── package.json │ └── passport │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ ├── authenticator.js │ │ ├── errors │ │ │ └── authenticationerror.js │ │ ├── framework │ │ │ └── connect.js │ │ ├── http │ │ │ └── request.js │ │ ├── index.js │ │ ├── middleware │ │ │ ├── authenticate.js │ │ │ └── initialize.js │ │ └── strategies │ │ │ └── session.js │ │ ├── node_modules │ │ ├── passport-strategy │ │ │ ├── .jshintrc │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── strategy.js │ │ │ └── package.json │ │ └── pause │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ └── package.json ├── package.json ├── server.js └── views │ └── dialog.ejs ├── beerlocker-6.2 ├── controllers │ ├── auth.js │ ├── beer.js │ ├── client.js │ ├── oauth2.js │ └── user.js ├── models │ ├── beer.js │ ├── client.js │ ├── code.js │ ├── token.js │ └── user.js ├── node_modules │ ├── bcrypt-nodejs │ │ ├── .gitattributes │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bCrypt.js │ │ ├── package.json │ │ ├── test-async.js │ │ └── test-sync.js │ ├── body-parser │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── HISTORY.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── qs │ │ │ │ ├── .gitmodules │ │ │ │ ├── .npmignore │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── raw-body │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── bytes │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ └── type-is │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── HISTORY.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ └── mime │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── mime.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test.js │ │ │ │ │ └── types │ │ │ │ │ ├── mime.types │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ └── package.json │ ├── ejs │ │ ├── .gitmodules │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── History.md │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── benchmark.js │ │ ├── ejs.js │ │ ├── ejs.min.js │ │ ├── examples │ │ │ ├── client.html │ │ │ ├── functions.ejs │ │ │ ├── functions.js │ │ │ ├── list.ejs │ │ │ └── list.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── ejs.js │ │ │ ├── filters.js │ │ │ └── utils.js │ │ ├── package.json │ │ ├── support │ │ │ └── compile.js │ │ └── test │ │ │ ├── ejs.js │ │ │ └── fixtures │ │ │ ├── backslash.ejs │ │ │ ├── backslash.html │ │ │ ├── comments.ejs │ │ │ ├── comments.html │ │ │ ├── double-quote.ejs │ │ │ ├── double-quote.html │ │ │ ├── error.ejs │ │ │ ├── error.out │ │ │ ├── fail.ejs │ │ │ ├── include.css.ejs │ │ │ ├── include.css.html │ │ │ ├── include.ejs │ │ │ ├── include.html │ │ │ ├── includes │ │ │ ├── menu-item.ejs │ │ │ └── menu │ │ │ │ └── item.ejs │ │ │ ├── menu.ejs │ │ │ ├── menu.html │ │ │ ├── messed.ejs │ │ │ ├── messed.html │ │ │ ├── newlines.ejs │ │ │ ├── newlines.html │ │ │ ├── no.newlines.ejs │ │ │ ├── no.newlines.html │ │ │ ├── para.ejs │ │ │ ├── pet.ejs │ │ │ ├── single-quote.ejs │ │ │ ├── single-quote.html │ │ │ ├── style.css │ │ │ └── user.ejs │ ├── express-session │ │ ├── .npmignore │ │ ├── History.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── buffer-crc32 │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ └── crc.test.js │ │ │ ├── cookie-signature │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── cookie │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── debug │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── browser.js │ │ │ │ ├── component.json │ │ │ │ ├── debug.js │ │ │ │ ├── node.js │ │ │ │ ├── node_modules │ │ │ │ │ └── ms │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ ├── depd │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── on-headers │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── uid-safe │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── base64-url │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── mz │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── _promisify.js │ │ │ │ │ │ ├── _promisify_all.js │ │ │ │ │ │ ├── child_process.js │ │ │ │ │ │ ├── crypto.js │ │ │ │ │ │ ├── dns.js │ │ │ │ │ │ ├── fs.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── zlib.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ └── utils-merge │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── package.json │ │ └── session │ │ │ ├── cookie.js │ │ │ ├── memory.js │ │ │ ├── session.js │ │ │ └── store.js │ ├── express │ │ ├── .npmignore │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── 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 │ │ ├── node_modules │ │ │ ├── accepts │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ │ └── node.types │ │ │ │ │ └── negotiator │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── charset.js │ │ │ │ │ │ ├── encoding.js │ │ │ │ │ │ ├── language.js │ │ │ │ │ │ ├── mediaType.js │ │ │ │ │ │ └── negotiator.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── readme.md │ │ │ │ └── package.json │ │ │ ├── buffer-crc32 │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ └── crc.test.js │ │ │ ├── cookie-signature │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── cookie │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── debug │ │ │ │ ├── Readme.md │ │ │ │ ├── debug.js │ │ │ │ ├── lib │ │ │ │ │ └── debug.js │ │ │ │ └── package.json │ │ │ ├── escape-html │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── fresh │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── merge-descriptors │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── methods │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── parseurl │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── path-to-regexp │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── qs │ │ │ │ ├── .gitmodules │ │ │ │ ├── .npmignore │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── range-parser │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── send │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── send.js │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── debug.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ │ ├── serve-static │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── type-is │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── HISTORY.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ └── package.json │ │ │ └── utils-merge │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ ├── mongoose │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── History.md │ │ ├── README.md │ │ ├── contRun.sh │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── aggregate │ │ │ │ ├── aggregate.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── doc-methods.js │ │ │ ├── express │ │ │ │ ├── README.md │ │ │ │ └── connection-sharing │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app.js │ │ │ │ │ ├── modelA.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── routes.js │ │ │ ├── geospatial │ │ │ │ ├── geoJSONSchema.js │ │ │ │ ├── geoJSONexample.js │ │ │ │ ├── geospatial.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── globalschemas │ │ │ │ ├── gs_example.js │ │ │ │ └── person.js │ │ │ ├── lean │ │ │ │ ├── lean.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── mapreduce │ │ │ │ ├── mapreduce.js │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── population │ │ │ │ ├── population-across-three-collections.js │ │ │ │ ├── population-basic.js │ │ │ │ ├── population-of-existing-doc.js │ │ │ │ ├── population-of-multiple-existing-docs.js │ │ │ │ ├── population-options.js │ │ │ │ └── population-plain-objects.js │ │ │ ├── promises │ │ │ │ ├── package.json │ │ │ │ ├── person.js │ │ │ │ └── promise.js │ │ │ ├── querybuilder │ │ │ │ ├── package.json │ │ │ │ ├── person.js │ │ │ │ └── querybuilder.js │ │ │ ├── replicasets │ │ │ │ ├── package.json │ │ │ │ ├── person.js │ │ │ │ └── replica-sets.js │ │ │ ├── schema │ │ │ │ ├── schema.js │ │ │ │ └── storing-schemas-as-json │ │ │ │ │ ├── index.js │ │ │ │ │ └── schema.json │ │ │ └── statics │ │ │ │ ├── person.js │ │ │ │ └── statics.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── aggregate.js │ │ │ ├── collection.js │ │ │ ├── connection.js │ │ │ ├── connectionstate.js │ │ │ ├── document.js │ │ │ ├── drivers │ │ │ │ ├── SPEC.md │ │ │ │ └── node-mongodb-native │ │ │ │ │ ├── binary.js │ │ │ │ │ ├── collection.js │ │ │ │ │ ├── connection.js │ │ │ │ │ └── objectid.js │ │ │ ├── error.js │ │ │ ├── error │ │ │ │ ├── cast.js │ │ │ │ ├── divergentArray.js │ │ │ │ ├── messages.js │ │ │ │ ├── missingSchema.js │ │ │ │ ├── overwriteModel.js │ │ │ │ ├── validation.js │ │ │ │ ├── validator.js │ │ │ │ └── version.js │ │ │ ├── index.js │ │ │ ├── internal.js │ │ │ ├── model.js │ │ │ ├── promise.js │ │ │ ├── query.js │ │ │ ├── queryhelpers.js │ │ │ ├── querystream.js │ │ │ ├── schema.js │ │ │ ├── schema │ │ │ │ ├── array.js │ │ │ │ ├── boolean.js │ │ │ │ ├── buffer.js │ │ │ │ ├── date.js │ │ │ │ ├── documentarray.js │ │ │ │ ├── index.js │ │ │ │ ├── mixed.js │ │ │ │ ├── number.js │ │ │ │ ├── objectid.js │ │ │ │ └── string.js │ │ │ ├── schemadefault.js │ │ │ ├── schematype.js │ │ │ ├── statemachine.js │ │ │ ├── types │ │ │ │ ├── array.js │ │ │ │ ├── buffer.js │ │ │ │ ├── documentarray.js │ │ │ │ ├── embedded.js │ │ │ │ ├── index.js │ │ │ │ └── objectid.js │ │ │ ├── utils.js │ │ │ └── virtualtype.js │ │ ├── node_modules │ │ │ ├── hooks │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── hooks.alt.js │ │ │ │ ├── hooks.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── mongodb │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── mongodb │ │ │ │ │ │ ├── admin.js │ │ │ │ │ │ ├── aggregation_cursor.js │ │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── mongodb_cr.js │ │ │ │ │ │ ├── mongodb_gssapi.js │ │ │ │ │ │ ├── mongodb_plain.js │ │ │ │ │ │ ├── mongodb_sspi.js │ │ │ │ │ │ └── mongodb_x509.js │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── collection │ │ │ │ │ │ ├── aggregation.js │ │ │ │ │ │ ├── commands.js │ │ │ │ │ │ ├── core.js │ │ │ │ │ │ ├── geo.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── query.js │ │ │ │ │ │ └── shared.js │ │ │ │ │ │ ├── command_cursor.js │ │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── base_command.js │ │ │ │ │ │ ├── db_command.js │ │ │ │ │ │ ├── delete_command.js │ │ │ │ │ │ ├── get_more_command.js │ │ │ │ │ │ ├── insert_command.js │ │ │ │ │ │ ├── kill_cursor_command.js │ │ │ │ │ │ ├── query_command.js │ │ │ │ │ │ └── update_command.js │ │ │ │ │ │ ├── connection │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── connection.js │ │ │ │ │ │ ├── connection_pool.js │ │ │ │ │ │ ├── connection_utils.js │ │ │ │ │ │ ├── mongos.js │ │ │ │ │ │ ├── read_preference.js │ │ │ │ │ │ ├── repl_set │ │ │ │ │ │ │ ├── ha.js │ │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ │ ├── repl_set.js │ │ │ │ │ │ │ ├── repl_set_state.js │ │ │ │ │ │ │ └── strategies │ │ │ │ │ │ │ │ ├── ping_strategy.js │ │ │ │ │ │ │ │ └── statistics_strategy.js │ │ │ │ │ │ ├── server.js │ │ │ │ │ │ ├── server_capabilities.js │ │ │ │ │ │ └── url_parser.js │ │ │ │ │ │ ├── cursor.js │ │ │ │ │ │ ├── cursorstream.js │ │ │ │ │ │ ├── db.js │ │ │ │ │ │ ├── gridfs │ │ │ │ │ │ ├── chunk.js │ │ │ │ │ │ ├── grid.js │ │ │ │ │ │ ├── gridstore.js │ │ │ │ │ │ └── readstream.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── mongo_client.js │ │ │ │ │ │ ├── responses │ │ │ │ │ │ └── mongo_reply.js │ │ │ │ │ │ ├── scope.js │ │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── bson │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── binding.gyp │ │ │ │ │ │ ├── browser_build │ │ │ │ │ │ │ ├── bson.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ │ ├── bson.node.d │ │ │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ │ │ └── bson.o.d │ │ │ │ │ │ │ │ ├── bson.node │ │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ │ └── bson.o │ │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ │ ├── bson.target.mk │ │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ │ └── gyp-mac-tool │ │ │ │ │ │ ├── build_browser.js │ │ │ │ │ │ ├── builderror.log │ │ │ │ │ │ ├── ext │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── bson.cc │ │ │ │ │ │ │ ├── bson.h │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── nan.h │ │ │ │ │ │ │ ├── win32 │ │ │ │ │ │ │ │ ├── ia32 │ │ │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ │ │ └── x64 │ │ │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ │ └── wscript │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ ├── binary.js │ │ │ │ │ │ │ │ ├── binary_parser.js │ │ │ │ │ │ │ │ ├── bson.js │ │ │ │ │ │ │ │ ├── code.js │ │ │ │ │ │ │ │ ├── db_ref.js │ │ │ │ │ │ │ │ ├── double.js │ │ │ │ │ │ │ │ ├── float_parser.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── long.js │ │ │ │ │ │ │ │ ├── max_key.js │ │ │ │ │ │ │ │ ├── min_key.js │ │ │ │ │ │ │ │ ├── objectid.js │ │ │ │ │ │ │ │ ├── symbol.js │ │ │ │ │ │ │ │ └── timestamp.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── tools │ │ │ │ │ │ │ ├── gleak.js │ │ │ │ │ │ │ └── jasmine-1.1.0 │ │ │ │ │ │ │ ├── MIT.LICENSE │ │ │ │ │ │ │ ├── jasmine-html.js │ │ │ │ │ │ │ ├── jasmine.css │ │ │ │ │ │ │ ├── jasmine.js │ │ │ │ │ │ │ └── jasmine_favicon.png │ │ │ │ │ └── kerberos │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── binding.gyp │ │ │ │ │ │ ├── build │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ ├── kerberos.node.d │ │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ └── kerberos │ │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ │ ├── base64.o.d │ │ │ │ │ │ │ │ │ ├── kerberos.o.d │ │ │ │ │ │ │ │ │ ├── kerberos_context.o.d │ │ │ │ │ │ │ │ │ ├── kerberosgss.o.d │ │ │ │ │ │ │ │ │ └── worker.o.d │ │ │ │ │ │ │ ├── kerberos.node │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ └── kerberos │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ ├── base64.o │ │ │ │ │ │ │ │ ├── kerberos.o │ │ │ │ │ │ │ │ ├── kerberos_context.o │ │ │ │ │ │ │ │ ├── kerberosgss.o │ │ │ │ │ │ │ │ └── worker.o │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ ├── gyp-mac-tool │ │ │ │ │ │ └── kerberos.target.mk │ │ │ │ │ │ ├── builderror.log │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── auth_processes │ │ │ │ │ │ │ └── mongodb.js │ │ │ │ │ │ ├── base64.c │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ ├── kerberos.cc │ │ │ │ │ │ ├── kerberos.h │ │ │ │ │ │ ├── kerberos.js │ │ │ │ │ │ ├── kerberos_context.cc │ │ │ │ │ │ ├── kerberos_context.h │ │ │ │ │ │ ├── kerberosgss.c │ │ │ │ │ │ ├── kerberosgss.h │ │ │ │ │ │ ├── sspi.js │ │ │ │ │ │ ├── win32 │ │ │ │ │ │ │ ├── base64.c │ │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ │ ├── kerberos.cc │ │ │ │ │ │ │ ├── kerberos.h │ │ │ │ │ │ │ ├── kerberos_sspi.c │ │ │ │ │ │ │ ├── kerberos_sspi.h │ │ │ │ │ │ │ ├── worker.cc │ │ │ │ │ │ │ ├── worker.h │ │ │ │ │ │ │ └── wrappers │ │ │ │ │ │ │ │ ├── security_buffer.cc │ │ │ │ │ │ │ │ ├── security_buffer.h │ │ │ │ │ │ │ │ ├── security_buffer.js │ │ │ │ │ │ │ │ ├── security_buffer_descriptor.cc │ │ │ │ │ │ │ │ ├── security_buffer_descriptor.h │ │ │ │ │ │ │ │ ├── security_buffer_descriptor.js │ │ │ │ │ │ │ │ ├── security_context.cc │ │ │ │ │ │ │ │ ├── security_context.h │ │ │ │ │ │ │ │ ├── security_context.js │ │ │ │ │ │ │ │ ├── security_credentials.cc │ │ │ │ │ │ │ │ ├── security_credentials.h │ │ │ │ │ │ │ │ └── security_credentials.js │ │ │ │ │ │ ├── worker.cc │ │ │ │ │ │ └── worker.h │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── kerberos_tests.js │ │ │ │ │ │ ├── kerberos_win32_test.js │ │ │ │ │ │ └── win32 │ │ │ │ │ │ ├── security_buffer_descriptor_tests.js │ │ │ │ │ │ ├── security_buffer_tests.js │ │ │ │ │ │ └── security_credentials_tests.js │ │ │ │ ├── package.json │ │ │ │ └── t.js │ │ │ ├── mpath │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ ├── mpromise │ │ │ │ ├── .idea │ │ │ │ │ ├── .name │ │ │ │ │ ├── codeStyleSettings.xml │ │ │ │ │ ├── encodings.xml │ │ │ │ │ ├── inspectionProfiles │ │ │ │ │ │ ├── Project_Default.xml │ │ │ │ │ │ └── profiles_settings.xml │ │ │ │ │ ├── jsLibraryMappings.xml │ │ │ │ │ ├── libraries │ │ │ │ │ │ └── Node_js_Dependencies_for_mpromise.xml │ │ │ │ │ ├── misc.xml │ │ │ │ │ ├── modules.xml │ │ │ │ │ ├── mpromise.iml │ │ │ │ │ ├── other.xml │ │ │ │ │ ├── scopes │ │ │ │ │ │ └── scope_settings.xml │ │ │ │ │ ├── vcs.xml │ │ │ │ │ └── workspace.xml │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── promise.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── promise.domain.test.js │ │ │ │ │ ├── promise.test.js │ │ │ │ │ └── promises.Aplus.js │ │ │ ├── mquery │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── collection │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── node.js │ │ │ │ │ ├── env.js │ │ │ │ │ ├── mquery.js │ │ │ │ │ ├── permissions.js │ │ │ │ │ └── utils.js │ │ │ │ ├── node_modules │ │ │ │ │ └── debug │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── debug.js │ │ │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── collection │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── mongo.js │ │ │ │ │ └── node.js │ │ │ │ │ ├── env.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── utils.js │ │ │ │ │ └── utils.test.js │ │ │ ├── ms │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── ms.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── index.html │ │ │ │ │ ├── support │ │ │ │ │ └── jquery.js │ │ │ │ │ └── test.js │ │ │ ├── muri │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ ├── regexp-clone │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ └── sliced │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── bench.js │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ └── sliced.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ └── index.js │ │ ├── package.json │ │ ├── release-items.md │ │ ├── static.js │ │ └── website.js │ ├── oauth2orize │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── errors │ │ │ │ ├── authorizationerror.js │ │ │ │ ├── badrequesterror.js │ │ │ │ ├── forbiddenerror.js │ │ │ │ └── tokenerror.js │ │ │ ├── exchange │ │ │ │ ├── authorizationCode.js │ │ │ │ ├── clientCredentials.js │ │ │ │ ├── password.js │ │ │ │ └── refreshToken.js │ │ │ ├── grant │ │ │ │ ├── code.js │ │ │ │ └── token.js │ │ │ ├── index.js │ │ │ ├── middleware │ │ │ │ ├── authorization.js │ │ │ │ ├── decision.js │ │ │ │ ├── errorHandler.js │ │ │ │ ├── token.js │ │ │ │ └── transactionLoader.js │ │ │ ├── server.js │ │ │ ├── unorderedlist.js │ │ │ └── utils.js │ │ ├── node_modules │ │ │ ├── debug │ │ │ │ ├── Readme.md │ │ │ │ ├── debug.js │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── debug.js │ │ │ │ └── package.json │ │ │ ├── uid2 │ │ │ │ ├── LICENSE │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── utils-merge │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ ├── passport-http-bearer │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── index.js │ │ │ └── strategy.js │ │ ├── node_modules │ │ │ └── passport-strategy │ │ │ │ ├── .jshintrc │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── strategy.js │ │ │ │ └── package.json │ │ └── package.json │ ├── passport-http │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── passport-http │ │ │ │ ├── index.js │ │ │ │ └── strategies │ │ │ │ ├── basic.js │ │ │ │ └── digest.js │ │ ├── node_modules │ │ │ ├── passport │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ └── passport │ │ │ │ │ │ ├── context │ │ │ │ │ │ └── http │ │ │ │ │ │ │ ├── actions.js │ │ │ │ │ │ │ └── context.js │ │ │ │ │ │ ├── http │ │ │ │ │ │ └── request.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── middleware │ │ │ │ │ │ ├── authenticate.js │ │ │ │ │ │ └── initialize.js │ │ │ │ │ │ ├── strategies │ │ │ │ │ │ └── session.js │ │ │ │ │ │ └── strategy.js │ │ │ │ ├── node_modules │ │ │ │ │ └── pause │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ └── pkginfo │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── docs │ │ │ │ ├── docco.css │ │ │ │ └── pkginfo.html │ │ │ │ ├── examples │ │ │ │ ├── all-properties.js │ │ │ │ ├── array-argument.js │ │ │ │ ├── multiple-properties.js │ │ │ │ ├── object-argument.js │ │ │ │ ├── package.json │ │ │ │ └── single-property.js │ │ │ │ ├── lib │ │ │ │ └── pkginfo.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ └── pkginfo-test.js │ │ └── package.json │ ├── passport-local │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── index.js │ │ │ ├── strategy.js │ │ │ └── utils.js │ │ ├── node_modules │ │ │ └── passport-strategy │ │ │ │ ├── .jshintrc │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── strategy.js │ │ │ │ └── package.json │ │ └── package.json │ └── passport │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ ├── authenticator.js │ │ ├── errors │ │ │ └── authenticationerror.js │ │ ├── framework │ │ │ └── connect.js │ │ ├── http │ │ │ └── request.js │ │ ├── index.js │ │ ├── middleware │ │ │ ├── authenticate.js │ │ │ └── initialize.js │ │ └── strategies │ │ │ └── session.js │ │ ├── node_modules │ │ ├── passport-strategy │ │ │ ├── .jshintrc │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── strategy.js │ │ │ └── package.json │ │ └── pause │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ └── package.json ├── package.json ├── server.js └── views │ └── dialog.ejs └── translations └── README_es_CO.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/README.md -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-1/node_modules/express/.npmignore -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-1/node_modules/express/History.md -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-1/node_modules/express/LICENSE -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-1/node_modules/express/Makefile -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-1/node_modules/express/Readme.md -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-1/node_modules/express/index.js -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/lib/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-1/node_modules/express/lib/express.js -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-1/node_modules/express/lib/request.js -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/lib/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-1/node_modules/express/lib/response.js -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-1/node_modules/express/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-1/node_modules/express/lib/view.js -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/node_modules/accepts/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/node_modules/accepts/node_modules/negotiator/.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | test 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/node_modules/buffer-crc32/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/node_modules/escape-html/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/node_modules/fresh/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/node_modules/methods/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | # Methods 3 | 4 | HTTP verbs that node core's parser supports. 5 | -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/node_modules/path-to-regexp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/node_modules/range-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/node_modules/send/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | examples 3 | *.sock 4 | -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/node_modules/send/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/send'); -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/node_modules/serve-static/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/node_modules/type-is/.npmignore: -------------------------------------------------------------------------------- 1 | test.js -------------------------------------------------------------------------------- /beerlocker-1/node_modules/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-1/node_modules/express/package.json -------------------------------------------------------------------------------- /beerlocker-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-1/package.json -------------------------------------------------------------------------------- /beerlocker-1/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-1/server.js -------------------------------------------------------------------------------- /beerlocker-2/models/beer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/models/beer.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/body-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-2/node_modules/body-parser/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/body-parser/.travis.yml -------------------------------------------------------------------------------- /beerlocker-2/node_modules/body-parser/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/body-parser/HISTORY.md -------------------------------------------------------------------------------- /beerlocker-2/node_modules/body-parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/body-parser/Makefile -------------------------------------------------------------------------------- /beerlocker-2/node_modules/body-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/body-parser/README.md -------------------------------------------------------------------------------- /beerlocker-2/node_modules/body-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/body-parser/index.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/body-parser/node_modules/raw-body/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-2/node_modules/body-parser/node_modules/raw-body/node_modules/bytes/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/body-parser/node_modules/type-is/.npmignore: -------------------------------------------------------------------------------- 1 | test.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/body-parser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/body-parser/package.json -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/express/.npmignore -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/express/History.md -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/express/LICENSE -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/express/Makefile -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/express/Readme.md -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/express/index.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/lib/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/express/lib/express.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/express/lib/request.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/lib/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/express/lib/response.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/express/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/express/lib/view.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/node_modules/accepts/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/node_modules/accepts/node_modules/negotiator/.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | test 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/node_modules/buffer-crc32/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/node_modules/escape-html/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/node_modules/fresh/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/node_modules/methods/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | # Methods 3 | 4 | HTTP verbs that node core's parser supports. 5 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/node_modules/path-to-regexp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/node_modules/range-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/node_modules/send/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | examples 3 | *.sock 4 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/node_modules/send/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/send'); -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/node_modules/serve-static/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/node_modules/type-is/.npmignore: -------------------------------------------------------------------------------- 1 | test.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/express/package.json -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/.npmignore -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/.travis.yml -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/CONTRIBUTING.md -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/History.md -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/README.md -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/contRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/contRun.sh -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/examples/express/README.md: -------------------------------------------------------------------------------- 1 | Mongoose + Express examples 2 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/index.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/lib/aggregate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/lib/aggregate.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/lib/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/lib/document.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/lib/drivers/SPEC.md: -------------------------------------------------------------------------------- 1 | 2 | # Driver Spec 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/lib/error.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/lib/index.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/lib/internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/lib/internal.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/lib/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/lib/model.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/lib/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/lib/promise.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/lib/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/lib/query.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/lib/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/lib/schema.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/node_modules/hooks/.npmignore: -------------------------------------------------------------------------------- 1 | **.swp 2 | node_modules 3 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/node_modules/mongodb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/mongodb'); 2 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/node_modules/mpath/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/node_modules/mpromise/.idea/.name: -------------------------------------------------------------------------------- 1 | mpromise -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/node_modules/mpromise/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/node_modules/mquery/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/node_modules/mquery/test/collection/browser.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/node_modules/mquery/test/collection/mongo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/node_modules/muri/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/node_modules/regexp-clone/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/node_modules/sliced/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/package.json -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/release-items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/release-items.md -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/static.js -------------------------------------------------------------------------------- /beerlocker-2/node_modules/mongoose/website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/node_modules/mongoose/website.js -------------------------------------------------------------------------------- /beerlocker-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/package.json -------------------------------------------------------------------------------- /beerlocker-2/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-2/server.js -------------------------------------------------------------------------------- /beerlocker-3.1/controllers/beer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/controllers/beer.js -------------------------------------------------------------------------------- /beerlocker-3.1/models/beer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/models/beer.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/body-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/body-parser/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/body-parser/.travis.yml -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/body-parser/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/body-parser/HISTORY.md -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/body-parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/body-parser/Makefile -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/body-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/body-parser/README.md -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/body-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/body-parser/index.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/body-parser/node_modules/raw-body/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/body-parser/node_modules/raw-body/node_modules/bytes/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/body-parser/node_modules/type-is/.npmignore: -------------------------------------------------------------------------------- 1 | test.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/express/.npmignore -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/express/History.md -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/express/LICENSE -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/express/Makefile -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/express/Readme.md -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/express/index.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/lib/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/express/lib/express.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/express/lib/request.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/lib/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/express/lib/response.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/express/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/express/lib/view.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/node_modules/accepts/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/node_modules/accepts/node_modules/negotiator/.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | test 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/node_modules/buffer-crc32/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/node_modules/escape-html/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/node_modules/fresh/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/node_modules/methods/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | # Methods 3 | 4 | HTTP verbs that node core's parser supports. 5 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/node_modules/path-to-regexp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/node_modules/range-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/node_modules/send/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | examples 3 | *.sock 4 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/node_modules/send/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/send'); -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/node_modules/serve-static/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/node_modules/type-is/.npmignore: -------------------------------------------------------------------------------- 1 | test.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/express/package.json -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/mongoose/.npmignore -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/mongoose/.travis.yml -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/mongoose/History.md -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/mongoose/README.md -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/contRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/mongoose/contRun.sh -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/examples/express/README.md: -------------------------------------------------------------------------------- 1 | Mongoose + Express examples 2 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/mongoose/index.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/lib/drivers/SPEC.md: -------------------------------------------------------------------------------- 1 | 2 | # Driver Spec 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/mongoose/lib/error.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/mongoose/lib/index.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/lib/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/mongoose/lib/model.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/lib/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/mongoose/lib/promise.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/lib/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/mongoose/lib/query.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/lib/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/mongoose/lib/schema.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/mongoose/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/node_modules/hooks/.npmignore: -------------------------------------------------------------------------------- 1 | **.swp 2 | node_modules 3 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/node_modules/mongodb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/mongodb'); 2 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/node_modules/mpath/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/node_modules/mpromise/.idea/.name: -------------------------------------------------------------------------------- 1 | mpromise -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/node_modules/mpromise/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/node_modules/mquery/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/node_modules/mquery/test/collection/browser.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/node_modules/mquery/test/collection/mongo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/node_modules/muri/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/node_modules/regexp-clone/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/node_modules/sliced/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/mongoose/package.json -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/mongoose/static.js -------------------------------------------------------------------------------- /beerlocker-3.1/node_modules/mongoose/website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/node_modules/mongoose/website.js -------------------------------------------------------------------------------- /beerlocker-3.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/package.json -------------------------------------------------------------------------------- /beerlocker-3.1/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.1/server.js -------------------------------------------------------------------------------- /beerlocker-3.2/controllers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/controllers/auth.js -------------------------------------------------------------------------------- /beerlocker-3.2/controllers/beer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/controllers/beer.js -------------------------------------------------------------------------------- /beerlocker-3.2/controllers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/controllers/user.js -------------------------------------------------------------------------------- /beerlocker-3.2/models/beer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/models/beer.js -------------------------------------------------------------------------------- /beerlocker-3.2/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/models/user.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/bcrypt-nodejs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/bcrypt-nodejs/LICENSE -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/bcrypt-nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/bcrypt-nodejs/README.md -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/bcrypt-nodejs/bCrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/bcrypt-nodejs/bCrypt.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/body-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/body-parser/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/body-parser/.travis.yml -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/body-parser/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/body-parser/HISTORY.md -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/body-parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/body-parser/Makefile -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/body-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/body-parser/README.md -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/body-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/body-parser/index.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/body-parser/node_modules/raw-body/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/body-parser/node_modules/raw-body/node_modules/bytes/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/body-parser/node_modules/type-is/.npmignore: -------------------------------------------------------------------------------- 1 | test.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/express/.npmignore -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/express/History.md -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/express/LICENSE -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/express/Makefile -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/express/Readme.md -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/express/index.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/lib/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/express/lib/express.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/express/lib/request.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/lib/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/express/lib/response.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/express/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/express/lib/view.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/node_modules/accepts/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/node_modules/accepts/node_modules/negotiator/.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | test 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/node_modules/buffer-crc32/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/node_modules/escape-html/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/node_modules/fresh/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/node_modules/methods/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | # Methods 3 | 4 | HTTP verbs that node core's parser supports. 5 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/node_modules/path-to-regexp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/node_modules/range-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/node_modules/send/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | examples 3 | *.sock 4 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/node_modules/send/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/send'); -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/node_modules/serve-static/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/node_modules/type-is/.npmignore: -------------------------------------------------------------------------------- 1 | test.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/express/package.json -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/mongoose/.npmignore -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/mongoose/.travis.yml -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/mongoose/History.md -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/mongoose/README.md -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/contRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/mongoose/contRun.sh -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/examples/express/README.md: -------------------------------------------------------------------------------- 1 | Mongoose + Express examples 2 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/mongoose/index.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/lib/drivers/SPEC.md: -------------------------------------------------------------------------------- 1 | 2 | # Driver Spec 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/mongoose/lib/error.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/mongoose/lib/index.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/lib/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/mongoose/lib/model.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/lib/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/mongoose/lib/promise.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/lib/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/mongoose/lib/query.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/lib/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/mongoose/lib/schema.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/mongoose/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/node_modules/hooks/.npmignore: -------------------------------------------------------------------------------- 1 | **.swp 2 | node_modules 3 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/node_modules/mongodb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/mongodb'); 2 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/node_modules/mpath/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/node_modules/mpromise/.idea/.name: -------------------------------------------------------------------------------- 1 | mpromise -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/node_modules/mpromise/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/node_modules/mquery/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/node_modules/mquery/test/collection/browser.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/node_modules/mquery/test/collection/mongo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/node_modules/muri/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/node_modules/regexp-clone/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/node_modules/sliced/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/mongoose/package.json -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/mongoose/static.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/mongoose/website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/mongoose/website.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/passport-http/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/passport-http/LICENSE -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/passport-http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/passport-http/README.md -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/passport-http/node_modules/passport/node_modules/pause/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/passport-http/node_modules/pkginfo/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/passport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/passport/LICENSE -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/passport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/passport/README.md -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/passport/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/passport/lib/index.js -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/passport/node_modules/pause/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-3.2/node_modules/passport/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/node_modules/passport/package.json -------------------------------------------------------------------------------- /beerlocker-3.2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/package.json -------------------------------------------------------------------------------- /beerlocker-3.2/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-3.2/server.js -------------------------------------------------------------------------------- /beerlocker-4/controllers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/controllers/auth.js -------------------------------------------------------------------------------- /beerlocker-4/controllers/beer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/controllers/beer.js -------------------------------------------------------------------------------- /beerlocker-4/controllers/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/controllers/client.js -------------------------------------------------------------------------------- /beerlocker-4/controllers/oauth2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/controllers/oauth2.js -------------------------------------------------------------------------------- /beerlocker-4/controllers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/controllers/user.js -------------------------------------------------------------------------------- /beerlocker-4/models/beer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/models/beer.js -------------------------------------------------------------------------------- /beerlocker-4/models/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/models/client.js -------------------------------------------------------------------------------- /beerlocker-4/models/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/models/code.js -------------------------------------------------------------------------------- /beerlocker-4/models/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/models/token.js -------------------------------------------------------------------------------- /beerlocker-4/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/models/user.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/bcrypt-nodejs/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/bcrypt-nodejs/.npmignore -------------------------------------------------------------------------------- /beerlocker-4/node_modules/bcrypt-nodejs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/bcrypt-nodejs/LICENSE -------------------------------------------------------------------------------- /beerlocker-4/node_modules/bcrypt-nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/bcrypt-nodejs/README.md -------------------------------------------------------------------------------- /beerlocker-4/node_modules/bcrypt-nodejs/bCrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/bcrypt-nodejs/bCrypt.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/body-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-4/node_modules/body-parser/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/body-parser/.travis.yml -------------------------------------------------------------------------------- /beerlocker-4/node_modules/body-parser/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/body-parser/HISTORY.md -------------------------------------------------------------------------------- /beerlocker-4/node_modules/body-parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/body-parser/Makefile -------------------------------------------------------------------------------- /beerlocker-4/node_modules/body-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/body-parser/README.md -------------------------------------------------------------------------------- /beerlocker-4/node_modules/body-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/body-parser/index.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/body-parser/node_modules/raw-body/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-4/node_modules/body-parser/node_modules/raw-body/node_modules/bytes/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/body-parser/node_modules/type-is/.npmignore: -------------------------------------------------------------------------------- 1 | test.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/body-parser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/body-parser/package.json -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/.npmignore: -------------------------------------------------------------------------------- 1 | # ignore any vim files: 2 | *.sw[a-z] 3 | vim/.netrwhist 4 | node_modules 5 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/.travis.yml -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/History.md -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/Makefile -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/Readme.md -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/benchmark.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/ejs.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/ejs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/ejs.min.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/examples/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/examples/client.html -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/examples/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/examples/functions.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/examples/list.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/examples/list.ejs -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/examples/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/examples/list.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/ejs'); -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/lib/ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/lib/ejs.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/lib/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/lib/filters.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/package.json -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/support/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/support/compile.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/test/ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/ejs/test/ejs.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/test/fixtures/backslash.ejs: -------------------------------------------------------------------------------- 1 | \foo -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/test/fixtures/backslash.html: -------------------------------------------------------------------------------- 1 | \foo -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/test/fixtures/double-quote.ejs: -------------------------------------------------------------------------------- 1 |

<%= "lo" + 'ki' %>'s "wheelchair"

-------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/test/fixtures/double-quote.html: -------------------------------------------------------------------------------- 1 |

loki's "wheelchair"

-------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/test/fixtures/fail.ejs: -------------------------------------------------------------------------------- 1 | <% function foo() return 'foo'; %> -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/test/fixtures/includes/menu-item.ejs: -------------------------------------------------------------------------------- 1 |
  • <% include menu/item %>
  • -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/test/fixtures/para.ejs: -------------------------------------------------------------------------------- 1 |

    hey

    -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/test/fixtures/pet.ejs: -------------------------------------------------------------------------------- 1 |
  • [[= pet.name ]]
  • -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/test/fixtures/single-quote.ejs: -------------------------------------------------------------------------------- 1 |

    <%= 'loki' %>'s wheelchair

    -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/test/fixtures/single-quote.html: -------------------------------------------------------------------------------- 1 |

    loki's wheelchair

    -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/test/fixtures/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | foo: '<%= value %>'; 3 | } -------------------------------------------------------------------------------- /beerlocker-4/node_modules/ejs/test/fixtures/user.ejs: -------------------------------------------------------------------------------- 1 |

    {= name}

    -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express-session/.npmignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | test/ 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express-session/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/express-session/LICENSE -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express-session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/express-session/README.md -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express-session/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/express-session/index.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express-session/node_modules/buffer-crc32/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express-session/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express-session/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express-session/node_modules/debug/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxbreak": true 3 | } 4 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express-session/node_modules/debug/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | History.md 4 | Makefile 5 | component.json 6 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express-session/node_modules/depd/.npmignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | files/ 3 | test/ 4 | .travis.yml 5 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express-session/node_modules/on-headers/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express-session/node_modules/uid-safe/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store* 2 | node_modules 3 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express-session/node_modules/uid-safe/node_modules/mz/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/express/.npmignore -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/express/History.md -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/express/LICENSE -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/express/Makefile -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/express/Readme.md -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/express/index.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/lib/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/express/lib/express.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/express/lib/request.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/lib/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/express/lib/response.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/express/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/express/lib/view.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/node_modules/accepts/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/node_modules/accepts/node_modules/negotiator/.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | test 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/node_modules/buffer-crc32/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/node_modules/escape-html/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/node_modules/fresh/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/node_modules/methods/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | # Methods 3 | 4 | HTTP verbs that node core's parser supports. 5 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/node_modules/path-to-regexp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/node_modules/range-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/node_modules/send/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | examples 3 | *.sock 4 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/node_modules/send/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/send'); -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/node_modules/serve-static/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/node_modules/type-is/.npmignore: -------------------------------------------------------------------------------- 1 | test.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/express/package.json -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/.npmignore -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/.travis.yml -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/CONTRIBUTING.md -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/History.md -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/README.md -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/contRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/contRun.sh -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/examples/express/README.md: -------------------------------------------------------------------------------- 1 | Mongoose + Express examples 2 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/index.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/lib/aggregate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/lib/aggregate.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/lib/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/lib/document.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/lib/drivers/SPEC.md: -------------------------------------------------------------------------------- 1 | 2 | # Driver Spec 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/lib/error.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/lib/index.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/lib/internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/lib/internal.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/lib/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/lib/model.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/lib/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/lib/promise.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/lib/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/lib/query.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/lib/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/lib/schema.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/node_modules/hooks/.npmignore: -------------------------------------------------------------------------------- 1 | **.swp 2 | node_modules 3 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/node_modules/mongodb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/mongodb'); 2 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/node_modules/mpath/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/node_modules/mpromise/.idea/.name: -------------------------------------------------------------------------------- 1 | mpromise -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/node_modules/mpromise/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/node_modules/mquery/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/node_modules/mquery/test/collection/browser.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/node_modules/mquery/test/collection/mongo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/node_modules/muri/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/node_modules/regexp-clone/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/node_modules/sliced/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/package.json -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/release-items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/release-items.md -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/static.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/mongoose/website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/mongoose/website.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/oauth2orize/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/oauth2orize/.jshintrc -------------------------------------------------------------------------------- /beerlocker-4/node_modules/oauth2orize/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/oauth2orize/.travis.yml -------------------------------------------------------------------------------- /beerlocker-4/node_modules/oauth2orize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/oauth2orize/LICENSE -------------------------------------------------------------------------------- /beerlocker-4/node_modules/oauth2orize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/oauth2orize/README.md -------------------------------------------------------------------------------- /beerlocker-4/node_modules/oauth2orize/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/oauth2orize/lib/index.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/oauth2orize/lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/oauth2orize/lib/server.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/oauth2orize/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/oauth2orize/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/oauth2orize/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/oauth2orize/package.json -------------------------------------------------------------------------------- /beerlocker-4/node_modules/passport-http/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/passport-http/.travis.yml -------------------------------------------------------------------------------- /beerlocker-4/node_modules/passport-http/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/passport-http/LICENSE -------------------------------------------------------------------------------- /beerlocker-4/node_modules/passport-http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/passport-http/README.md -------------------------------------------------------------------------------- /beerlocker-4/node_modules/passport-http/node_modules/passport/node_modules/pause/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/passport-http/node_modules/pkginfo/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log -------------------------------------------------------------------------------- /beerlocker-4/node_modules/passport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/passport/LICENSE -------------------------------------------------------------------------------- /beerlocker-4/node_modules/passport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/passport/README.md -------------------------------------------------------------------------------- /beerlocker-4/node_modules/passport/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/passport/lib/index.js -------------------------------------------------------------------------------- /beerlocker-4/node_modules/passport/node_modules/pause/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-4/node_modules/passport/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/node_modules/passport/package.json -------------------------------------------------------------------------------- /beerlocker-4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/package.json -------------------------------------------------------------------------------- /beerlocker-4/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/server.js -------------------------------------------------------------------------------- /beerlocker-4/views/dialog.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-4/views/dialog.ejs -------------------------------------------------------------------------------- /beerlocker-5/controllers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/controllers/auth.js -------------------------------------------------------------------------------- /beerlocker-5/controllers/beer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/controllers/beer.js -------------------------------------------------------------------------------- /beerlocker-5/controllers/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/controllers/client.js -------------------------------------------------------------------------------- /beerlocker-5/controllers/oauth2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/controllers/oauth2.js -------------------------------------------------------------------------------- /beerlocker-5/controllers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/controllers/user.js -------------------------------------------------------------------------------- /beerlocker-5/models/beer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/models/beer.js -------------------------------------------------------------------------------- /beerlocker-5/models/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/models/client.js -------------------------------------------------------------------------------- /beerlocker-5/models/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/models/code.js -------------------------------------------------------------------------------- /beerlocker-5/models/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/models/token.js -------------------------------------------------------------------------------- /beerlocker-5/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/models/user.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/bcrypt-nodejs/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/bcrypt-nodejs/.npmignore -------------------------------------------------------------------------------- /beerlocker-5/node_modules/bcrypt-nodejs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/bcrypt-nodejs/LICENSE -------------------------------------------------------------------------------- /beerlocker-5/node_modules/bcrypt-nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/bcrypt-nodejs/README.md -------------------------------------------------------------------------------- /beerlocker-5/node_modules/bcrypt-nodejs/bCrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/bcrypt-nodejs/bCrypt.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/body-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-5/node_modules/body-parser/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/body-parser/.travis.yml -------------------------------------------------------------------------------- /beerlocker-5/node_modules/body-parser/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/body-parser/HISTORY.md -------------------------------------------------------------------------------- /beerlocker-5/node_modules/body-parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/body-parser/Makefile -------------------------------------------------------------------------------- /beerlocker-5/node_modules/body-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/body-parser/README.md -------------------------------------------------------------------------------- /beerlocker-5/node_modules/body-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/body-parser/index.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/body-parser/node_modules/raw-body/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-5/node_modules/body-parser/node_modules/raw-body/node_modules/bytes/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/body-parser/node_modules/type-is/.npmignore: -------------------------------------------------------------------------------- 1 | test.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/body-parser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/body-parser/package.json -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/.npmignore: -------------------------------------------------------------------------------- 1 | # ignore any vim files: 2 | *.sw[a-z] 3 | vim/.netrwhist 4 | node_modules 5 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/.travis.yml -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/History.md -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/Makefile -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/Readme.md -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/benchmark.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/ejs.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/ejs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/ejs.min.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/examples/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/examples/client.html -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/examples/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/examples/functions.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/examples/list.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/examples/list.ejs -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/examples/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/examples/list.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/ejs'); -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/lib/ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/lib/ejs.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/lib/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/lib/filters.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/package.json -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/support/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/support/compile.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/test/ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/ejs/test/ejs.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/test/fixtures/backslash.ejs: -------------------------------------------------------------------------------- 1 | \foo -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/test/fixtures/backslash.html: -------------------------------------------------------------------------------- 1 | \foo -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/test/fixtures/double-quote.ejs: -------------------------------------------------------------------------------- 1 |

    <%= "lo" + 'ki' %>'s "wheelchair"

    -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/test/fixtures/double-quote.html: -------------------------------------------------------------------------------- 1 |

    loki's "wheelchair"

    -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/test/fixtures/fail.ejs: -------------------------------------------------------------------------------- 1 | <% function foo() return 'foo'; %> -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/test/fixtures/includes/menu-item.ejs: -------------------------------------------------------------------------------- 1 |
  • <% include menu/item %>
  • -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/test/fixtures/para.ejs: -------------------------------------------------------------------------------- 1 |

    hey

    -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/test/fixtures/pet.ejs: -------------------------------------------------------------------------------- 1 |
  • [[= pet.name ]]
  • -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/test/fixtures/single-quote.ejs: -------------------------------------------------------------------------------- 1 |

    <%= 'loki' %>'s wheelchair

    -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/test/fixtures/single-quote.html: -------------------------------------------------------------------------------- 1 |

    loki's wheelchair

    -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/test/fixtures/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | foo: '<%= value %>'; 3 | } -------------------------------------------------------------------------------- /beerlocker-5/node_modules/ejs/test/fixtures/user.ejs: -------------------------------------------------------------------------------- 1 |

    {= name}

    -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express-session/.npmignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | test/ 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express-session/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/express-session/LICENSE -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express-session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/express-session/README.md -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express-session/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/express-session/index.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express-session/node_modules/buffer-crc32/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express-session/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express-session/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express-session/node_modules/debug/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxbreak": true 3 | } 4 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express-session/node_modules/debug/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | History.md 4 | Makefile 5 | component.json 6 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express-session/node_modules/depd/.npmignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | files/ 3 | test/ 4 | .travis.yml 5 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express-session/node_modules/on-headers/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express-session/node_modules/uid-safe/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store* 2 | node_modules 3 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express-session/node_modules/uid-safe/node_modules/mz/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/express/.npmignore -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/express/History.md -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/express/LICENSE -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/express/Makefile -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/express/Readme.md -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/express/index.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/lib/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/express/lib/express.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/express/lib/request.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/lib/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/express/lib/response.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/express/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/express/lib/view.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/node_modules/accepts/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/node_modules/accepts/node_modules/negotiator/.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | test 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/node_modules/buffer-crc32/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/node_modules/escape-html/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/node_modules/fresh/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/node_modules/methods/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | # Methods 3 | 4 | HTTP verbs that node core's parser supports. 5 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/node_modules/path-to-regexp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/node_modules/range-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/node_modules/send/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | examples 3 | *.sock 4 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/node_modules/send/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/send'); -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/node_modules/serve-static/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/node_modules/type-is/.npmignore: -------------------------------------------------------------------------------- 1 | test.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/express/package.json -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/.npmignore -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/.travis.yml -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/CONTRIBUTING.md -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/History.md -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/README.md -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/contRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/contRun.sh -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/examples/express/README.md: -------------------------------------------------------------------------------- 1 | Mongoose + Express examples 2 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/index.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/lib/aggregate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/lib/aggregate.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/lib/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/lib/document.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/lib/drivers/SPEC.md: -------------------------------------------------------------------------------- 1 | 2 | # Driver Spec 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/lib/error.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/lib/index.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/lib/internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/lib/internal.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/lib/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/lib/model.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/lib/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/lib/promise.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/lib/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/lib/query.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/lib/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/lib/schema.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/node_modules/hooks/.npmignore: -------------------------------------------------------------------------------- 1 | **.swp 2 | node_modules 3 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/node_modules/mongodb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/mongodb'); 2 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/node_modules/mpath/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/node_modules/mpromise/.idea/.name: -------------------------------------------------------------------------------- 1 | mpromise -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/node_modules/mpromise/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/node_modules/mquery/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/node_modules/mquery/test/collection/browser.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/node_modules/mquery/test/collection/mongo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/node_modules/muri/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/node_modules/regexp-clone/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/node_modules/sliced/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/package.json -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/release-items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/release-items.md -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/static.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/mongoose/website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/mongoose/website.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/oauth2orize/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/oauth2orize/.jshintrc -------------------------------------------------------------------------------- /beerlocker-5/node_modules/oauth2orize/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/oauth2orize/.travis.yml -------------------------------------------------------------------------------- /beerlocker-5/node_modules/oauth2orize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/oauth2orize/LICENSE -------------------------------------------------------------------------------- /beerlocker-5/node_modules/oauth2orize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/oauth2orize/README.md -------------------------------------------------------------------------------- /beerlocker-5/node_modules/oauth2orize/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/oauth2orize/lib/index.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/oauth2orize/lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/oauth2orize/lib/server.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/oauth2orize/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/oauth2orize/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/oauth2orize/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/oauth2orize/package.json -------------------------------------------------------------------------------- /beerlocker-5/node_modules/passport-http/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/passport-http/.travis.yml -------------------------------------------------------------------------------- /beerlocker-5/node_modules/passport-http/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/passport-http/LICENSE -------------------------------------------------------------------------------- /beerlocker-5/node_modules/passport-http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/passport-http/README.md -------------------------------------------------------------------------------- /beerlocker-5/node_modules/passport-http/node_modules/passport/node_modules/pause/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/passport-http/node_modules/pkginfo/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log -------------------------------------------------------------------------------- /beerlocker-5/node_modules/passport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/passport/LICENSE -------------------------------------------------------------------------------- /beerlocker-5/node_modules/passport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/passport/README.md -------------------------------------------------------------------------------- /beerlocker-5/node_modules/passport/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/passport/lib/index.js -------------------------------------------------------------------------------- /beerlocker-5/node_modules/passport/node_modules/pause/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-5/node_modules/passport/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/node_modules/passport/package.json -------------------------------------------------------------------------------- /beerlocker-5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/package.json -------------------------------------------------------------------------------- /beerlocker-5/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/server.js -------------------------------------------------------------------------------- /beerlocker-5/views/dialog.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-5/views/dialog.ejs -------------------------------------------------------------------------------- /beerlocker-6.1/controllers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/controllers/auth.js -------------------------------------------------------------------------------- /beerlocker-6.1/controllers/beer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/controllers/beer.js -------------------------------------------------------------------------------- /beerlocker-6.1/controllers/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/controllers/client.js -------------------------------------------------------------------------------- /beerlocker-6.1/controllers/oauth2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/controllers/oauth2.js -------------------------------------------------------------------------------- /beerlocker-6.1/controllers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/controllers/user.js -------------------------------------------------------------------------------- /beerlocker-6.1/models/beer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/models/beer.js -------------------------------------------------------------------------------- /beerlocker-6.1/models/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/models/client.js -------------------------------------------------------------------------------- /beerlocker-6.1/models/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/models/code.js -------------------------------------------------------------------------------- /beerlocker-6.1/models/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/models/token.js -------------------------------------------------------------------------------- /beerlocker-6.1/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/models/user.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/bcrypt-nodejs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/bcrypt-nodejs/LICENSE -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/bcrypt-nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/bcrypt-nodejs/README.md -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/bcrypt-nodejs/bCrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/bcrypt-nodejs/bCrypt.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/body-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/body-parser/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/body-parser/.travis.yml -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/body-parser/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/body-parser/HISTORY.md -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/body-parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/body-parser/Makefile -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/body-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/body-parser/README.md -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/body-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/body-parser/index.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/body-parser/node_modules/raw-body/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/body-parser/node_modules/raw-body/node_modules/bytes/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/body-parser/node_modules/type-is/.npmignore: -------------------------------------------------------------------------------- 1 | test.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/.npmignore: -------------------------------------------------------------------------------- 1 | # ignore any vim files: 2 | *.sw[a-z] 3 | vim/.netrwhist 4 | node_modules 5 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/ejs/.travis.yml -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/ejs/History.md -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/ejs/Makefile -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/ejs/Readme.md -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/ejs/benchmark.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/ejs/ejs.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/ejs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/ejs/ejs.min.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/examples/list.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/ejs/examples/list.ejs -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/examples/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/ejs/examples/list.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/ejs'); -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/lib/ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/ejs/lib/ejs.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/lib/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/ejs/lib/filters.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/ejs/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/ejs/package.json -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/support/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/ejs/support/compile.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/test/ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/ejs/test/ejs.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/test/fixtures/backslash.ejs: -------------------------------------------------------------------------------- 1 | \foo -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/test/fixtures/backslash.html: -------------------------------------------------------------------------------- 1 | \foo -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/test/fixtures/double-quote.ejs: -------------------------------------------------------------------------------- 1 |

    <%= "lo" + 'ki' %>'s "wheelchair"

    -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/test/fixtures/double-quote.html: -------------------------------------------------------------------------------- 1 |

    loki's "wheelchair"

    -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/test/fixtures/fail.ejs: -------------------------------------------------------------------------------- 1 | <% function foo() return 'foo'; %> -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/test/fixtures/includes/menu-item.ejs: -------------------------------------------------------------------------------- 1 |
  • <% include menu/item %>
  • -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/test/fixtures/para.ejs: -------------------------------------------------------------------------------- 1 |

    hey

    -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/test/fixtures/pet.ejs: -------------------------------------------------------------------------------- 1 |
  • [[= pet.name ]]
  • -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/test/fixtures/single-quote.ejs: -------------------------------------------------------------------------------- 1 |

    <%= 'loki' %>'s wheelchair

    -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/test/fixtures/single-quote.html: -------------------------------------------------------------------------------- 1 |

    loki's wheelchair

    -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/test/fixtures/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | foo: '<%= value %>'; 3 | } -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/ejs/test/fixtures/user.ejs: -------------------------------------------------------------------------------- 1 |

    {= name}

    -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express-session/.npmignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | test/ 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express-session/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/express-session/LICENSE -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express-session/node_modules/buffer-crc32/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express-session/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express-session/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express-session/node_modules/debug/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxbreak": true 3 | } 4 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express-session/node_modules/debug/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | History.md 4 | Makefile 5 | component.json 6 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express-session/node_modules/depd/.npmignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | files/ 3 | test/ 4 | .travis.yml 5 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express-session/node_modules/on-headers/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express-session/node_modules/uid-safe/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store* 2 | node_modules 3 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express-session/node_modules/uid-safe/node_modules/mz/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/express/.npmignore -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/express/History.md -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/express/LICENSE -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/express/Makefile -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/express/Readme.md -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/express/index.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/lib/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/express/lib/express.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/express/lib/request.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/lib/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/express/lib/response.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/express/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/express/lib/view.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/node_modules/accepts/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/node_modules/accepts/node_modules/negotiator/.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | test 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/node_modules/buffer-crc32/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/node_modules/escape-html/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/node_modules/fresh/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/node_modules/methods/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | # Methods 3 | 4 | HTTP verbs that node core's parser supports. 5 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/node_modules/path-to-regexp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/node_modules/range-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/node_modules/send/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | examples 3 | *.sock 4 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/node_modules/send/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/send'); -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/node_modules/serve-static/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/node_modules/type-is/.npmignore: -------------------------------------------------------------------------------- 1 | test.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/express/package.json -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/mongoose/.npmignore -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/mongoose/.travis.yml -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/mongoose/History.md -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/mongoose/README.md -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/contRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/mongoose/contRun.sh -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/examples/express/README.md: -------------------------------------------------------------------------------- 1 | Mongoose + Express examples 2 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/mongoose/index.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/lib/drivers/SPEC.md: -------------------------------------------------------------------------------- 1 | 2 | # Driver Spec 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/mongoose/lib/error.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/mongoose/lib/index.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/lib/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/mongoose/lib/model.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/lib/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/mongoose/lib/promise.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/lib/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/mongoose/lib/query.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/lib/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/mongoose/lib/schema.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/mongoose/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/node_modules/hooks/.npmignore: -------------------------------------------------------------------------------- 1 | **.swp 2 | node_modules 3 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/node_modules/mongodb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/mongodb'); 2 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/node_modules/mpath/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/node_modules/mpromise/.idea/.name: -------------------------------------------------------------------------------- 1 | mpromise -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/node_modules/mpromise/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/node_modules/mquery/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/node_modules/mquery/test/collection/browser.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/node_modules/mquery/test/collection/mongo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/node_modules/muri/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/node_modules/regexp-clone/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/node_modules/sliced/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/mongoose/package.json -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/mongoose/static.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/mongoose/website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/mongoose/website.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/oauth2orize/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/oauth2orize/.jshintrc -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/oauth2orize/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/oauth2orize/.travis.yml -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/oauth2orize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/oauth2orize/LICENSE -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/oauth2orize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/oauth2orize/README.md -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/passport-http/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/passport-http/LICENSE -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/passport-http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/passport-http/README.md -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/passport-http/node_modules/passport/node_modules/pause/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/passport-http/node_modules/pkginfo/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/passport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/passport/LICENSE -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/passport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/passport/README.md -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/passport/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/passport/lib/index.js -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/passport/node_modules/pause/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-6.1/node_modules/passport/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/node_modules/passport/package.json -------------------------------------------------------------------------------- /beerlocker-6.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/package.json -------------------------------------------------------------------------------- /beerlocker-6.1/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/server.js -------------------------------------------------------------------------------- /beerlocker-6.1/views/dialog.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.1/views/dialog.ejs -------------------------------------------------------------------------------- /beerlocker-6.2/controllers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/controllers/auth.js -------------------------------------------------------------------------------- /beerlocker-6.2/controllers/beer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/controllers/beer.js -------------------------------------------------------------------------------- /beerlocker-6.2/controllers/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/controllers/client.js -------------------------------------------------------------------------------- /beerlocker-6.2/controllers/oauth2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/controllers/oauth2.js -------------------------------------------------------------------------------- /beerlocker-6.2/controllers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/controllers/user.js -------------------------------------------------------------------------------- /beerlocker-6.2/models/beer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/models/beer.js -------------------------------------------------------------------------------- /beerlocker-6.2/models/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/models/client.js -------------------------------------------------------------------------------- /beerlocker-6.2/models/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/models/code.js -------------------------------------------------------------------------------- /beerlocker-6.2/models/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/models/token.js -------------------------------------------------------------------------------- /beerlocker-6.2/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/models/user.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/bcrypt-nodejs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/bcrypt-nodejs/LICENSE -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/bcrypt-nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/bcrypt-nodejs/README.md -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/bcrypt-nodejs/bCrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/bcrypt-nodejs/bCrypt.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/body-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/body-parser/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/body-parser/.travis.yml -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/body-parser/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/body-parser/HISTORY.md -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/body-parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/body-parser/Makefile -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/body-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/body-parser/README.md -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/body-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/body-parser/index.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/body-parser/node_modules/raw-body/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/body-parser/node_modules/raw-body/node_modules/bytes/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/body-parser/node_modules/type-is/.npmignore: -------------------------------------------------------------------------------- 1 | test.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/.npmignore: -------------------------------------------------------------------------------- 1 | # ignore any vim files: 2 | *.sw[a-z] 3 | vim/.netrwhist 4 | node_modules 5 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/ejs/.travis.yml -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/ejs/History.md -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/ejs/Makefile -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/ejs/Readme.md -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/ejs/benchmark.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/ejs/ejs.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/ejs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/ejs/ejs.min.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/examples/list.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/ejs/examples/list.ejs -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/examples/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/ejs/examples/list.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/ejs'); -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/lib/ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/ejs/lib/ejs.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/lib/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/ejs/lib/filters.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/ejs/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/ejs/package.json -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/support/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/ejs/support/compile.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/test/ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/ejs/test/ejs.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/test/fixtures/backslash.ejs: -------------------------------------------------------------------------------- 1 | \foo -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/test/fixtures/backslash.html: -------------------------------------------------------------------------------- 1 | \foo -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/test/fixtures/double-quote.ejs: -------------------------------------------------------------------------------- 1 |

    <%= "lo" + 'ki' %>'s "wheelchair"

    -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/test/fixtures/double-quote.html: -------------------------------------------------------------------------------- 1 |

    loki's "wheelchair"

    -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/test/fixtures/fail.ejs: -------------------------------------------------------------------------------- 1 | <% function foo() return 'foo'; %> -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/test/fixtures/includes/menu-item.ejs: -------------------------------------------------------------------------------- 1 |
  • <% include menu/item %>
  • -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/test/fixtures/para.ejs: -------------------------------------------------------------------------------- 1 |

    hey

    -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/test/fixtures/pet.ejs: -------------------------------------------------------------------------------- 1 |
  • [[= pet.name ]]
  • -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/test/fixtures/single-quote.ejs: -------------------------------------------------------------------------------- 1 |

    <%= 'loki' %>'s wheelchair

    -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/test/fixtures/single-quote.html: -------------------------------------------------------------------------------- 1 |

    loki's wheelchair

    -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/test/fixtures/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | foo: '<%= value %>'; 3 | } -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/ejs/test/fixtures/user.ejs: -------------------------------------------------------------------------------- 1 |

    {= name}

    -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express-session/.npmignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | test/ 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express-session/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/express-session/LICENSE -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express-session/node_modules/buffer-crc32/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express-session/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express-session/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express-session/node_modules/debug/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxbreak": true 3 | } 4 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express-session/node_modules/debug/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | History.md 4 | Makefile 5 | component.json 6 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express-session/node_modules/depd/.npmignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | files/ 3 | test/ 4 | .travis.yml 5 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express-session/node_modules/on-headers/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express-session/node_modules/uid-safe/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store* 2 | node_modules 3 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express-session/node_modules/uid-safe/node_modules/mz/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/express/.npmignore -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/express/History.md -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/express/LICENSE -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/express/Makefile -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/express/Readme.md -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/express/index.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/lib/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/express/lib/express.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/express/lib/request.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/express/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/express/lib/view.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/node_modules/accepts/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/node_modules/accepts/node_modules/negotiator/.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | test 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/node_modules/buffer-crc32/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/node_modules/escape-html/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/node_modules/fresh/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/node_modules/methods/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | # Methods 3 | 4 | HTTP verbs that node core's parser supports. 5 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/node_modules/path-to-regexp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/node_modules/range-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/node_modules/send/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | examples 3 | *.sock 4 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/node_modules/send/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/send'); -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/node_modules/serve-static/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/node_modules/type-is/.npmignore: -------------------------------------------------------------------------------- 1 | test.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/express/package.json -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/mongoose/.npmignore -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/mongoose/.travis.yml -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/mongoose/History.md -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/mongoose/README.md -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/contRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/mongoose/contRun.sh -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/examples/express/README.md: -------------------------------------------------------------------------------- 1 | Mongoose + Express examples 2 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/mongoose/index.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/lib/drivers/SPEC.md: -------------------------------------------------------------------------------- 1 | 2 | # Driver Spec 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/mongoose/lib/error.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/mongoose/lib/index.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/lib/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/mongoose/lib/model.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/lib/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/mongoose/lib/query.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/mongoose/lib/utils.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/node_modules/hooks/.npmignore: -------------------------------------------------------------------------------- 1 | **.swp 2 | node_modules 3 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/node_modules/mongodb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/mongodb'); 2 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/node_modules/mpath/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/node_modules/mpromise/.idea/.name: -------------------------------------------------------------------------------- 1 | mpromise -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/node_modules/mpromise/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/node_modules/mquery/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/node_modules/mquery/test/collection/browser.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/node_modules/mquery/test/collection/mongo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/node_modules/muri/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/node_modules/regexp-clone/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/node_modules/sliced/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/mongoose/package.json -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/mongoose/static.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/mongoose/website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/mongoose/website.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/oauth2orize/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/oauth2orize/.jshintrc -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/oauth2orize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/oauth2orize/LICENSE -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/oauth2orize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/oauth2orize/README.md -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/passport-http/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/passport-http/LICENSE -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/passport-http/node_modules/passport/node_modules/pause/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/passport-http/node_modules/pkginfo/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/passport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/passport/LICENSE -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/passport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/passport/README.md -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/passport/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/passport/lib/index.js -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/passport/node_modules/pause/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /beerlocker-6.2/node_modules/passport/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/node_modules/passport/package.json -------------------------------------------------------------------------------- /beerlocker-6.2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/package.json -------------------------------------------------------------------------------- /beerlocker-6.2/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/server.js -------------------------------------------------------------------------------- /beerlocker-6.2/views/dialog.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/beerlocker-6.2/views/dialog.ejs -------------------------------------------------------------------------------- /translations/README_es_CO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottksmith95/beerlocker/HEAD/translations/README_es_CO.md --------------------------------------------------------------------------------