-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
43
{
"name": "pr-notification-bot",
"version": "1.0.0",
"description": "Send messages to remind reviewing pull requests.",
"main": "index.js",
"author": "SeokHo Lee <https://github.com/rrgks6221>",
"license": "MIT",
"contributors": [
"Seok Ho Lee <[email protected]>"
],
"keywords": [
"discord",
"slack",
"pull request",
"notification"
],
"scripts": {
"build": "tsc -p .",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rrgks6221/pr-notification-bot.git"
},
"bugs": {
"url": "https://github.com/rrgks6221/pr-notification-bot/issues"
},
"homepage": "https://github.com/rrgks6221/pr-notification-bot#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@slack/types": "^2.8.0",
"@slack/webhook": "^6.1.0",
"axios": "^1.3.2",
"discord-webhook-node": "^1.1.8",
"dotenv": "^16.0.3",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/node": "^14.11.2",
"typescript": "~4.7.0"
}
}