-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.04 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "authheaders",
"description": "Node.js wrapper around the Python pip package authheaders",
"version": "2.0.2",
"author": "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)",
"bugs": {
"url": "https://github.com/forwardemail/authheaders/issues",
"email": "niftylettuce@gmail.com"
},
"contributors": [
"Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)"
],
"dependencies": {
"debug": "^4.1.1",
"ms": "^2.1.2",
"semver": "^7.3.2"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"ava": "latest",
"codecov": "latest",
"cross-env": "latest",
"eslint": "latest",
"eslint-config-xo-lass": "latest",
"fixpack": "latest",
"husky": "latest",
"lint-staged": "latest",
"nyc": "latest",
"remark-cli": "latest",
"remark-preset-github": "latest",
"xo": "latest"
},
"engines": {
"node": ">= 10"
},
"homepage": "https://github.com/forwardemail/authheaders",
"keywords": [
"arc",
"arc",
"authenticated",
"chain",
"dkim",
"authheaders",
"domain",
"domainkeys",
"email",
"header",
"headers",
"keys",
"mail",
"message",
"messages",
"parse",
"parser",
"pip",
"python",
"received",
"sign",
"signature",
"signatures",
"smtp",
"validate",
"validation",
"validator",
"validators",
"verification",
"verify"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/forwardemail/authheaders"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "yarn run lint:js && yarn run lint:md",
"lint:js": "xo",
"lint:md": "remark . -qfo",
"pretest": "yarn run lint",
"test": "cross-env NODE_ENV=test ava",
"test-coverage": "cross-env NODE_ENV=test nyc yarn run test"
},
"xo": {
"prettier": true,
"space": true,
"extends": [
"xo-lass"
]
}
}