-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 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
48
49
50
51
52
53
54
{
"name": "pr-labeler",
"version": "1.2.3",
"private": true,
"description": "A GitHub bot to label PRs automatically based on title and body against list of defined labels.",
"author": "Joao Carmo",
"license": "MIT",
"homepage": "https://github.com/joaocarmo/pr-labeler",
"keywords": [
"bot",
"github",
"labeler",
"pr",
"probot-app",
"probot",
"tags"
],
"main": "lib/src/index.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf coverage/ lib/",
"install": "tsc",
"lint": "eslint .",
"pretty": "prettier --write .",
"start": "probot run ./lib/src/index.js",
"test": "jest",
"type-check": "tsc --noEmit"
},
"engines": {
"node": ">= 22"
},
"dependencies": {
"escape-string-regexp": "4.0.0",
"probot": "^13.4.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@octokit/types": "^13.6.2",
"@tsconfig/node22": "^22.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"eslint": "^9.17.0",
"express": "^4.21.2",
"jest": "^29.7.0",
"nock": "14.0.0-beta.19",
"nock-knock": "^2.0.0",
"prettier": "^3.4.2",
"smee-client": "^2.0.4",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"packageManager": "pnpm@10.0.0-rc.2+sha512.b6e59b96f90ca92449ac2f6dca9b430880448fc97d21f0fa9200e3d5ddb5289ad535255400554f7f3486e2d60058492161aaa9b58828e81f50c096718be9d156"
}