forked from NextNC/nestjs-mailgun
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.38 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "nestjs-mailgun",
"version": "4.0.3",
"description": "NestJS provider for sending emails with mailgun",
"author": "Stanislav V Vyaliy <wisekaa03@gmail.com>, Nuno Carvalhão <nuno.carvalhao@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist/**/*",
"src/**/*",
"*.md"
],
"scripts": {
"start:dev": "tsc -w",
"build": "rimraf ./dist && tsc -p tsconfig.json",
"prepare": "yarn build",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"keywords": [
"nestjs",
"nest",
"mailgun",
"email"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/wisekaa03/nestjs-mailgun"
},
"bugs": {
"url": "https://github.com/wisekaa03/nestjs-mailgun"
},
"peerDependencies": {
"@nestjs/common": "^8 || ^9 || ^10"
},
"resolutions": {
"**/**/multer": ">=1.4.5-lts.1"
},
"dependencies": {
"@nestjs/common": "^10.1.3",
"form-data": "^4.0.0",
"mailgun.js": "^9.2.0"
},
"devDependencies": {
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.1.3",
"@nestjs/platform-express": "^10.1.3",
"@nestjs/testing": "^10.1.3",
"@types/express": "4.17.17",
"@types/jest": "29.5.3",
"@types/node": "20.4.8",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"form-data": "^4.0.0",
"jest": "29.6.2",
"prettier": "3.0.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"rxjs": "^7.8.1",
"supertest": "6.3.3",
"ts-jest": "29.1.1",
"typescript": "^5.1.6"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"homepage": "https://github.com/wisekaa03/nestjs-mailgun#readme"
}