-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 1.59 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": "free-email-domains-list",
"version": "1.0.14",
"private": false,
"description": "Fresh list of all free email domain providers. Can be used to check if an email address belongs to a company. Updated weekly.",
"keywords": [
"email",
"free email list",
"company email list",
"free email domains",
"company email domains",
"is company email",
"company email list"
],
"homepage": "https://github.com/ihmpavel/free-email-domains-list",
"bugs": "https://github.com/ihmpavel/free-email-domains-list/issues",
"repository": {
"type": "git"
},
"author": "Pavel Ihm",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"license": "MIT",
"scripts": {
"build": "./scripts/build.sh",
"generate": "yarn run ts-node scripts/generate.ts",
"l": "yarn lint:fix",
"lint": "eslint \"{src,scripts,test}/**/*.{js,ts,tsx}\"",
"lint:fix": "eslint \"{src,scripts,test}/**/*.{js,ts,tsx}\" --fix",
"release": "./scripts/release.sh",
"test": "jest"
},
"dependencies": {},
"peerDependencies": {
"validator": "^13.12.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/validator": "^13.12.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}