-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.48 KB
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
47
48
49
50
51
{
"name": "haraka-plugin-elasticsearch",
"version": "8.2.1",
"description": "Haraka plugin that saves logs to Elasticsearch",
"files": [
"CHANGELOG.md",
"config",
"templates"
],
"main": "index.js",
"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 --fix *.js test",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"qlty": "qlty smells --all",
"test": "node --test test/*.js",
"test:coverage": "npx c8 --reporter=text --reporter=text-summary npm test",
"versions": "npx npm-dep-mgr check",
"versions:fix": "npx npm-dep-mgr update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haraka/haraka-plugin-elasticsearch.git"
},
"keywords": [
"haraka",
"plugin",
"elasticsearch"
],
"author": "Haraka Team <haraka.mail@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/haraka/haraka-plugin-elasticsearch/issues"
},
"homepage": "https://github.com/haraka/haraka-plugin-elasticsearch#readme",
"dependencies": {
"@elastic/elasticsearch": "^9.4.2",
"haraka-utils": "^2.1.0"
},
"devDependencies": {
"@haraka/eslint-config": "^3.0.0",
"haraka-test-fixtures": "^1.7.0"
},
"prettier": {
"singleQuote": true,
"semi": false
}
}