-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.31 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "resolve-email",
"description": "Resolve the domain of an email address to see if it even has a chance of delivering",
"version": "4.0.61",
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io)",
"bugs": {
"url": "https://github.com/bcomnes/resolve-email/issues"
},
"devDependencies": {
"@types/node": "^26.0.1",
"@voxpelli/tsconfig": "^16.0.0",
"emailvalid": "^1.0.4",
"releasearoni": "^0.2.0",
"installed-check": "^10.0.1",
"neostandard": "^0.13.0",
"npm-run-all2": "^9.0.0",
"typescript": "~6.0.3"
},
"engines": {
"node": ">=22.1.0",
"npm": ">=10.0.0"
},
"homepage": "https://github.com/bcomnes/resolve-email",
"keywords": [],
"files": [
"index.js",
"*.d.ts",
"*.d.ts.map",
"reasonable-email.js",
"disposable.cjs",
"disposable.json",
"wildcard-disposable.cjs",
"wildcard-disposable.json",
"CHANGELOG.md"
],
"license": "MIT",
"type": "module",
"module": "index.js",
"exports": {
"import": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bcomnes/resolve-email.git"
},
"scripts": {
"prepublishOnly": "releasearoni",
"postpublish": "npm run clean",
"clean": "run-p clean:*",
"clean:declarations-top": "rm -rf $(find . -maxdepth 1 -type f -name '*.d.ts*' -o -name '*.d.cts*')",
"build": "npm run clean && run-p build:*",
"build:declaration": "tsc -p declaration.tsconfig.json",
"build:throwaway": "node build-throwaway-domain-list.cjs",
"test": "run-s test:*",
"test:neostandard": "eslint .",
"test:tsc": "tsc",
"test:node-test": "node --experimental-test-coverage --test-coverage-exclude '**/*.test.js' --test-coverage-exclude 'fuzz-test.js' --test-coverage-exclude 'build-throwaway-domain-list.cjs' --test-coverage-exclude '*.config.*' --test --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=lcov.info",
"test:installed-check": "installed-check --ignore-dev",
"version": "run-s build:throwaway && releasearoni version --add disposable.json --add wildcard-disposable.json"
},
"standard": {
"ignore": [
"dist"
]
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/bcomnes"
},
"dependencies": {
"tldts": "^7.0.9"
}
}