forked from toplenboren/simple-git-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.1 KB
/
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
47
48
49
{
"name": "simple-git-hooks",
"version": "2.9.0",
"description": "A simple, zero dependency tool for setting up git hooks for small projects",
"author": "Mikhail Gorbunov <[email protected]> (toplenboren.github.io)",
"main": "simple-git-hooks.js",
"bin": "./cli.js",
"scripts": {
"postinstall": "node ./postinstall.js",
"lint": "eslint *.js",
"test": "jest",
"publish": "publish",
"create-publish-dist": "clean-publish --no-publish",
"uninstall": "node ./uninstall.js"
},
"keywords": [
"pre-commit",
"pre-push",
"git",
"hook",
"lint",
"linter"
],
"license": "MIT",
"repository": "toplenboren/simple-git-hooks",
"lint-staged": {
"*.js": "eslint"
},
"clean-publish": {
"files": [
"LICENSE.txt",
".gitignore",
"simple-git-hooks.test.js",
"_tests",
".github",
".idea",
".vscode",
".npmignore",
"changelog.md"
],
"packageManager": "npm"
},
"devDependencies": {
"clean-publish": "^4.2.0",
"eslint": "^7.19.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4"
}
}