aboutsummaryrefslogtreecommitdiff
path: root/node_modules/passport-strategy/package.json
diff options
context:
space:
mode:
authorHumairAK <humair88@hotmail.com>2016-07-21 06:24:24 +0000
committerHumairAK <humair88@hotmail.com>2016-07-21 06:24:24 +0000
commit2549ee68e435b77e7e07d3ea95363268cbfe9164 (patch)
tree8f48f6447a4377f1bc15ae7d73dbab3337044720 /node_modules/passport-strategy/package.json
parentd694c1a73f77def42c17b58027f046bf9e1af809 (diff)
Added other dependencies for authentication, made minor adjustments to index.js, added templating for exams, will remove dependencie modules later, keep for now
Diffstat (limited to 'node_modules/passport-strategy/package.json')
-rw-r--r--node_modules/passport-strategy/package.json97
1 files changed, 97 insertions, 0 deletions
diff --git a/node_modules/passport-strategy/package.json b/node_modules/passport-strategy/package.json
new file mode 100644
index 0000000..4ebe9b6
--- /dev/null
+++ b/node_modules/passport-strategy/package.json
@@ -0,0 +1,97 @@
+{
+ "_args": [
+ [
+ "passport-strategy@1.x.x",
+ "/home/humair/School/csc309/a4/solutions_repo/node_modules/passport"
+ ]
+ ],
+ "_from": "passport-strategy@>=1.0.0 <2.0.0",
+ "_id": "passport-strategy@1.0.0",
+ "_inCache": true,
+ "_installable": true,
+ "_location": "/passport-strategy",
+ "_npmUser": {
+ "email": "jaredhanson@gmail.com",
+ "name": "jaredhanson"
+ },
+ "_npmVersion": "1.2.25",
+ "_phantomChildren": {},
+ "_requested": {
+ "name": "passport-strategy",
+ "raw": "passport-strategy@1.x.x",
+ "rawSpec": "1.x.x",
+ "scope": null,
+ "spec": ">=1.0.0 <2.0.0",
+ "type": "range"
+ },
+ "_requiredBy": [
+ "/passport"
+ ],
+ "_resolved": "https://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz",
+ "_shasum": "b5539aa8fc225a3d1ad179476ddf236b440f52e4",
+ "_shrinkwrap": null,
+ "_spec": "passport-strategy@1.x.x",
+ "_where": "/home/humair/School/csc309/a4/solutions_repo/node_modules/passport",
+ "author": {
+ "email": "jaredhanson@gmail.com",
+ "name": "Jared Hanson",
+ "url": "http://www.jaredhanson.net/"
+ },
+ "bugs": {
+ "url": "http://github.com/jaredhanson/passport-strategy/issues"
+ },
+ "dependencies": {},
+ "description": "An abstract class implementing Passport's strategy API.",
+ "devDependencies": {
+ "chai": "1.x.x",
+ "mocha": "1.x.x"
+ },
+ "directories": {},
+ "dist": {
+ "shasum": "b5539aa8fc225a3d1ad179476ddf236b440f52e4",
+ "tarball": "https://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz"
+ },
+ "engines": {
+ "node": ">= 0.4.0"
+ },
+ "homepage": "https://github.com/jaredhanson/passport-strategy#readme",
+ "keywords": [
+ "passport",
+ "strategy"
+ ],
+ "licenses": [
+ {
+ "type": "MIT",
+ "url": "http://www.opensource.org/licenses/MIT"
+ }
+ ],
+ "main": "./lib",
+ "maintainers": [
+ {
+ "name": "jaredhanson",
+ "email": "jaredhanson@gmail.com"
+ }
+ ],
+ "name": "passport-strategy",
+ "optionalDependencies": {},
+ "readme": "# passport-strategy\n\n[![Build](https://travis-ci.org/jaredhanson/passport-strategy.png)](http://travis-ci.org/jaredhanson/passport-strategy)\n[![Coverage](https://coveralls.io/repos/jaredhanson/passport-strategy/badge.png)](https://coveralls.io/r/jaredhanson/passport-strategy)\n[![Dependencies](https://david-dm.org/jaredhanson/passport-strategy.png)](http://david-dm.org/jaredhanson/passport-strategy)\n\n\nAn abstract class implementing [Passport](http://passportjs.org/)'s strategy\nAPI.\n\n## Install\n\n $ npm install passport-strategy\n\n## Usage\n\nThis module exports an abstract `Strategy` class that is intended to be\nsubclassed when implementing concrete authentication strategies. Once\nimplemented, such strategies can be used by applications that utilize Passport\nmiddleware for authentication.\n\n#### Subclass Strategy\n\nCreate a new `CustomStrategy` constructor which inherits from `Strategy`:\n\n```javascript\nvar util = require('util')\n , Strategy = require('passport-strategy');\n\nfunction CustomStrategy(...) {\n Strategy.call(this);\n}\n\nutil.inherits(CustomStrategy, Strategy);\n```\n\n#### Implement Authentication\n\nImplement `autheticate()`, performing the necessary operations required by the\nauthentication scheme or protocol being implemented.\n\n```javascript\nCustomStrategy.prototype.authenticate = function(req, options) {\n // TODO: authenticate request\n}\n```\n\n## Tests\n\n $ npm install\n $ npm test\n\n## Credits\n\n - [Jared Hanson](http://github.com/jaredhanson)\n\n## License\n\n[The MIT License](http://opensource.org/licenses/MIT)\n\nCopyright (c) 2011-2013 Jared Hanson <[http://jaredhanson.net/](http://jaredhanson.net/)>\n",
+ "readmeFilename": "README.md",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/jaredhanson/passport-strategy.git"
+ },
+ "scripts": {
+ "test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
+ },
+ "testling": {
+ "browsers": [
+ "chrome/latest"
+ ],
+ "files": [
+ "test/*.test.js",
+ "test/bootstrap/testling.js"
+ ],
+ "harness": "mocha"
+ },
+ "version": "1.0.0"
+}