forked from mfbx9da4/deep-email-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.84 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
{
"name": "deep-email-validator",
"version": "0.1.22",
"files": [
"dist/**/*"
],
"description": "Validates emails based on regex, common typos, disposable email blacklists, DNS records and SMTP server response.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mfbx9da4/deep-email-validator"
},
"author": "David Alberto Adler",
"license": "MIT",
"keywords": [
"email-validation",
"email-typos",
"email-regex",
"disposable-emails",
"smtp",
"mx-records"
],
"scripts": {
"start": "yarn serve",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"preversion": "yarn lint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags",
"watch-node": "nodemon dist/index.js",
"test": "jest --verbose",
"watch-test": "yarn test -- --watchAll",
"watch-ts": "tsc -w",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"debug": "yarn build && yarn watch-debug",
"run-debug": "nodemon --inspect dist/server.js"
},
"dependencies": {
"@types/disposable-email-domains": "^1.0.1",
"axios": "^0.24.0",
"disposable-email-domains": "^1.0.59",
"mailcheck": "^1.1.1"
},
"devDependencies": {
"@types/eslint": "^6.1.1",
"@types/jest": "^24.0.23",
"@types/lodash": "^4.14.141",
"@types/mailcheck": "^1.1.31",
"@types/node": "^12.7.8",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"eslint": "^6.4.0",
"jest": "^25.1.0",
"lodash": "^4.17.21",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-jest": "^25.2.1",
"ts-node": "^10.4.0",
"typescript": "^3.8.3"
}
}