-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 848 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 848 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": "zenith-bot",
"version": "1.0.0",
"private": true,
"description": "Zenith automation bot",
"author": "Stas Kelvich <stas.kelvich@gmail.com>",
"license": "ISC",
"homepage": "https://github.com/kelvich/zenith-bot",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"start": "probot run ./lib/webhooks.js",
"start:backfill": "probot run ./lib/backfill.js",
"test": "vitest run"
},
"dependencies": {
"@slack/web-api": "^6.7.1",
"async-await-queue": "^1.2.0",
"axios": "^0.26.0",
"probot": "14.0.0-beta.11"
},
"devDependencies": {
"@types/node": "^14.14.19",
"graphql": "^16.2.0",
"nock": "^13.0.5",
"smee-client": "^1.2.2",
"typescript": "^4.1.3",
"vitest": "^3.1.2"
},
"engines": {
"node": ">= 22.0.0"
}
}