-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "haraka-plugin-known-senders",
"version": "1.1.1",
"description": "Increase the reputation of recognized sender domains.",
"files": [
"CHANGELOG.md",
"config"
],
"main": "index.js",
"scripts": {
"cover": "npx nyc --reporter=lcov --hook-run-in-context npm run test",
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint *.js test/*.js",
"lint:fix": "npx eslint --fix *.js test/*.js",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "npx mocha --exit",
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haraka/haraka-plugin-known-senders.git"
},
"keywords": [
"Haraka",
"domain",
"reputation",
"well-known",
"sender",
"whitelist"
],
"author": "Matt Simerson <matt@tnpi.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/haraka/haraka-plugin-known-senders/issues"
},
"homepage": "https://github.com/haraka/haraka-plugin-known-senders#readme",
"devDependencies": {
"address-rfc2821": "^2.1.2",
"haraka-test-fixtures": "^1.3.8",
"mocha": "^11.1.0",
"@haraka/eslint-config": "^2.0.2"
},
"dependencies": {
"haraka-plugin-redis": "^2.0.8",
"haraka-tld": "^1.2.3"
}
}