-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "is-biz-mail",
"type": "module",
"version": "0.3.3",
"license": "MIT",
"description": "isBizMail tells you whether a given email address is free (gmail.com, yahoo.es, yandex.ru etc) or not",
"homepage": "https://github.com/salaros/is-biz-mail-js",
"devDependencies": {
"coveralls": "^3.1.1",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"should": "^13.2.3"
},
"main": "./dist/index.cjs",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"test": "./node_modules/.bin/nyc --reporter=html --reporter=text ./node_modules/mocha/bin/mocha",
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls"
},
"keywords": [
"email",
"checker",
"address",
"free",
"domain",
"business",
"blacklist",
"whitelist",
"mailbox",
"mail",
"freemail",
"domain",
"disposable",
"mailbox",
"javascript",
"javascript-library",
"js",
"es",
"es5",
"es6",
"module",
"commonjs",
"javascript",
"vanilla",
"vanillajs"
]
}