-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 906 Bytes
/
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
{
"name": "mermaid-bot",
"version": "1.0.0",
"private": true,
"description": "Mermaid's github bot",
"author": "Sidharth Vinod",
"license": "MIT",
"homepage": "https://github.com/mermaid-js/mermaid-bot",
"keywords": [
"probot",
"github",
"probot-app",
"mermaid"
],
"scripts": {
"build": "tsc",
"start": "probot run ./lib/index.js",
"test": "jest",
"eligible": "esno ./src/eligibleUsers.ts"
},
"dependencies": {
"@octokit/auth-app": "^4.0.9",
"@octokit/rest": "^19.0.7",
"dotenv": "^16.0.3",
"probot": "^12.2.4",
"probot-metadata": "^2.1.0"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"esno": "^0.16.3",
"jest": "^29.0.0",
"nock": "^13.0.5",
"smee-client": "^1.2.2",
"ts-jest": "^29.0.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 10.13.0"
}
}