-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "haraka-plugin-geoip",
"version": "1.1.1",
"description": "provide geographic information about mail senders.",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=14"
},
"scripts": {
"cover": "NODE_ENV=cov npx nyc --reporter=lcovonly npm run test",
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint index.js test/*.js",
"lint:fix": "npx eslint --fix index.js test/*.js",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "npx mocha@^11",
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haraka/haraka-plugin-geoip.git"
},
"keywords": [
"haraka",
"email",
"geoip",
"smtp",
"mta"
],
"author": "Matt Simerson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/haraka/haraka-plugin-geoip/issues"
},
"homepage": "https://github.com/haraka/haraka-plugin-geoip#readme",
"devDependencies": {
"haraka-test-fixtures": "^1.3.8",
"@haraka/eslint-config": "^2.0.2"
},
"dependencies": {
"maxmind": "^4.3.24",
"haraka-net-utils": "^1.7.1"
},
"files": [
"CHANGELOG.md",
"config"
]
}