-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 916 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 916 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
28
29
30
31
32
33
34
{
"name": "block-merge-based-on-time",
"version": "5.0.21",
"description": "You can prevent your members from merging pull requests during the specified time.",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts",
"fetch-holidays": "ts-node src/fetch-holidays.ts",
"check": "biome check .",
"fmt": "biome format --write .",
"fmt:check": "biome format .",
"lint": "biome lint .",
"test": "jest"
},
"keywords": [],
"author": "Yutaka Kamei",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1",
"luxon": "^3.7.2"
},
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@types/jest": "^30.0.0",
"@types/luxon": "^3.7.1",
"@types/node": "^25.9.3",
"@vercel/ncc": "^0.44.0",
"jest": "^30.4.2",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}