-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 980 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 980 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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@nlib/githooks",
"publishConfig": {
"access": "public"
},
"version": "0.2.2",
"license": "Apache-2.0",
"author": {
"name": "Kei Ito",
"email": "kei.itof@gmail.com",
"url": "https://github.com/gjbkz"
},
"homepage": "https://github.com/nlibjs/githooks",
"repository": "https://github.com/nlibjs/githooks",
"engines": {
"node": ">=16"
},
"type": "module",
"main": "esm/cli.mjs",
"bin": {
"githooks-cli": "esm/cli.mjs"
},
"files": [
"esm",
"!**/*.test.*"
],
"scripts": {
"postinstall": "node esm/cli.mjs enable",
"build": "tsc",
"lint": "biome lint",
"test": "run-s test:*",
"test:build": "tsc --sourceMap",
"test:unit": "node --test",
"version": "npx @nlib/changelog --output CHANGELOG.md && git add CHANGELOG.md"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@types/node": "22.7.6",
"npm-run-all": "4.1.5",
"typescript": "5.6.3"
},
"renovate": {
"extends": [
"github>nlibjs/renovate-config"
]
}
}