Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoSign in
Socket

git-hooks-list

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-hooks-list - npm Package Compare versions

Comparing version
4.1.1
to
4.2.0
+2
-2
index.d.ts

@@ -35,7 +35,7 @@ type GitHook =

@example
```
```js
import gitHooks from 'git-hooks-list'
console.log(gitHooks)
//=> ['applypatch-msg', 'pre-applypatch', 'post-applypatch', 'pre-commit', …]
//-> ['applypatch-msg', 'pre-applypatch', 'post-applypatch', …]
```

@@ -42,0 +42,0 @@ */

{
"name": "git-hooks-list",
"version": "4.1.1",
"version": "4.2.0",
"description": "List of Git hooks",

@@ -41,26 +41,2 @@ "keywords": [

],
"scripts": {
"clean": "run-p \"clean:*\"",
"clean:dist": "del-cli dist",
"dist": "run-p \"dist:*\"",
"dist:npm": "release-it",
"fix": "run-p \"fix:*\"",
"fix:eslint": "yarn lint:eslint --fix",
"fix:markdown": "markdownlint-cli2 --fix",
"fix:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"fix:prettier": "yarn lint:prettier --write",
"lint": "run-p \"lint:*\"",
"lint:eslint": "eslint",
"lint:markdown": "markdownlint-cli2",
"lint:package-json": "yarn run fix:package-json --check",
"lint:prettier": "prettier . --check",
"prepare": "husky",
"release": "run-s lint test fix dist",
"test": "ava",
"test-coverage": "c8 yarn test",
"update": "node scripts/update.js"
},
"ava": {
"verbose": true
},
"c8": {

@@ -75,24 +51,2 @@ "include": [

},
"devDependencies": {
"@fisker/eslint-config": "13.1.3",
"@fisker/husky-config": "4.1.3",
"@fisker/lint-staged-config": "3.3.2",
"@fisker/markdownlint-cli2-config": "0.0.3",
"@fisker/prettier-config": "5.1.1",
"ava": "6.2.0",
"c8": "10.1.3",
"cheerio": "1.0.0",
"del-cli": "6.0.0",
"eslint": "9.22.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"markdownlint-cli2": "0.17.2",
"npm-run-all2": "7.0.2",
"outdent": "0.8.0",
"prettier": "3.5.3",
"release-it": "18.1.2",
"sort-package-json": "3.0.0",
"write-prettier-file": "3.0.3"
},
"packageManager": "yarn@4.6.0",
"publishConfig": {

@@ -99,0 +53,0 @@ "access": "public",

@@ -29,2 +29,4 @@ # git-hooks-list

<!-- example start -->
```js

@@ -34,4 +36,5 @@ import gitHooks from 'git-hooks-list'

console.log(gitHooks)
//-> ['applypatch-msg', 'pre-applypatch', 'post-applypatch', …]
```
// => ['applypatch-msg', 'pre-applypatch', 'post-applypatch', 'pre-commit', ...]
```
<!-- example end -->