-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "AzureAD-LDAP-wrapper",
"version": "2.0.3",
"type": "commonjs",
"engines": {
"node": ">=17"
},
"description": "LDAP-Wrapper for 'microsoft 365' users (former 'office 365' - via AzureAD without AADDS)",
"author": "Adriano Hänggli <[email protected]>",
"main": "index.js",
"scripts": {
"start": "node --openssl-legacy-provider index.js",
"lint": "npm exec --no -- eslint *.js",
"test": "set \"NODE_OPTIONS=--openssl-legacy-provider\" && jest --runInBand --coverage",
"test:watch": "jest --watchAll --coverage"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ahaenggli/AzureAD-LDAP-wrapper"
},
"dependencies": {
"@azure/msal-node": "2.16.2",
"axios": "~1.7.9",
"diacritic": "0.0.2",
"dotenv": "^16.4.7",
"hashcode": "1.0.3",
"https-proxy-agent": "7.0.6",
"ldapjs": "~3.0.7"
},
"devDependencies": {
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-security": "~3.0.1",
"jest": "^29.7.0"
},
"overrides": {
"ldapjs": {
"@ldapjs/controls": "github:ahaenggli/ldapjs-controls#master"
}
}
}