-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 995 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
{
"name": "outstanding-pull-requests-action",
"version": "1.0.1",
"description": "Send a Slack message when two branches of a repository diverge by a certain number of commits.",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts -o dist",
"lint": "node_modules/.bin/eslint src"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fishbrain/outstanding-pull-requests-action"
},
"keywords": [
"pull requests",
"github",
"action",
"actions"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fishbrain/outstanding-pull-requests-action/issues"
},
"homepage": "https://github.com/fishbrain/outstanding-pull-requests-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@octokit/rest": "^21.0.1",
"@slack/web-api": "^7.8.0"
},
"devDependencies": {
"@fishbrain/eslint-config-base": "6.2.0",
"@vercel/ncc": "^0.38.3"
}
}