forked from eliashussary/mail-confirm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 938 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": "mail-confirm",
"version": "1.0.2",
"description": "A Node Js API for three stage email validation including, pattern, MX, and mailbox existence validation.",
"main": "./build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/babel src --out-dir build",
"doc": "jsdoc2md ./build/index.js"
},
"keywords": [
"mailgun",
"email",
"validation",
"mailbox",
"verification",
"smtp",
"email verification",
"email validation",
"mailbox validation",
"VRFY",
"EHLO",
"HELO",
"MAIL FROM",
"RCPT TO"
],
"author": {
"name": "Elias Hussary",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/eliashussary/mail-confirm"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0"
}
}