-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathpackage.json
More file actions
156 lines (156 loc) · 3.85 KB
/
Copy pathpackage.json
File metadata and controls
156 lines (156 loc) · 3.85 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "github-webhook-handler",
"version": "2.1.15",
"description": "Web handler / middleware for processing GitHub Webhooks",
"type": "module",
"main": "github-webhook-handler.js",
"exports": {
".": {
"import": "./github-webhook-handler.js",
"types": "./types/github-webhook-handler.d.ts"
}
},
"types": "types/github-webhook-handler.d.ts",
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "standard",
"build": "npm run build:types",
"build:types": "tsc --build",
"prepublishOnly": "npm run build",
"test:unit": "node --test test.js",
"test": "npm run lint && npm run test:unit"
},
"keywords": [
"github",
"webhooks"
],
"author": "Rod Vagg <r@va.gg> (http://r.va.gg)",
"repository": {
"type": "git",
"url": "https://github.com/rvagg/github-webhook-handler.git"
},
"license": "MIT",
"dependencies": {
"bl": "^7.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^26.0.1",
"conventional-changelog-conventionalcommits": "^9.3.1",
"semantic-release": "^25.0.3",
"standard": "^17.1.2",
"typescript": "^7.0.2"
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"breaking": true,
"release": "major"
},
{
"revert": true,
"release": "patch"
},
{
"type": "feat",
"release": "minor"
},
{
"type": "fix",
"release": "patch"
},
{
"type": "chore",
"release": "patch"
},
{
"type": "docs",
"release": "patch"
},
{
"type": "test",
"release": "patch"
},
{
"scope": "no-release",
"release": false
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "test",
"section": "Tests"
},
{
"type": "build",
"section": "Trivial Changes"
},
{
"type": "ci",
"section": "Trivial Changes"
},
{
"type": "chore",
"section": "Trivial Changes"
},
{
"type": "docs",
"section": "Trivial Changes"
},
{
"type": "style",
"section": "Trivial Changes"
}
]
}
}
],
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
}
}