-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.8 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
55
{
"name": "issue-labeler",
"version": "1.1.0",
"description": "Labels issues by keywords in the title or body.",
"main": "lib/index.js",
"scripts": {
"build": "tsc && ncc build lib/main/main.js",
"format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write \"**/*.{ts,yml,yaml}\"",
"format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check \"**/*.{ts,yml,yaml}\"",
"lint": "eslint --config eslint.config.mjs \"**/*.ts\"",
"lint:fix": "eslint --config eslint.config.mjs \"**/*.ts\" --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/issue-labeler.git"
},
"keywords": [
"github",
"actions",
"label",
"labeler"
],
"author": {
"name": "Maximilian Anzinger",
"email": "[email protected]",
"url": "https://ase.cit.tum.de/anzinger"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"js-yaml": "^4.1.0",
"minimatch": "^10.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.5",
"@types/minimatch": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-node": "^11.1.0",
"globals": "^15.11.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
}
}