-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
49 lines (49 loc) · 1.32 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-limit",
"version": "1.2.5",
"description": "enforce various types of limits on remote MTAs",
"main": "index.js",
"files": [
"config"
],
"directories": {
"test": "test"
},
"dependencies": {
"haraka-constants": "^1.0.7",
"haraka-plugin-redis": "^2.0.7",
"ipaddr.js": "^2.2.0",
"redis": "^4.6.14"
},
"devDependencies": {
"address-rfc2821": "^2.1.2",
"@haraka/eslint-config": "^1.1.5",
"haraka-test-fixtures": "^1.3.7"
},
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint@^8 *.js test",
"lint:fix": "npx eslint@^8 *.js test --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "npx mocha@10 --exit",
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update && npm run prettier:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haraka/haraka-plugin-limit.git"
},
"keywords": [
"haraka",
"smtp",
"mta",
"limit"
],
"author": "Matt Simerson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/haraka/haraka-plugin-limit/issues"
},
"homepage": "https://github.com/haraka/haraka-plugin-limit#readme"
}