-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.49 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.49 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
52
53
54
55
56
57
58
{
"name": "haraka-plugin-dkim",
"version": "1.1.0",
"description": "Haraka DKIM plugin",
"bin": {
"dkim_key_gen.sh": "./config/dkim_key_gen.sh",
"dkimverify": "./bin/dkimverify"
},
"main": "index.js",
"files": [
"CHANGELOG.md",
"bin",
"config",
"lib"
],
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint *.js test",
"lint:fix": "npx eslint *.js test --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "node --test",
"versions": "npx npm-dep-mgr check",
"versions:fix": "npx npm-dep-mgr update",
"test:coverage": "npx c8 --reporter=text --reporter=text-summary npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haraka/haraka-plugin-dkim.git"
},
"keywords": [
"haraka",
"haraka-plugin",
"dkim"
],
"author": "Welcome Member <haraka.team@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/haraka/haraka-plugin-dkim/issues"
},
"homepage": "https://github.com/haraka/haraka-plugin-dkim#readme",
"devDependencies": {
"@haraka/eslint-config": "^2.0.4",
"haraka-test-fixtures": "^1.4.1"
},
"dependencies": {
"address-rfc2821": "^2.1.5",
"address-rfc2822": "^2.2.3",
"async": "^3.2.6",
"haraka-email-message": "^1.3.2",
"haraka-utils": "^1.1.4",
"nopt": "^9.0.0"
},
"prettier": {
"singleQuote": true,
"semi": false
}
}