-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.31 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
47
48
49
50
51
52
{
"name": "haraka-results",
"version": "2.2.4",
"description": "Haraka results store for connections and transactions",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=14"
},
"files": [
"CHANGELOG.md",
"config"
],
"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",
"versions": "npx @msimerson/dependency-version-checker check",
"versions:fix": "npx @msimerson/dependency-version-checker update && npm run prettier:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haraka/haraka-results.git"
},
"keywords": [
"haraka",
"results",
"log",
"messages"
],
"author": "Matt Simerson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/haraka/haraka-results/issues"
},
"homepage": "https://github.com/haraka/haraka-results#readme",
"devDependencies": {
"@haraka/eslint-config": "^1.1.3",
"haraka-test-fixtures": "^1.3.6"
},
"dependencies": {
"haraka-config": "^1.1.0"
},
"optionalDependencies": {
"redis": "^4.6.13"
}
}