-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"author": "Haraka Team <[email protected]>",
"name": "haraka-plugin-attachment",
"license": "MIT",
"description": "A message attachment scanning plugin for Haraka",
"version": "1.1.2",
"homepage": "https://github.com/haraka/haraka-plugin-attachment",
"repository": {
"type": "git",
"url": "[email protected]:haraka/haraka-plugin-attachment.git"
},
"main": "index.js",
"files": [
"CHANGELOG.md",
"config"
],
"engines": {
"node": ">= 16"
},
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint@^8 *.js test",
"lint:fix": "npx eslint@^8 *.js test --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "npx mocha@10 --exit",
"versions": "npx @msimerson/dependency-version-checker check",
"versions:fix": "npx @msimerson/dependency-version-checker update && npm run prettier:fix"
},
"dependencies": {
"tmp": "^0.2.3",
"haraka-constants": "^1.0.6",
"haraka-utils": "^1.1.2"
},
"optionalDependencies": {},
"devDependencies": {
"@haraka/eslint-config": "^1.1.3",
"haraka-config": "^1.1.0",
"haraka-test-fixtures": "^1.3.6"
},
"bugs": {
"url": "https://github.com/haraka/haraka-plugin-attachment/issues"
}
}