-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1005 Bytes
/
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
{
"name": "haraka-plugin-rcpt_to-strip-tagging",
"version": "1.0.0",
"description": "Strip email addresses of tagging (e.g. [email protected] -> [email protected])",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"address-rfc2821": "*"
},
"devDependencies": {
"eslint": ">=8",
"eslint-plugin-haraka": "*",
"haraka-test-fixtures": "*",
"mocha": "*"
},
"scripts": {
"lint": "npx eslint *.js test/*.js",
"lintfix": "npx eslint --fix *.js test/*.js",
"test": "npx mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haraka/haraka-plugin-rcpt_to-strip-tagging.git"
},
"keywords": [
"haraka",
"smtp",
"mta",
"limit"
],
"author": "Matt Sergeant <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/haraka/haraka-plugin-rcpt_to-strip-tagging/issues"
},
"homepage": "https://github.com/haraka/haraka-plugin-rcpt_to-strip-tagging#readme"
}