-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 930 Bytes
/
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
{
"name": "mailer",
"version": "1.0.0",
"description": "This is a midway component sample",
"main": "dist/index.js",
"typings": "index.d.ts",
"scripts": {
"build": "cross-env midway-bin build -c",
"test": "cross-env midway-bin test --ts",
"cov": "cross-env midway-bin cov --ts",
"lint": "mwts check",
"lint:fix": "mwts fix"
},
"keywords": [],
"author": "",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"index.d.ts"
],
"dependencies": {
"nodemailer": "^6.9.14"
},
"license": "MIT",
"devDependencies": {
"@midwayjs/cli": "^2.1.1",
"@midwayjs/core": "^3.16.2",
"@midwayjs/logger": "^3.4.2",
"@midwayjs/mock": "^3.16.4",
"@types/jest": "^29.5.12",
"@types/node": "^16.18.101",
"@types/nodemailer": "^6.4.15",
"cross-env": "^6.0.3",
"jest": "^29.7.0",
"mwts": "^1.3.0",
"ts-jest": "^29.1.5",
"typescript": "~4.8.4"
}
}