-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 KB
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
48
49
{
"name": "git-blame-ignore-style-formatting-post-commit-hook",
"version": "0.0.2",
"description": "post-commit hook to add an entry to .git-blame-ignore-revs for `style: foo` commits",
"main": "index.js",
"bin": {
"git-blame-ignore-style-formatting-post-commit-hook": "./bin/git-blame-ignore-style-formatting-post-commit-hook"
},
"files": [
"bin/*",
"index.js"
],
"private": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"preinstall": "git config --local blame.ignoreRevsFile .git-blame-ignore-revs || echo 'not a git repo, skipping git blame config'",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devinrhode2/git-blame-ignore-style-formatting-post-commit-hook.git"
},
"keywords": [
"git",
"blame",
"ignore",
"style",
"formatting",
"prettier",
"post",
"commit",
"hook",
"husky"
],
"author": "devinrhode2",
"license": "MIT",
"bugs": {
"url": "https://github.com/devinrhode2/git-blame-ignore-style-formatting-post-commit-hook/issues"
},
"homepage": "https://github.com/devinrhode2/git-blame-ignore-style-formatting-post-commit-hook#readme",
"devDependencies": {
"@types/node": "^16.11.68",
"husky": "^8.0.0",
"pinst": "^3.0.0",
"prettier": "^2.7.1"
}
}