forked from mediamonks/node-spf-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 923 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
41
42
43
{
"name": "spf-check",
"version": "0.4.10",
"description": "SPF validator",
"keywords": [
"spf",
"dns"
],
"license": "MIT",
"dependencies": {
"ipaddr.js": "^1.8.1",
"lodash": "^4.17.11",
"spf-parse": "^1.0.6",
"tldjs": "^2.3.1"
},
"devDependencies": {
"jasmine": "^3.3.1",
"jasmine-spec-reporter": "^4.2.1",
"nyc": "^13.1.0"
},
"scripts": {
"test": "jasmine",
"testcov": "nyc jasmine",
"htmlcov": "nyc report --reporter=html",
"lcov": "nyc report --reporter=text-lcov"
},
"nyc": {
"exclude": [
"spec/"
]
},
"repository": {
"type": "git",
"url": "https://github.com/cakemail/node-spf-check.git"
},
"bugs": {
"url": "https://github.com/cakemail/node-spf-check/issues"
},
"homepage": "https://github.com/cakemail/node-spf-check#readme",
"publishConfig": {
"registry": "https://npm.ovh.cakemail.io"
}
}