forked from gacts/run-and-post-run
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 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
41
{
"name": "run-and-post-run",
"description": "A simple GitHub action that allows you to execute commands on place and in post-run, once a workflow job has ended",
"scripts": {
"lint": "eslint './src/**/*.js'",
"build:main": "ncc build -o dist/main --minify --no-cache src/main.js",
"build:post": "ncc build -o dist/post --minify --no-cache src/post.js",
"build": "npm run build:main && npm run build:post"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gacts/run-and-post-run.git"
},
"keywords": [
"github",
"actions"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gacts/run-and-post-run/issues"
},
"type": "module",
"homepage": "https://github.com/gacts/run-and-post-run#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@vercel/ncc": "^0.38.4",
"eslint": "^9.39.0",
"globals": "^16.5.0"
},
"volta": {
"node": "24"
},
"engines": {
"node": ">=24"
}
}