-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 847 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 847 Bytes
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
{
"name": "git-webhook-handler",
"version": "1.0.6",
"description": "Web handler / middleware for processing GitHub, Gitee, Gitlab Webhooks",
"main": "git-webhook-handler.js",
"types": "types.d.ts",
"scripts": {
"lint": "standard *.js",
"test": "npm run lint && node test.js"
},
"keywords": [
"node",
"webhooks",
"github",
"gitee",
"gitlab",
"gitea",
"gogs"
],
"author": "Rem486 (http://rem486.top/)",
"repository": {
"type": "git",
"url": "https://github.com/Rem486/git-webhook-handler.git"
},
"bugs": {
"url": "https://github.com/Rem486/git-webhook-handler/issues"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/node": "20.19.23",
"run-series": "1.1.9",
"standard": "17.1.2",
"tape": "4.17.0",
"through2": "3.0.2"
}
}