-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.42 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
{
"name": "gather-pull-request-metadata",
"version": "1.7.0",
"description": "Gather useful publicly available information about GitHub Pull Request and provide it in easy-to-digest JSON format.",
"author": "[email protected]",
"license": "MIT",
"keywords": [
"github",
"github-actions",
"pull-request"
],
"repository": {
"type": "git",
"url": "git+https://github.com/redhat-plumbers-in-action/gather-pull-request-metadata.git"
},
"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 run build && yarn run format && yarn run package && yarn test"
},
"packageManager": "[email protected]",
"type": "module",
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/core": "^6.1.2",
"@octokit/plugin-paginate-rest": "^11.3.3",
"@octokit/plugin-throttling": "^9.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@actions/github": "^6.0.0",
"@octokit/types": "^13.5.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^20.14.11",
"@vercel/ncc": "^0.38.1",
"@vitest/coverage-v8": "^2.0.3",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"vitest": "^2.0.3"
}
}