-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
53 lines (53 loc) · 1.21 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
49
50
51
52
53
{
"name": "company-email-validator",
"version": "1.1.0",
"author": "Batyrlan Nurbekov <[email protected]>",
"description": "Provides a fast company / work email validator by checking whether the email domain is in the free email provider list.",
"main": "index",
"scripts": {
"test": "mocha test.js"
},
"typings": "index.d.ts",
"engines": {
"node": ">4.0"
},
"license": "Unlicense",
"keywords": [
"email",
"validation",
"validator",
"syntax",
"company",
"work"
],
"homepage": "http://github.com/bnurbekov/company-email-validator",
"licenses": [
{
"type": "Unlicense",
"url": "http://github.com/bnurbekov/company-email-validator/raw/master/LICENSE"
}
],
"contributors": [
{
"name": "Batyrlan Nurbekov",
"email": "[email protected]",
"url": "https://utterly.app"
},
{
"name": "Malika Nurbekova",
"email": "[email protected]",
"url": "https://utterly.app"
}
],
"repository": {
"type": "git",
"url": "http://github.com/bnurbekov/company-email-validator.git"
},
"devDependencies": {
"chai": "4.1.2",
"mocha": "5.0.5"
},
"dependencies": {
"email-validator": "^2.0.4"
}
}