UNPKG

passport-saml

Version:

SAML 2.0 authentication strategy for Passport

98 lines (97 loc) 2.74 kB
{ "name": "passport-saml", "version": "3.1.1", "description": "SAML 2.0 authentication strategy for Passport", "keywords": [ "saml", "adfs", "sso", "shibboleth" ], "repository": { "type": "git", "url": "https://github.com/node-saml/passport-saml.git" }, "license": "MIT", "author": { "name": "Henri Bergius", "email": "henri.bergius@iki.fi", "url": "http://bergie.iki.fi" }, "contributors": [ "Michael Bosworth", "Herbert Vojčík", "Peter Loer", "Mark Stosberg", "Chris Barth", "Andrii Kostenko" ], "main": "./lib/passport-saml", "files": [ "lib", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "changelog": "gren changelog --override --generate", "lint": "eslint --ext .ts \"**/*.ts\" --cache", "lint-watch": "onchange -k -p 100 \"**/*.ts\" -- eslint {{file}}", "lint:fix": "eslint --ext .ts --fix src", "prepare": "tsc", "prettier-check": "prettier --config .prettierrc.json --check .", "prettier-format": "prettier --config .prettierrc.json --write .", "prettier-watch": "onchange -k -p 100 \".\" -- prettier --config .prettierrc.json --write {{file}}", "release": "release-it", "test": "npm run prettier-check && npm run lint && npm run tsc && mocha", "test-watch": "mocha --watch", "tsc": "tsc", "tsc-watch": "tsc --watch", "watch": "concurrently --kill-others \"npm:*-watch\"" }, "dependencies": { "debug": "^4.3.1", "passport-strategy": "^1.0.0", "xml-crypto": "^2.1.2", "xml-encryption": "^1.2.4", "xml2js": "^0.4.23", "xmlbuilder": "^15.1.1", "xmldom": "^0.6.0" }, "devDependencies": { "@types/debug": "^4.1.5", "@types/mocha": "^8.2.2", "@types/node": "^14.14.44", "@types/passport-strategy": "^0.2.35", "@types/request": "^2.48.5", "@types/sinon": "^10.0.0", "@types/xml-crypto": "^1.4.1", "@types/xml-encryption": "^1.2.0", "@types/xml2js": "^0.4.8", "@types/xmldom": "^0.1.30", "@typescript-eslint/eslint-plugin": "^4.23.0", "@typescript-eslint/parser": "^4.23.0", "body-parser": "^1.19.0", "choma": "^1.2.1", "concurrently": "^6.1.0", "eslint": "^7.26.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^3.4.0", "express": "^4.17.1", "github-release-notes": "^0.17.3", "mocha": "^8.4.0", "onchange": "^7.1.0", "passport": "^0.4.1", "prettier": "^2.3.0", "prettier-plugin-packagejson": "^2.2.11", "release-it": "^14.6.2", "request": "^2.83.0", "should": "^13.2.3", "sinon": "^10.0.0", "ts-node": "^9.1.1", "typescript": "^4.2.4" }, "engines": { "node": ">= 12" } }