forked from camj256/mailgun-validate-email
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "mailgun-validate-email",
"version": "2.0.3",
"description": "validate email addresses with mailgun API",
"main": "src/index.js",
"scripts": {
"lint": "standard",
"test": "node ./node_modules/.bin/lab -r tap tests/*-test.js | ./node_modules/.bin/tap-spec",
"test-cov": "node ./node_modules/.bin/lab -t 88 tests/*-test.js",
"test-cov-html": "node ./node_modules/.bin/lab -r html -o coverage.html tests/*-test.js"
},
"pre-commit": [
"lint",
"test",
"test-cov"
],
"repository": {
"type": "git",
"url": "https://github.com/diasdavid/mailgun-validate-email"
},
"keywords": [
"mailgun",
"email",
"validate",
"address",
"spam",
"scam",
"valid"
],
"author": "David Dias",
"license": "MIT",
"bugs": {
"url": "https://github.com/diasdavid/mailgun-validate-email"
},
"dependencies": {
"request": "^2.25.0"
},
"devDependencies": {
"code": "^1.2.1",
"jscs": "^1.7.3",
"jshint": "^2.5.10",
"lab": "^5.0.3",
"pre-commit": "^1.1.2",
"tap-spec": "^2.1.0"
}
}