forked from AlexTMjugador/GitHub-webhook-filter-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.08 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
{
"name": "github-webhook-filter-proxy",
"description": "A serverless, easy-to-setup GitHub webhook filtering proxy that relays or drops events when they match configurable JSONPath expressions, powered by Cloudflare Workers.",
"author": "Alejandro González <[email protected]>",
"version": "0.0.1",
"homepage": "https://github.com/AlexTMjugador/GitHub-webhook-filter-proxy",
"bugs": "https://github.com/AlexTMjugador/GitHub-webhook-filter-proxy/issues",
"license": "MIT",
"private": true,
"scripts": {
"start": "wrangler dev",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check .",
"format:fix": "prettier --write ."
},
"devDependencies": {
"@cloudflare/workers-types": "4.20240821.1",
"@types/jsonpath": "0.2.4",
"@typescript-eslint/eslint-plugin": "8.2.0",
"@typescript-eslint/parser": "8.2.0",
"eslint": "9.9.1",
"eslint-config-prettier": "9.1.0",
"prettier": "3.3.3",
"typescript": "5.5.4",
"wrangler": "3.72.2"
},
"dependencies": {
"hex-to-array-buffer": "2.0.0",
"jsonpath": "1.1.1"
}
}