-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"name": "github-actions-forwarder",
"version": "6.0.0",
"description": "Workflow for forwarding GitHub Actions event payloads to downstream applications",
"exports": "./src/index.js",
"scripts": {
"test": "./__test__/ci.sh",
"test:unit": "vitest run",
"build": "esbuild src/index.js --bundle --outfile=dist/index.js --platform=node --target=node24"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=24.0.0"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/collinmcneese/github-actions-forwarder.git"
},
"keywords": [
"github",
"webhook"
],
"author": "Collin McNeese <collinmcneese@github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/collinmcneese/github-actions-forwarder/issues"
},
"homepage": "https://github.com/collinmcneese/github-actions-forwarder#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.28.0",
"eslint": "^10.2.1",
"vitest": "^4.1.4"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.1.0"
}
}