forked from jhermsmeier/node-dkim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 988 Bytes
/
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
{
"name": "dkim",
"version": "0.3.0",
"description": "DomainKeys Identified Mail (DKIM)",
"author": "Jonas Hermsmeier <[email protected]> (https://jhermsmeier.de)",
"license": "MIT",
"keywords": [
"email",
"mail",
"dkim",
"signature",
"domainkeys",
"identified",
"message"
],
"main": "lib/dkim.js",
"dependencies": {
"dkim-key": "~1.1.2",
"dkim-signature": "~1.1.2"
},
"devDependencies": {
"jsdoc-to-markdown": "~2.0.1",
"mocha": "~3.2.0"
},
"scripts": {
"test": "mocha",
"doc": "jsdoc2md 'lib/**/*.js' -d 3 -t .github/README-TEMPLATE.hbs --separators --param-list-format list --global-index-format none > README.md"
},
"homepage": "https://github.com/jhermsmeier/node-dkim",
"repository": {
"type": "git",
"url": "git+https://github.com/jhermsmeier/node-dkim.git"
},
"bugs": {
"url": "https://github.com/jhermsmeier/node-dkim/issues"
},
"directories": {
"test": "test"
}
}