haraka-plugin-spf
Version:
Sender Policy Framework (SPF) plugin for Haraka
58 lines • 1.71 kB
JSON
{
"name": "haraka-plugin-spf",
"version": "1.3.0",
"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 *.js bin/spf lib test",
"lint:fix": "npx eslint --fix *.js bin/spf lib test",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "node --test test/*.js",
"test:coverage": "node --test --experimental-test-coverage --test-coverage-exclude=package.json --test-coverage-exclude=test/*.js",
"test:coverage:lcov": "mkdir -p coverage && node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info",
"versions": "npx npm-dep-mgr check",
"versions:fix": "npx npm-dep-mgr update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haraka/haraka-plugin-spf.git"
},
"keywords": [
"haraka",
"haraka-plugin",
"plugin",
"spf"
],
"author": "Haraka Team <haraka.team@gmail.com>",
"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.2.0",
"haraka-net-utils": "^1.8.2",
"ipaddr.js": "^2.4.0",
"nopt": "^10.0.0"
},
"devDependencies": {
"@haraka/email-address": "^3.1.4",
"@haraka/eslint-config": "^2.0.4",
"haraka-test-fixtures": "^1.6.0"
},
"prettier": {
"singleQuote": true,
"semi": false
}
}