-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.37 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.37 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
{
"name": "backportbot",
"version": "2.0.0",
"description": "A bot that backport commits to other branches",
"main": "index.ts",
"type": "module",
"scripts": {
"serve": "tsx src/index.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skjnldsv/backportbot.git"
},
"keywords": [
"backport",
"bot",
"github",
"git",
"commit"
],
"author": "skjnldsv",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/skjnldsv/backportbot/issues"
},
"homepage": "https://github.com/skjnldsv/backportbot#readme",
"dependencies": {
"@octokit/app": "^16.1.2",
"@octokit/rest": "^22.0.1",
"@octokit/webhooks": "^14.2.0",
"@octokit/webhooks-types": "^7.6.1",
"p-queue": "^9.0.0",
"simple-git": "^3.29.0",
"tsx": "^4.20.6"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.11",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-istanbul": "^2.1.8",
"eslint": "^8.57.1",
"typescript": "^5.9.3",
"vitest": "^2.0.5"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
}
}