-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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
{
"name": "nodemailer-mjml",
"version": "1.4.10",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/Thomascogez/nodemailer-mjml",
"author": "Thomascogez <thomas.cogez@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/mjml": "^4.7.4",
"@types/mustache": "^4.2.5",
"@types/node": "^22.10.7",
"@types/nodemailer": "^6.4.17",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "5.62.0",
"cssnano": "^7.0.6",
"eslint": "^8.57.1",
"htmlnano": "^2.1.1",
"jest": "^29.7.0",
"nodemailer": "^6.9.16",
"postcss": "^8.5.1",
"supertest": "^7.0.0",
"terser": "^5.37.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"scripts": {
"lint": "eslint . --ext .ts",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest --runInBand --passWithNoTests --bail",
"test:watch": "jest --verbose --watchAll --runInBand --passWithNoTests --bail"
},
"dependencies": {
"mjml": "^4.15.3",
"mustache": "^4.2.0"
},
"peerDependencies": {
"htmlnano": "*",
"nodemailer": "*"
},
"peerDependenciesMeta": {
"htmlnano": {
"optional": true
}
}
}