forked from node-saml/passport-saml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.39 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
{
"name": "passport-saml",
"version": "2.0.2",
"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",
"test",
"multiSamlStrategy.js",
"multiSamlStrategy.d.ts",
"docs",
"package-lock.json"
],
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts src",
"lint-watch": "onchange 'src/**/*.ts' -- eslint {{file}}",
"lint:fix": "eslint --ext .ts --fix src",
"prepublishOnly": "tsc",
"prettier-check": "prettier --config .prettierrc --check .",
"prettier-format": "prettier --config .prettierrc --write .",
"prettier-watch": "onchange 'src/**/*.ts' -- prettier --write {{file}}",
"test": "npm run lint && npm run tsc && mocha",
"tsc": "tsc",
"tsc-watch": "tsc && tsc --watch",
"watch": "concurrently --kill-others \"npm:*-watch\""
},
"dependencies": {
"debug": "^3.1.0",
"passport-strategy": "*",
"xml-crypto": "^2.0.0",
"xml-encryption": "1.2.1",
"xml2js": "^0.4.23",
"xmlbuilder": "^11.0.0",
"xmldom": "0.1.x"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^14.14.5",
"@types/passport-strategy": "^0.2.35",
"@types/xml-crypto": "^1.4.1",
"@types/xml2js": "^0.4.5",
"@types/xmldom": "^0.1.30",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"body-parser": "^1.17.1",
"concurrently": "^5.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"express": "^4.16.2",
"mocha": "^6.0.2",
"onchange": "^7.1.0",
"passport": "0.4.x",
"prettier": "2.1.2",
"prettier-plugin-packagejson": "^2.2.7",
"release-it": "^14.2.1",
"request": "^2.83.0",
"should": "*",
"sinon": "^7.2.7",
"typescript": "^4.0.5"
},
"engines": {
"node": ">= 10"
},
"release-it": {
"github": {
"release": true
}
}
}