forked from nest-modules/mailer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.67 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
94
95
96
97
98
99
100
101
102
{
"name": "@nestjs-modules/mailer",
"version": "1.6.0",
"private": false,
"description": "NestJS - a mailer module (@mailer)",
"keywords": [
"nest",
"nodemailer",
"mailer",
"nodejs"
],
"homepage": "https://github.com/nest-modules/mailer#readme",
"bugs": {
"url": "https://github.com/nest-modules/mailer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nest-modules/mailer.git"
},
"license": "MIT",
"author": "Nest Modules TM",
"contributors": [
"Cristiam Díaz <c.diaz@udla.edu.co>",
"Eduardo Leal <eduardolleal@icloud.com>",
"Juan Echeverry <e.juandav@gmail.com>",
"Paweł Partyka <partyka95@icloud.com>",
"Yanarp"
],
"scripts": {
"prepare": "npm run build",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"deploy": "sh ./publish.sh",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write",
"major": "npm run release -- --release-as major",
"minor": "npm run release -- --release-as minor",
"patch": "npm run release -- --release-as patch",
"release": "standard-version",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"dependencies": {
"glob": "7.1.7",
"inline-css": "^3.0.0",
"preview-email": "3.0.4"
},
"optionalDependencies": {
"@types/ejs": "^3.0.3",
"@types/pug": "2.0.5",
"ejs": "^3.1.2",
"handlebars": "^4.7.6",
"pug": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-angular": "13.2.0",
"@nestjs/common": "8.0.10",
"@nestjs/core": "8.0.10",
"@nestjs/testing": "8.0.10",
"@types/glob": "7.1.4",
"@types/inline-css": "3.0.1",
"@types/jest": "26.0.24",
"@types/lodash": "4.14.176",
"@types/nodemailer": "6.4.4",
"@types/pug": "2.0.5",
"@typescript-eslint/eslint-plugin": "4.31.1",
"@typescript-eslint/parser": "4.31.1",
"husky": "7.0.4",
"jest": "27.0.6",
"lint-staged": "11.2.3",
"nodemailer": "6.6.5",
"nodemailer-mock": "1.5.11",
"prettier": "2.3.2",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "7.3.1",
"standard-version": "9.3.2",
"ts-jest": "27.0.5",
"ts-node": "10.2.1",
"typescript": "4.3.5"
},
"peerDependencies": {
"@nestjs/common": "^7.0.9 || ^8.0.0",
"@nestjs/core": "^7.0.9 || ^8.0.0",
"@types/ejs": "^3.0.3",
"@types/pug": "2.0.5",
"ejs": "^3.1.2",
"handlebars": "^4.7.6",
"nodemailer": "^6.4.6",
"pug": "^2.0.4"
}
}