-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
73 lines (73 loc) · 2.07 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@devmehq/email-validator-js",
"version": "2.0.0",
"private": false,
"description": "Advanced Email Validation with DNS MX lookup and Mailbox Verification",
"keywords": [
"email-validation",
"email-typos",
"email-regex",
"disposable-emails",
"free-emails",
"smtp",
"mx-records"
],
"homepage": "https://github.com/devmehq/email-validator-js#readme",
"bugs": "https://github.com/devmehq/email-validator-js/issues",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/devmehq/email-validator-js.git"
},
"license": "BSL 1.1",
"author": "DEV.ME <[email protected]> (https://dev.me)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p .",
"lint": "eslint",
"lint-fix": "yarn lint -- --fix",
"prepare": "husky",
"prepublishOnly": "yarn build",
"prettier": "prettier --write \"src/**/*.{ts,json}\" \"__tests__/**/*.{ts,json}\"",
"test": "jest",
"test-ci": "jest"
},
"lint-staged": {
"src/*.{ts,tsx,js,jsx}": "prettier --write",
"__tests__/*.{ts,tsx,js,jsx}": "prettier --write",
"docs/**": "prettier --write",
"examples/**": "prettier --write"
},
"dependencies": {
"@types/psl": "1.1.3",
"psl": "1.15.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.0",
"@release-it/keep-a-changelog": "^6.0.0",
"@types/jest": "^29.5.14",
"@types/node": "22.13.1",
"@types/sinon": "17.0.3",
"eslint": "9.20.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-unused-imports": "4.1.4",
"husky": "9.1.7",
"jest": "^29.7.0",
"lint-staged": "15.4.3",
"prettier": "3.5.0",
"release-it": "^18.1.2",
"sinon": "19.0.2",
"ts-jest": "^29.2.5",
"typescript": "5.7.3",
"typescript-eslint": "^8.24.0"
},
"packageManager": "[email protected]+sha256.c17d3797fb9a9115bf375e31bfd30058cac6bc9c3b8807a3d8cb2094794b51ca",
"engines": {
"node": ">= 12.0"
}
}