-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
87 lines (87 loc) · 2.4 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
{
"name": "ad-ldap-connector",
"version": "6.2.0",
"description": "ADLDAP Federation Connector",
"main": "server.js",
"scripts": {
"lint:check": "npx eslint admin/**/*.js connector-setup/**/*.js lib/** test/**/*.js",
"lint:fix": "npx eslint admin/** connector-setup/** lib/** test/** --fix",
"test": "NODE_TLS_REJECT_UNAUTHORIZED=0 mocha --timeout 50000 --reporter spec --exit",
"snyk": "snyk test",
"start": "node server.js",
"start-local": "source .env && npm run start"
},
"repository": {
"type": "git",
"url": "https://github.com/auth0/ad-ldap-connector.git"
},
"keywords": [
"sql",
"federation",
"identity",
"ws-federation"
],
"author": "Auth0",
"license": "MIT",
"dependencies": {
"@auth0/thumbprint": "0.0.6",
"archiver": "^3.0.0",
"async": "~2.6.4",
"axios": "^1.6.4",
"binary": "^0.3.0",
"body-parser": "^1.19.2",
"cb": "~0.1.0",
"colors": "~0.6.0-1",
"commander": "~1.1.1",
"cookie-parser": "^1.4.3",
"cookie-sessions": "github:auth0/cookie-sessions#53a8aae",
"csurf": "1.9.0",
"diff_match_patch": "^0.1.1",
"ejs": "^2.5.5",
"evp_bytestokey": "^1.0.3",
"express": "^4.18.1",
"express-passport-logout": "~0.1.0",
"express-session": "^1.15.6",
"freeport": "~1.0.2",
"jsonwebtoken": "^8.5.1",
"kerberos-server": "^1.0.0",
"ldapjs": "^2.3.2",
"lodash": "^4.17.21",
"lru-cache": "~2.7.3",
"morgan": "^1.9.1",
"ms": "^2.0.0",
"multer": "^1.4.5-lts.1",
"nconf": "^0.12.1",
"object-sizeof": "^1.4.0",
"passport": "~0.1.16",
"passport-local": "~0.1.6",
"passport-ssl-certificate": "https://github.com/jaredhanson/passport-ssl-certificate.git#826c16d040841ec4b20db1a4cfe8bac81c931462",
"passport-windowsauth": "^3.0.0",
"rimraf": "~2.7.1",
"selfsigned": "^1.10.4",
"stream-rotate": "crigot/stream-rotate#31fe967e6b1d5fdbaf641091877e39e54ae0dd8c",
"tunnel": "~0.0.3",
"unzipper": "^0.10.0",
"url-join": "^0.0.1",
"win-ca": "^3.0.4",
"winston": "~2.2.0",
"ws": "^1.1.5",
"wsfed": "^6.0.0",
"xtend": "~2.1.1"
},
"devDependencies": {
"bump-version": "^0.5.0",
"chai": "~1.7.2",
"eslint": "^8.45.0",
"mocha": "^8.2.1",
"proxyquire": "^2.1.3",
"sinon": "^9.0.3",
"snyk": "^1.381.1"
},
"overrides": {
"ansi-regex": "3.0.1"
},
"engines": {
"node": "^18.16.0"
}
}