-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "haraka-plugin-elasticsearch",
"version": "8.0.3",
"description": "Haraka plugin that saves logs to Elasticsearch",
"files": [
"CHANGELOG.md",
"config",
"index-templates"
],
"main": "index.js",
"scripts": {
"lint": "npx eslint@^8 *.js test",
"lint:fix": "npx eslint@^8 --fix *.js test",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "npx mocha@^10",
"versions": "npx dependency-version-checker check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haraka/haraka-plugin-elasticsearch.git"
},
"keywords": [
"haraka",
"plugin",
"elasticsearch"
],
"author": "Haraka Team <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/haraka/haraka-plugin-elasticsearch/issues"
},
"homepage": "https://github.com/haraka/haraka-plugin-elasticsearch#readme",
"dependencies": {
"@elastic/elasticsearch": "^8.15.0",
"haraka-utils": "^1.1.3"
},
"devDependencies": {
"@haraka/eslint-config": "^1.1.5",
"haraka-test-fixtures": "^1.3.7"
}
}