-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 832 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 832 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
29
30
31
32
33
34
35
36
37
{
"name": "repo-guard",
"version": "1.0.0",
"private": true,
"description": "The Github spam blocker",
"author": "b4lch",
"license": "ISC",
"homepage": "https://github.com/b4lch/RepoGuard",
"keywords": [
"RepoGuard",
"repo-guard",
"github spam blocker",
"probot-app"
],
"scripts": {
"build": "tsc",
"start": "probot run ./lib/index.js",
"bstart": "tsc && probot run ./lib/index.js",
"test:watch": "vitest",
"test": "vitest run --reporter=basic --coverage"
},
"dependencies": {
"probot": "^13.0.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^2.1.6",
"nock": "^14.0.0-beta.5",
"smee-client": "^2.0.0",
"typescript": "^5.3.3",
"vitest": "^2.1.6"
},
"engines": {
"node": ">= 18"
},
"type": "module"
}