-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 749 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 749 Bytes
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
{
"name": "github-codewatchers",
"version": "3.0.0",
"description": "GitHub Action that triggers notifications about changed files to a list of subscribers",
"main": "dist/index.js",
"scripts": {
"test": "ts-node -r dotenv/config src/index.ts",
"build": "ncc build src/index.ts --license LICENSE",
"watch": "tsc --watch"
},
"keywords": [],
"author": "Dmitry Gurovich <yrtimid@gmail.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/action": "^6.0.7",
"@octokit/rest": "^20.0.2",
"ignore": "^5.3.0"
},
"devDependencies": {
"@types/node": "^20.11.7",
"@vercel/ncc": "^0.38.1",
"dotenv": "^16.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}