-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 KB
/
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
42
{
"name": "zoilist",
"version": "1.0.0",
"private": true,
"description": "Nag @electron/api-wg to review API PRs.",
"author": "Jeremy Rose <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/electron/zoilist",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"start": "probot run ./lib/index.js",
"remind": "node ./lib/remind.js",
"lint": "prettier --check \"src/**/*.ts\" \"test/*.ts\"",
"format": "prettier --write \"src/**/*.ts\" \"test/*.ts\"",
"test": "jest"
},
"dependencies": {
"@electron/github-app-auth": "^2.2.1",
"@octokit/rest": "^20.0.2",
"@octokit/webhooks-types": "^5.8.0",
"@slack/web-api": "^6.3.0",
"probot": "^12.3.3"
},
"devDependencies": {
"@slack-wrench/jest-mock-web-client": "^1.4.0",
"@types/jest": "^26.0.19",
"@types/node": "^20.10.6",
"jest": "^26.6.3",
"prettier": "^3.0.0",
"smee-client": "^2.0.1",
"ts-jest": "^26.4.4",
"typescript": "^5.3.3"
},
"engines": {
"node": ">= 16.13.0"
}
}