-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 912 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
38
{
"name": "schedule-branch-lock",
"version": "0.0.0",
"description": "Github Action to Lock a Branch on a Schedule",
"main": "index.js",
"scripts": {
"build": "prettier -w *.ts **/*.yml && tsc index.ts && ncc build index.js --license licenses.txt",
"test": "tsc test.ts && node test.js"
},
"repository": {
"type": "git",
"url": "github.com/justindfuller/schedule-branch-lock"
},
"keywords": [
"Github",
"Action",
"Lock",
"Branch",
"Branch",
"Protection",
"Schedule"
],
"author": "Justin Fuller <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"dayjs": "^1.11.12"
},
"devDependencies": {
"@types/node": "^20.14.12",
"@vercel/ncc": "^0.38.1",
"chalk": "^5.3.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}