UNPKG

@node-saml/passport-saml

Version:

SAML 2.0 authentication strategy for Passport

95 lines (94 loc) 2.81 kB
{ "name": "@node-saml/passport-saml", "version": "5.0.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", "files": [ "lib", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "changelog": "gren changelog --override --generate --head master", "lint": "eslint --ext .ts \"**/*.ts\" --cache && npm run prettier-check", "lint-watch": "onchange -k -p 100 \"**/*.ts\" -- eslint {{file}}", "lint:fix": "eslint --ext .ts --fix src && npm run prettier-format", "prepare": "tsc", "prettier-check": "prettier --config .prettierrc.json --check .", "prettier-format": "prettier --config .prettierrc.json --write .", "prettier-watch": "npm run prettier-format && onchange -k -p 100 \".\" -- prettier --config .prettierrc.json --write {{file}}", "prerelease": "git clean -xfd && npm ci && npm run lint && npm test && npm run build", "release": "release-it", "test": "npm run tsc && nyc mocha", "test-watch": "mocha --watch", "tsc": "tsc", "tsc-watch": "tsc --watch", "update:major": "npx npm-check-updates -i", "update:minor": "npx npm-check-updates -i -t minor", "watch": "concurrently --kill-others \"npm:*-watch\"" }, "dependencies": { "@node-saml/node-saml": "^5.0.1", "@types/express": "^4.17.21", "@types/passport": "^1.0.16", "@types/passport-strategy": "^0.2.38", "passport": "^0.7.0", "passport-strategy": "^1.0.0" }, "devDependencies": { "@cjbarth/github-release-notes": "^4.2.0", "@istanbuljs/nyc-config-typescript": "^1.0.2", "@types/chai": "^4.3.14", "@types/mocha": "^10.0.6", "@types/node": "^18.19.26", "@types/sinon": "^17.0.3", "@typescript-eslint/eslint-plugin": "^7.4.0", "@typescript-eslint/parser": "^7.4.0", "chai": "^4.4.1", "choma": "^1.2.1", "concurrently": "^8.2.2", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", "mocha": "^10.3.0", "nyc": "^15.1.0", "onchange": "^7.1.0", "prettier": "^3.2.5", "prettier-plugin-packagejson": "^2.4.12", "release-it": "^17.1.1", "sinon": "^17.0.1", "ts-node": "^10.9.2", "typescript": "^5.4.3" }, "engines": { "node": ">= 18" }, "publishConfig": { "access": "public" } }