-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.33 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
50
51
52
53
54
{
"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": "^14.1.0",
"@octokit/rest": "^21.0.2",
"@octokit/webhooks": "^13.3.0",
"p-queue": "^8.0.1",
"simple-git": "^3.27.0",
"tsx": "^4.19.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^20.14.12",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-istanbul": "^2.1.4",
"eslint": "^8.57.1",
"typescript": "^5.6.3",
"vitest": "^2.0.5"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
}
}