Socket
Book a DemoSign in
Socket

lefthook

Package Overview
Dependencies
Maintainers
1
Versions
173
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lefthook - npm Package Compare versions

Comparing version
2.0.12
to
2.0.13
+11
-11
package.json
{
"name": "lefthook",
"version": "2.0.12",
"version": "2.0.13",
"description": "Simple git hooks manager",

@@ -31,12 +31,12 @@ "repository": {

"optionalDependencies": {
"lefthook-darwin-arm64": "2.0.12",
"lefthook-darwin-x64": "2.0.12",
"lefthook-linux-arm64": "2.0.12",
"lefthook-linux-x64": "2.0.12",
"lefthook-freebsd-arm64": "2.0.12",
"lefthook-freebsd-x64": "2.0.12",
"lefthook-openbsd-arm64": "2.0.12",
"lefthook-openbsd-x64": "2.0.12",
"lefthook-windows-arm64": "2.0.12",
"lefthook-windows-x64": "2.0.12"
"lefthook-darwin-arm64": "2.0.13",
"lefthook-darwin-x64": "2.0.13",
"lefthook-linux-arm64": "2.0.13",
"lefthook-linux-x64": "2.0.13",
"lefthook-freebsd-arm64": "2.0.13",
"lefthook-freebsd-x64": "2.0.13",
"lefthook-openbsd-arm64": "2.0.13",
"lefthook-openbsd-x64": "2.0.13",
"lefthook-windows-arm64": "2.0.13",
"lefthook-windows-x64": "2.0.13"
},

@@ -43,0 +43,0 @@ "scripts": {

@@ -25,3 +25,3 @@ ![Build Status](https://github.com/evilmartians/lefthook/actions/workflows/test.yml/badge.svg?branch=master)

```bash
go install github.com/evilmartians/lefthook/v2@v2.0.12
go install github.com/evilmartians/lefthook/v2@v2.0.13
```

@@ -28,0 +28,0 @@

@@ -445,3 +445,3 @@ {

},
"$comment": "Last updated on 2025.12.10.",
"$comment": "Last updated on 2025.12.19.",
"properties": {

@@ -625,4 +625,87 @@ "min_version": {

},
"additionalProperties": false,
"additionalProperties": {
"properties": {
"parallel": {
"type": "boolean"
},
"piped": {
"type": "boolean"
},
"follow": {
"type": "boolean"
},
"fail_on_changes": {
"type": "string",
"enum": [
"true",
"1",
"0",
"false",
"never",
"always",
"ci",
"non-ci"
]
},
"fail_on_changes_diff": {
"type": "boolean"
},
"files": {
"type": "string"
},
"exclude_tags": {
"items": {
"type": "string"
},
"type": "array"
},
"exclude": {
"items": {
"type": "string"
},
"type": "array"
},
"skip": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "array"
}
]
},
"only": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "array"
}
]
},
"jobs": {
"items": {
"$ref": "#/$defs/Job"
},
"type": "array"
},
"commands": {
"additionalProperties": {
"$ref": "#/$defs/Command"
},
"type": "object"
},
"scripts": {
"additionalProperties": {
"$ref": "#/$defs/Script"
},
"type": "object"
}
},
"additionalProperties": false,
"type": "object"
},
"type": "object"
}