forked from softvu/spf-parse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.36 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
{
"name": "spf-parse",
"version": "1.0.6",
"description": "Parse SPF (Sender Polify Framework) records",
"main": "index.js",
"scripts": {
"test": "xo && ava",
"report": "nyc ava && nyc report --reporter=html"
},
"files": [
"index.js",
"mechanisms.js",
"mechanismerror.js",
"prefixes.js"
],
"repository": {
"type": "git",
"url": "https://github.com/cakemail/spf-parse.git"
},
"keywords": [
"spf",
"email",
"mail",
"policy",
"parse"
],
"author": "Brian Hann",
"license": "MIT",
"bugs": {
"url": "https://github.com/cakemail/spf-parse/issues"
},
"homepage": "https://github.com/cakemail/spf-parse#readme",
"devDependencies": {
"ava": "^0.17.0",
"coveralls": "^2.11.15",
"cz-conventional-changelog": "^1.2.0",
"nyc": "^10.0.0",
"xo": "^0.17.1"
},
"xo": {
"esnext": true,
"rules": {
"prefer-const": 0,
"no-negated-condition": 0,
"brace-style": [
"error",
"stroustrup"
],
"no-debugger": [
"warn"
],
"no-useless-call": 0
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"ipaddr.js": "^1.2.0",
"lodash": "^4.17.3",
"tldjs": "^1.7.0"
},
"publishConfig": {
"registry": "https://npm.ovh.cakemail.io"
}
}