-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "haraka-plugin-rspamd",
"version": "1.3.2",
"description": "Haraka plugin for rspamd",
"main": "index.js",
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint *.js test",
"lint:fix": "npx eslint --fix *.js test",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "npx mocha@^11",
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haraka/haraka-plugin-rspamd.git"
},
"keywords": [
"haraka",
"plugin",
"rspamd"
],
"author": "Haraka Team <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/haraka/haraka-plugin-rspamd/issues"
},
"homepage": "https://github.com/haraka/haraka-plugin-rspamd#readme",
"devDependencies": {
"haraka-test-fixtures": "^1.3.8",
"@haraka/eslint-config": "^2.0.2"
},
"dependencies": {
"haraka-dsn": "^1.1.0"
},
"files": [
"CHANGELOG.md",
"config"
],
"prettier": {
"singleQuote": true,
"semi": false
}
}