-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.5 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.5 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
{
"name": "autoupdate-action",
"version": "2.2.1",
"description": "A GitHub Action that auto-updates PRs with changes from their base branch.",
"main": "src/autoupdater.ts",
"repository": "https://github.com/CSSUoB/pr-auto-updater",
"author": "MattyTheHacker <<18513864+MattyTheHacker@users.noreply.github.com>>",
"license": "MIT",
"bin": "bin/cli.js",
"scripts": {
"build": "ncc build bin/cli.ts --out dist",
"lint": "eslint . && prettier --list-different bin/*.ts src/*.ts test/*.ts",
"lint:fix": "eslint --fix .",
"test": "jest",
"test:watch": "jest --watchAll"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "6.0.1",
"@octokit/types": "^16.0.0",
"@octokit/webhooks": "^14.1.3",
"@octokit/webhooks-types": "^7.6.1",
"@types/node": "^24.10.0",
"@vercel/ncc": "^0.38.4",
"glob": "^11.0.3",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"jest-ts-auto-mock": "2",
"nock": "15.0.0",
"prettier": "^3.6.2",
"ts-auto-mock": "3",
"ts-jest": "^29.4.4",
"ttypescript": "^1.5.15",
"typescript": "^5.9.3"
},
"resolutions": {
"glob": "^9.0.0"
}
}