express-authentication-oauth2
Version: 
Authenticate against other oauth2 providers.
40 lines (39 loc) • 1.24 kB
JSON
{
	"name": "express-authentication-oauth2",
	"version": "0.1.1",
	"description": "Authenticate against other oauth2 providers.",
	"author": "Izaak Schroeder <izaak.schroeder@gmail.com>",
	"keywords": [ "express-authentication", "express", "oauth", "oauth2" ],
	"license": "CC0-1.0",
	"homepage": "https://github.com/izaakschroeder/express-authentication-oauth2-client",
	"repository": {
		"type": "git",
		"url": "https://github.com/izaakschroeder/express-authentication-oauth2-client.git"
	},
	"main": "lib/oauth2.js",
	"scripts": {
		"test": "npm run lint && npm run spec && npm run coverage",
		"spec": "NODE_PATH=lib NODE_ENV=test istanbul cover node_modules/.bin/_mocha -- -r test/helpers/chai -r test/helpers/sinon -R spec test/spec",
		"lint": "eslint --ignore-path .gitignore .",
		"coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100"
	},
	"dependencies": {
		"lodash": "^2.4.1",
		"superagent": "^0.21.0",
		"jwt-simple": "^0.2.0"
	},
	"devDependencies": {
		"eslint": "*",
		"eslint-plugin-nodeca": "*",
		"mocha": "*",
		"istanbul": "*",
		"chai": "*",
		"chai-things": "*",
		"sinon": "*",
		"sinon-chai": "*",
		"supertest": "*"
	},
	"peerDependencies": {
		"express-authentication": "^0.2.0"
	}
}