forked from tasansga/haraka-ldap
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.24 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
{
"name": "haraka-plugin-ldap",
"version": "1.1.3",
"description": "Haraka plugin for LDAP",
"files": [
"aliases.js",
"authn.js",
"authz.js",
"pool.js",
"rcpt_to.js",
"CHANGELOG.md",
"config",
"test"
],
"main": "index.js",
"directories": {},
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint@^8 *.js test/*.js",
"lint:fix": "npx eslint@^8 *.js test/*.js --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "npx mocha --exit",
"versions": "npx dependency-version-checker check"
},
"keywords": [
"haraka",
"ldap",
"rcpt_to",
"recipient",
"aliases",
"authn",
"authentication",
"authz",
"authorization"
],
"author": {
"name": "Ansgar Tasler",
"email": "[email protected]"
},
"repository": "https://github.com/haraka/haraka-plugin-ldap.git",
"license": "MIT",
"devDependencies": {
"btoa": "*",
"eslint": "8.57.0",
"@haraka/eslint-config": "^1.1.2",
"haraka-test-fixtures": "^1.0.0",
"mocha": "10.3.0"
},
"dependencies": {
"address-rfc2821": "*",
"haraka-constants": "*",
"ldapjs": "^2.3.3"
}
}