forked from EmailVerify/email-verify
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.69 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.69 KB
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
{
"name": "@gradeup/email-verify",
"version": "0.2.6",
"description": "A tool to verify an email address exits via SMTP",
"main": "index.js",
"dependencies": {
"bluebird": "^3.5.1",
"validator": "^13.7.0"
},
"devDependencies": {
"mocha": "^10.0.0",
"nyc": "^15.1.0"
},
"bugs": {
"url": "https://github.com/gradeup/email-verify/issues"
},
"scripts": {
"test": "nyc --reporter=lcov mocha ./test/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/gradeup/email-verify"
},
"preferGlobal": true,
"bin": {
"email-verify": "./app.js"
},
"author": "Arpit Gupta <[email protected]> (https://github.com/arpit27gupta)",
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/"
},
"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"
]
}