forked from node-saml/passport-saml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.71 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "passport-saml",
"version": "3.0.0",
"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": "[email protected]",
"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",
"node-saml": "^4.0.0-beta.0",
"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"
}
}