-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
{
"name": "jest-smtp",
"version": "0.0.3",
"description": "Jest utilities for testing email sends",
"main": "dist/index.js",
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wimpheling/jest-smtp.git"
},
"author": "Lucas Trostaniecki",
"license": "ISC",
"bugs": {
"url": "https://github.com/wimpheling/jest-smtp/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/wimpheling/jest-smtp#readme",
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/mailparser": "^3.0.1",
"@types/smtp-server": "^3.5.6",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"ts-jest": "^29.1.1",
"typescript": "^4.2.2"
},
"peerDependencies": {
"jest": "^29.7.0"
},
"dependencies": {
"mailparser": "^3.1.0",
"smtp-server": "^3.8.0"
},
"keywords": [
"jest",
"smtp",
"emails",
"email",
"testing",
"test"
]
}