nestjs-mailgun
Version:
NestJS provider for sending emails with mailgun
94 lines (93 loc) • 2.44 kB
JSON
{
"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"
}