-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (36 loc) · 762 Bytes
/
package.json
File metadata and controls
38 lines (36 loc) · 762 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": "bot-github-template",
"version": "0.3.0",
"private": true,
"description": "A Nexos Automation Bot",
"author": "Nexos Labs",
"license": "ISC",
"main": "./lib/index.js",
"homepage": "https://github.com/nexoslabs/bot-github-template",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"start": "probot run ./lib/index.js",
"test": "vitest"
},
"dependencies": {
"axios": "^1.7.2",
"probot": "^13.0.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/semver": "^7.5.8",
"nock": "^14.0.0-beta.5",
"smee-client": "^2.0.0",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"engines": {
"node": ">= 18"
},
"type": "module"
}