-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 946 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
39
40
41
42
43
44
45
46
{
"name": "byulhook",
"version": "0.1.7",
"description": "Tool for managing Git hooks",
"main": "dist/bin/byulhook.js",
"bin": {
"byulhook": "./dist/bin/byulhook.js"
},
"license": "MIT",
"type": "module",
"author": "love1ace <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/byulhook/byulhook.git"
},
"keywords": [
"husky",
"lefthook",
"git hooks",
"love1ace",
"byul",
"byulhook"
],
"bugs": {
"url": "https://github.com/byulhook/byulhook/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/byulhook/byulhook#readme",
"dependencies": {
"yaml": "^2.5.0"
},
"devDependencies": {
"@types/node": "^22.5.0",
"@types/yaml": "^1.9.7",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"scripts": {
"build": "tsc",
"preinstall": "node dist/bin/setup.mjs"
}
}