-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.46 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
{
"name": "gmail-nodemailer-transport",
"version": "3.0.2",
"description": "Gmail API and Nodemailer v4+. The plugin uses send scope only",
"private": false,
"author": "Sergey Khomushin <[email protected]>",
"license": "MIT",
"main": "build/GmailTransport.js",
"types": "build/GmailTransport.d.ts",
"keywords": [
"gmail",
"nodemailer",
"transport",
"gmail nodemailer transport",
"nodemailer gmail transport"
],
"repository": {
"type": "git",
"url": "https://github.com/xr0master/gmail-nodemailer-transport.git"
},
"scripts": {
"build:build-ts": "tsc",
"build:clean": "rm -rf ./build",
"build": "npm run build:clean && npm run lint && npm run build:build-ts",
"test": "jest --coverage",
"lint": "tsc --noEmit && eslint src"
},
"peerDependencies": {
"nodemailer": ">=4.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/nodemailer": "^6.4.8",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"nodemailer": "^6.9.3",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=14.0.0"
},
"prettier": {
"singleQuote": true,
"printWidth": 100,
"trailingComma": "all"
}
}