-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.69 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.69 KB
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
{
"name": "sendmail2",
"version": "0.2.1",
"description": "Send Mail to Somewhere You Want",
"main": "lib/index.js",
"types": "types/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"files": [
"/lib",
"/types"
],
"scripts": {
"build": "tsc",
"prepack": "rm -rf lib types && tsc && prettier --write \"types/**/*.d.ts\" \"lib/**/*.js\"",
"version": "scripts/version.sh",
"format": "prettier --write \"src/**/*.ts\" \"./**/*.json\"",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts src/ --fix",
"prepare": "husky install"
},
"dependencies": {
"nodemailer": "^6.6.1"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/node": "^18.11.17",
"@types/nodemailer": "^6.4.7",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.2",
"markdownlint-cli": "^0.32.2",
"prettier": "^2.8.1",
"shellcheck": "^1.1.0",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"send",
"mail",
"smtp",
"email",
"mailer",
"sendmail",
"nodemailer",
"send mail",
"send email"
],
"author": "2020leon <leon2000.tw@gmail.com>",
"homepage": "https://github.com/2020leon/sendmail2",
"repository": "github:2020leon/sendmail2",
"license": "MIT"
}