-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 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
{
"name": "backport-action",
"version": "4.5.0-SNAPSHOT",
"private": false,
"description": "GitHub action to automatically backport pull requests",
"type": "module",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"**.ts\"",
"format-check": "prettier --check \"**.ts\"",
"package": "node esbuild.config.mjs",
"test": "vitest run --silent=true",
"test-verbose": "vitest run --reporter=verbose --silent=true",
"all": "npm run format && npm run build && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/korthout/backport-action.git"
},
"keywords": [
"actions",
"backport"
],
"author": "korthout",
"license": "MIT",
"engines": {
"node": ">=24.0.0 <25"
},
"dependencies": {
"@actions/core": "3.0.0",
"@actions/exec": "3.0.0",
"@actions/github": "9.1.0",
"dedent": "1.7.2"
},
"devDependencies": {
"@octokit/request-error": "7.1.0",
"@types/dedent": "0.7.2",
"@types/node": "24.12.2",
"esbuild": "0.28.0",
"prettier": "3.8.3",
"typescript": "6.0.3",
"vitest": "4.1.4"
}
}