forked from getpingback/ping-email
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.42 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
{
"name": "ping-email",
"version": "1.0.8",
"description": "Node.js SMTP Email Verification Library",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build",
"build": "tsup src/index.ts --format esm,cjs --dts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getpingback/ping-email.git"
},
"keywords": [
"smtp",
"email",
"verification"
],
"author": "Pedro Ladeira <[email protected]> (https://github.com/pepeladeira)",
"contributors": [
"Daniel Bastos <[email protected]> (https://github.com/danielsalles)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/getpingback/ping-email/issues"
},
"homepage": "https://github.com/getpingback/ping-email#readme",
"devDependencies": {
"@types/disposable-email": "^0.2.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"disposable-email": "^0.2.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
}
}