haraka-plugin-clamd
Version:
Haraka plugin that scans emails with clamd
52 lines (51 loc) • 1.68 kB
JSON
{
"name": "haraka-plugin-clamd",
"version": "1.0.6",
"description": "Haraka plugin that scans emails with clamd",
"main": "index.js",
"files": [
"CHANGELOG.md",
"config"
],
"scripts": {
"prepare": "git rev-parse --git-dir >/dev/null 2>&1 && git config core.hooksPath .githooks || true",
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint *.js test",
"lint:fix": "npx eslint *.js test --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"qlty": "qlty smells --all",
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage --test-coverage-exclude=package.json --test-coverage-exclude=test/*.js test/*.js",
"test:coverage:lcov": "mkdir -p coverage && node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info test/*.js",
"versions": "npx npm-dep-mgr check",
"versions:fix": "npx npm-dep-mgr update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haraka/haraka-plugin-clamd.git"
},
"keywords": [
"haraka",
"plugin",
"clamd"
],
"author": "Haraka Team <haraka.team@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/haraka/haraka-plugin-clamd/issues"
},
"homepage": "https://github.com/haraka/haraka-plugin-clamd#readme",
"dependencies": {
"haraka-net-utils": "^1.9.2",
"haraka-utils": "^2.2.1"
},
"devDependencies": {
"@haraka/eslint-config": "^3.0.0",
"haraka-test-fixtures": "^1.7.1"
},
"prettier": {
"singleQuote": true,
"semi": false
}
}