-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.12 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
{
"name": "diffkemp-dev-bot",
"version": "0.1.0",
"private": true,
"description": "Bot used in the DiffKemp development process.",
"scripts": {
"build": "tsc",
"start": "probot run ./lib/index.js",
"test": "vitest",
"lint": "eslint src/ tests/",
"format": "prettier src/ tests/ --write",
"format:check": "prettier src/ tests/ --check",
"past-prs": "node ./lib/past_pr_analysis.js"
},
"dependencies": {
"async-mutex": "^0.5.0",
"commander": "^12.1.0",
"markdown-table": "^3.0.3",
"probot": "^13.0.1",
"shell-quote": "^1.8.1",
"yaml": "^2.6.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.0.0",
"@types/shell-quote": "^1.7.5",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"nock": "^14.0.0-beta.5",
"prettier": "3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"smee-client": "^2.0.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"vitest": "^2.1.2",
"vitest-mock-extended": "^2.0.2"
},
"engines": {
"node": ">= 22"
},
"type": "module"
}