forked from toplenboren/simple-git-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.03 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.03 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
{
"name": "simple-pre-commit",
"version": "1.2.1",
"description": "A simple, zero dependency tool for setting up git pre-commit hook for small projects",
"author": "Mikhail Gorbunov <toplenboren@gmail.com> (toplenboren.gituhb.io)",
"main": "./simple-pre-commit.js",
"bin": "./cli.js",
"scripts": {
"postinstall": "node ./postinstall.js",
"lint": "eslint *.js",
"test": "jest",
"publish": "clean-publish",
"uninstall": "node ./uninstall.js"
},
"keywords": [
"pre-commit",
"git",
"hook",
"lint"
],
"license": "MIT",
"homepage": "https://github.com/toplenboren/simple-pre-commit",
"lint-staged": {
"*.js": "eslint"
},
"clean-publish": {
"files": [
"LICENSE.txt",
".gitignore",
"simple-pre-commit.test.js",
"_tests",
".github",
".idea",
".vscode",
".npmignore"
],
"packageManager": "npm"
},
"devDependencies": {
"clean-publish": "^1.1.8",
"eslint": "^7.19.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4"
}
}