forked from EmailVerify/email-verify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.6 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
{
"name": "email-verify",
"version": "0.2.1",
"description": "A tool to verify an email address exits via SMTP",
"main": "index.js",
"dependencies": {
"bluebird": "^3.5.1",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"validator": "^9.1.1"
},
"devDependencies": {},
"bugs": {
"url": "https://github.com/bighappyworld/email-verify/issues"
},
"scripts": {
"test": "nyc --reporter=lcov mocha ./test/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bighappyworld/email-verify"
},
"preferGlobal": true,
"bin": {
"email-verify": "./app.js"
},
"author": "Robert Oaks <[email protected]> (https://github.com/bighappyworld)",
"contributors": [
"Anatolij Ostroumov <[email protected]> (https://github.com/vodolaz095)",
"robert-irribarren <[email protected]> (https://github.com/robert-irribarren)",
"Kirill Beresnev <[email protected]> (https://github.com/DeRain)",
"Santiago Castro <[email protected]> (https://github.com/bryant1410)",
"Fones <[email protected]> (https://github.com/fones)",
"Bramzor <[email protected]> (https://github.com/Bramzor)",
"zh99998 <[email protected]> (https://github.com/zh99998)",
"sancowinx <[email protected]> (https://github.com/sancowinx)",
"Martin Edwards <[email protected]> (https://github.com/mledwards)",
"james075 <[email protected]> (https://github.com/james075)",
"Matti Savolainen <[email protected]> (https://github.com/Nomon)"
],
"license": "ISC",
"keywords": [
"email",
"smtp",
"verify",
"validate"
]
}