-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "@crowdlinker/nestjs-mailer",
"version": "0.1.0",
"description": "Mailer module for NestJS",
"main": "index.js",
"author": "Crowdlinker Inc.",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test:integration": "jest --config ./tests/jest-e2e.json --runInBand"
},
"dependencies": {
"nodemailer": "^6.6.2"
},
"devDependencies": {
"@nestjs/common": "^7.6.18",
"@types/jest": "^26.0.23",
"@types/nodemailer": "^6.4.2",
"jest": "^26.6.3",
"typescript": "^3.9.10"
},
"repository": {
"url": "https://github.com/CrowdLinker/nestjs-mailer",
"type": "git"
},
"bugs": {
"url": "https://github.com/CrowdLinker/nestjs-mailer/issues"
},
"keywords": [
"nestjs",
"nodemailer",
"mailer",
"nodejs"
],
"contributors": [
"Prateek Kathal <[email protected]>"
]
}