generated from redhat-plumbers-in-action/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.4 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "downstream-backport-helper",
"version": "1.0.0",
"description": "Helper GitHub Action for linking upstream PRs with downstream backports",
"main": "src/main.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"package": "ncc build --source-map --license licenses.txt",
"test": "vitest run --coverage",
"update-snapshots": "vitest run --update",
"all": "yarn && yarn run build && yarn run format && yarn run package && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redhat-plumbers-in-action/downstream-backport-helper.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "[email protected]",
"license": "MIT",
"type": "module",
"packageManager": "[email protected]",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@octokit/core": "6.1.2",
"@octokit/plugin-throttling": "9.3.2",
"@octokit/types": "13.6.1",
"@probot/octokit-plugin-config": "3.0.2",
"deepmerge": "4.3.1",
"issue-metadata": "0.2.3",
"zod": "3.23.8"
},
"devDependencies": {
"@total-typescript/ts-reset": "0.6.1",
"@types/node": "22.9.0",
"@vercel/ncc": "0.38.3",
"@vitest/coverage-v8": "2.1.4",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"vitest": "2.1.4"
}
}