-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 738 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 738 Bytes
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
{
"name": "code-quality-gate-bot",
"version": "1.0.0",
"description": "GitHub Action bot that enforces code quality gates on PRs",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"lint": "eslint src --ext .ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"axios": "^1.6.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/ui": "^4.0.16",
"eslint": "^8.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.0",
"vitest": "^4.0.16"
}
}