-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
76 lines (76 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@devmehq/email-validator-js",
"version": "1.0.19",
"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": "https://github.com/devmehq/email-validator-js"
},
"license": "MIT",
"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 src __tests__",
"lint-fix": "yarn lint -- --fix",
"mocha": "nyc mocha --report lcovonly -- __tests__/*-test.ts",
"prepare": "yarn husky install",
"prepublishOnly": "yarn build",
"prettier": "prettier --write \"src/**/*.{ts,json}\" \"__tests__/**/*.{ts,json}\"",
"test": "TS_NODE_TRANSPILE_ONLY=1 TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha",
"test-ci": "TS_NODE_TRANSPILE_ONLY=1 TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha"
},
"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.9.0"
},
"devDependencies": {
"@types/chai": "4.3.11",
"@types/mocha": "10.0.6",
"@types/node": "20.10.4",
"@types/should": "13.0.0",
"@types/sinon": "17.0.2",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"chai": "4.3.10",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-unused-imports": "3.0.0",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"mocha": "10.2.0",
"prettier": "3.1.1",
"pretty-quick": "3.1.3",
"should": "13.2.3",
"sinon": "17.0.1",
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"engines": {
"node": ">= 12.0"
}
}