-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.06 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
{
"name": "smtp-pushover",
"version": "0.1.0",
"main": "dist/index.js",
"author": "",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"debug": "node --inspect-brk dist/index.js",
"test": "jest --passWithNoTests",
"sendmail": "echo -e \"Subject: subject\n\ntext\" | msmtp -v --host localhost --port 2525 --from [email protected] [email protected]"
},
"dependencies": {
"mailparser": "3.7.2",
"pushover-notifications": "1.2.3",
"smtp-server": "3.13.6"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/mailparser": "3.4.5",
"@types/node": "18.19.68",
"@types/smtp-server": "3.5.10",
"conventional-changelog-conventionalcommits": "5.0.0",
"cz-conventional-changelog": "3.3.0",
"jest": "29.7.0",
"semantic-release": "19.0.5",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "4.9.5"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "build",
"section": "Dependencies and Other Build Updates",
"hidden": false
}
]
}
}
],
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}