-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 4.53 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 4.53 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
{
"name": "@exivity/actions",
"version": "1.0.0",
"repository": "https://github.com/exivity/actions",
"author": "Joram van den Boezem <joram@vandenboezem.nl>",
"license": "MIT",
"scripts": {
"postinstall": "husky install",
"build": "run-p --aggregate-output --max-parallel 4 'build:**'",
"build:accept": "yarn esbuild:generic accept/src/index.ts --outfile=accept/dist/index.js",
"build:build-image": "yarn esbuild:generic build-image/src/index.ts --outfile=build-image/dist/index.js",
"build:build-push-image": "yarn esbuild:generic build-push-image/src/index.ts --outfile=build-push-image/dist/index.js",
"build:commit-status": "yarn esbuild:generic commit-status/src/index.ts --outfile=commit-status/dist/index.js",
"build:db": "yarn esbuild:generic db/src/index.ts --outfile=db/dist/index.js",
"build:dispatch-workflow": "yarn esbuild:generic dispatch-workflow/src/index.ts --outfile=dispatch-workflow/dist/index.js",
"build:dummy-data": "yarn esbuild:generic dummy-data/src/index.ts --outfile=dummy-data/dist/index.js",
"build:enable-automerge": "yarn esbuild:generic enable-automerge/src/index.ts --outfile=enable-automerge/dist/index.js",
"build:get-artefacts": "yarn esbuild:generic get-artefacts/src/index.ts --outfile=get-artefacts/dist/index.js",
"build:init-ssh": "yarn esbuild:generic init-ssh/src/index.ts --outfile=init-ssh/dist/index.js",
"build:postgres": "yarn esbuild:generic postgres/src/index.ts --outfile=postgres/dist/index.js",
"build:purge-ghcr": "yarn esbuild:generic purge-ghcr/src/index.ts --outfile=purge-ghcr/dist/index.js",
"build:push-to-central-repo": "yarn esbuild:generic push-to-central-repo/src/index.ts --outfile=push-to-central-repo/dist/index.js",
"build:put-artefacts": "yarn esbuild:generic put-artefacts/src/index.ts --outfile=put-artefacts/dist/index.js",
"build:rabbitmq": "yarn esbuild:generic rabbitmq/src/index.ts --outfile=rabbitmq/dist/index.js",
"build:rcedit": "yarn esbuild:generic rcedit/src/index.ts --outfile=rcedit/dist/index.js && cp node_modules/rcedit/bin/rcedit-x64.exe rcedit/bin",
"build:release": "yarn esbuild:generic release/src/index.ts --outfile=release/dist/index.js",
"build:release-notes": "yarn esbuild:generic release-notes/src/index.ts --outfile=release-notes/dist/index.js",
"build:retag-image": "yarn esbuild:generic retag-image/src/index.ts --outfile=retag-image/dist/index.js",
"build:review": "yarn esbuild:generic review/src/index.ts --outfile=review/dist/index.js",
"build:semantic-pull-request": "yarn esbuild:generic semantic-pull-request/src/index.ts --outfile=semantic-pull-request/dist/index.js",
"build:sentinel": "yarn esbuild:generic sentinel/src/index.ts --outfile=sentinel/dist/index.js",
"build:sign-file": "yarn esbuild:generic sign-file/src/index.ts --outfile=sign-file/dist/index.js",
"build:slack": "yarn esbuild:generic slack/src/index.ts --outfile=slack/dist/index.js",
"build:trigger-workflow": "yarn esbuild:generic trigger-workflow/src/index.ts --outfile=trigger-workflow/dist/index.js",
"build:sync-defaults": "yarn esbuild:generic sync-defaults/src/index.ts --outfile=sync-defaults/dist/index.js",
"build:virustotal": "yarn esbuild:generic virustotal/src/index.ts --outfile=virustotal/dist/index.js",
"esbuild:generic": "esbuild --bundle --platform=node --target=node24",
"format": "prettier --write .",
"test:release-source-mapping": "node --test release/src/common/releaseRepositories.test.js",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"@actions/core": "3.0.1",
"@actions/exec": "3.0.0",
"@actions/github": "9.1.1",
"@actions/http-client": "4.0.1",
"checkout": "github:actions/checkout#v5",
"deepmerge": "^4.3.1",
"form-data": "4.0.5",
"glob": "13.0.6",
"jira.js": "5.3.1",
"js-yaml": "4.1.1",
"mime": "4.1.0",
"minimatch": "10.2.5",
"p-queue": "9.2.0",
"ramda": "0.32.0",
"rcedit": "4.0.1",
"semver": "7.7.4",
"yaml": "^2.8.3",
"zod": "4.3.6"
},
"devDependencies": {
"@octokit/webhooks": "14.2.0",
"@types/adm-zip": "0.5.8",
"@types/glob": "9.0.0",
"@types/js-yaml": "4.0.9",
"@types/mime": "4.0.0",
"@types/minimatch": "6.0.0",
"@types/node": "25.6.0",
"@types/ramda": "0.31.1",
"@types/semver": "7.7.1",
"@types/uuid": "11.0.0",
"esbuild": "0.28.0",
"husky": "9.1.7",
"npm-run-all": "4.1.5",
"prettier": "3.8.3",
"typescript": "6.0.3"
},
"resolutions": {
"cross-spawn": "7.0.6"
}
}