{ "name": "@node-saml/node-saml", "version": "4.0.5", "description": "SAML 2.0 implementation for Node.js", "keywords": [ "saml", "adfs", "sso", "shibboleth" ], "repository": { "type": "git", "url": "https://github.com/node-saml/node-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", "Andreas Zoellner" ], "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": "onchange -k -p 100 \".\" -- prettier --config .prettierrc.json --write {{file}}", "prerelease": "git clean -xfd && npm ci && npm test && npm run build", "release": "release-it", "test": "npm run prettier-check && npm run lint && npm run tsc && nyc mocha", "test-watch": "mocha --watch", "tsc": "tsc", "tsc-watch": "tsc --watch", "watch": "concurrently --kill-others \"npm:*-watch\"" }, "dependencies": { "@types/debug": "^4.1.7", "@types/passport": "^1.0.11", "@types/xml-crypto": "^1.4.2", "@types/xml-encryption": "^1.2.1", "@types/xml2js": "^0.4.11", "@xmldom/xmldom": "^0.8.6", "debug": "^4.3.4", "xml-crypto": "^3.0.1", "xml-encryption": "^3.0.2", "xml2js": "^0.5.0", "xmlbuilder": "^15.1.1" }, "devDependencies": { "@cjbarth/github-release-notes": "^3.0.0", "@istanbuljs/nyc-config-typescript": "^1.0.2", "@types/chai": "^4.3.3", "@types/mocha": "^10.0.0", "@types/node": "^14.18.33", "@types/sinon": "^10.0.13", "@typescript-eslint/eslint-plugin": "^5.45.0", "@typescript-eslint/parser": "^5.43.0", "body-parser": "^1.20.1", "chai": "^4.3.6", "choma": "^1.2.1", "concurrently": "^7.6.0", "eslint": "^8.29.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-deprecation": "^1.3.3", "eslint-plugin-prettier": "^4.2.1", "express": "^4.18.2", "mocha": "^10.1.0", "nyc": "^15.1.0", "onchange": "^7.1.0", "prettier": "^2.8.0", "prettier-plugin-packagejson": "^2.3.0", "release-it": "^15.5.0", "sinon": "^14.0.1", "ts-node": "^10.9.1", "typescript": ">=4.0.0 <4.9.0" }, "engines": { "node": ">= 14" }, "publishConfig": { "access": "public" } }