-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
{
"name": "@iaminfinity/nodemailer",
"version": "0.1.6",
"description": "Nest - modern, fast, powerful node.js web framework (@nodemailer)",
"author": "Fahim Rahman",
"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 -m \"publish %s release\""
},
"repository": {
"type": "git",
"url": "https://github.com/ifaim/nestjs-nodemailer"
},
"peerDependencies": {
"@nestjs/common": "^5.0.0",
"reflect-metadata": "0.1.12",
"rxjs": "^6.0.0"
},
"devDependencies": {
"@nestjs/common": "^5.5.0",
"@types/node": "^10.12.18",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"reflect-metadata": "^0.1.12",
"typescript": "^3.2.2"
},
"dependencies": {
"@types/nodemailer": "^4.6.5",
"nodemailer": "^5.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"nodemailer",
"nestjs",
"mailer",
"mail"
]
}