-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 1.01 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
{
"name": "repo-monitor",
"version": "1.0.4",
"description": "A GitHub Action to monitor a repository for new issues and PRs and send notifications to different channels.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"prepare": "ncc build action/index.js -o dist --source-map --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shubhaamgupta11/repo-monitor.git"
},
"keywords": ["github", "action", "slack", "discord", "issues", "prs", "monitor", "notifications", "open-source", "repository", "alerts", "github-actions", "issue-tracker", "pr-tracker", "activity-monitor"],
"author": "Shubham Gupta",
"bugs": {
"url": "https://github.com/shubhaamgupta11/repo-monitor/issues"
},
"homepage": "https://github.com/shubhaamgupta11/repo-monitor#readme",
"license": "MIT",
"dependencies": {
"axios": "^1.5.0",
"@slack/web-api": "^6.10.0",
"@actions/core": "1.10.0"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1"
}
}