-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.4 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.4 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
54
55
56
57
{
"name": "email-validator-node",
"description": "High-performance TypeScript email validator with format validation, MX record validation, and disposable email detection. Zero runtime dependencies.",
"version": "2.0.2",
"license": "MIT",
"repository": "github:bsonmez/email-validator-node",
"author": {
"name": "Burak Sonmez",
"url": "https://github.com/bsonmez"
},
"directories": {
"lib": "lib"
},
"files": [
"lib",
"index.js"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"publish": "yarn build && npm publish"
},
"keywords": [
"email",
"validation",
"validator",
"domains",
"disposable",
"typescript",
"mx-record",
"dns",
"batch-validation",
"blacklist",
"performance",
"zero-dependencies"
],
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rollup": "^4.13.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
}
}