generated from haraka/haraka-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "haraka-plugin-spf",
"version": "1.2.8",
"description": "Sender Policy Framework (SPF) plugin for Haraka",
"main": "index.js",
"files": [
"CHANGELOG.md",
"bin",
"config",
"lib"
],
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint@^8 *.js bin/spf lib test",
"lint:fix": "npx eslint@^8 --fix *.js bin/spf lib test",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "npx mocha@10",
"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-spf.git"
},
"keywords": [
"haraka",
"haraka-plugin",
"plugin",
"spf"
],
"author": "Haraka Team <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/haraka/haraka-plugin-spf/issues"
},
"homepage": "https://github.com/haraka/haraka-plugin-spf#readme",
"bin": {
"spf": "./bin/spf"
},
"dependencies": {
"haraka-dsn": "^1.1.0",
"haraka-net-utils": "^1.7.0",
"ipaddr.js": "^2.2.0",
"nopt": "^7.2.1"
},
"devDependencies": {
"@haraka/eslint-config": "^1.1.5",
"haraka-test-fixtures": "^1.3.7"
}
}