haraka-plugin-karma 2.1.2 → 2.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,13 +1,22 @@
1
1
  {
2
2
  "name": "haraka-plugin-karma",
3
- "version": "2.1.2",
3
+ "version": "2.1.4",
4
4
  "description": "A heuristics scoring and reputation engine for SMTP connections",
5
5
  "main": "index.js",
6
+ "files": [
7
+ "CHANGELOG.md",
8
+ "config",
9
+ "test"
10
+ ],
6
11
  "scripts": {
7
- "test": "npx mocha",
8
- "lint": "npx eslint index.js test",
9
- "lintfix": "npx eslint --fix index.js test",
10
- "versions": "npx dependency-version-checker check"
12
+ "format": "npm run prettier:fix && npm run lint:fix",
13
+ "lint": "npx eslint@^8 *.js test",
14
+ "lint:fix": "npx eslint@^8 *.js test --fix",
15
+ "prettier": "npx prettier . --check",
16
+ "prettier:fix": "npx prettier . --write --log-level=warn",
17
+ "test": "npx mocha@10",
18
+ "versions": "npx @msimerson/dependency-version-checker check",
19
+ "versions:fix": "npx @msimerson/dependency-version-checker update"
11
20
  },
12
21
  "repository": {
13
22
  "type": "git",
@@ -23,16 +32,14 @@
23
32
  },
24
33
  "homepage": "https://github.com/haraka/haraka-plugin-karma#readme",
25
34
  "dependencies": {
26
- "address-rfc2821": "*",
27
- "haraka-constants": ">=1.0.2",
28
- "haraka-utils": "*",
29
- "haraka-plugin-redis": "2.0.5",
30
- "redis": "4.6.11"
35
+ "address-rfc2821": "^2.1.2",
36
+ "haraka-constants": "^1.0.6",
37
+ "haraka-utils": "^1.1.1",
38
+ "haraka-plugin-redis": "^2.0.6",
39
+ "redis": "^4.6.13"
31
40
  },
32
41
  "devDependencies": {
33
- "eslint": "8.55.0",
34
- "eslint-plugin-haraka": "*",
35
- "haraka-test-fixtures": "*",
36
- "mocha": "10.2.0"
42
+ "@haraka/eslint-config": "^1.1.2",
43
+ "haraka-test-fixtures": "^1.3.4"
37
44
  }
38
45
  }