forked from lechidung/husky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.37 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "husky",
"version": "5.0.1",
"description": "Git hooks made easy",
"bin": "lib/bin.js",
"files": [
"/lib",
"/scripts",
"LICENSE",
"LICENSE-MIT",
"LICENSE-PARITY",
"LICENSE-PATRON"
],
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/prompt-cli": "^11.0.0",
"@tsconfig/node10": "^1.0.7",
"@types/node": "^14.10.1",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"docsify-cli": "^4.4.1",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"pinst": "^2.0.0",
"prettier": "^2.1.1",
"type-fest": "^0.16.0",
"typescript": "^4.0.2"
},
"scripts": {
"build": "tsc",
"serve": "docsify serve docs",
"lint": "eslint . --ext .js,.ts --ignore-path .gitignore",
"postinstall": "npm run build && node lib/bin install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"preversion": "npm run build",
"postversion": "git push && git push --tags && npm publish --tag next",
"prepublish": "pinst --disable",
"postpublish": "pinst --enable",
"pretest": "npm run build --silent && npm pack --silent",
"test": "sh ./test/default.sh && sh ./test/subdir.sh",
"posttest": "rm husky-*.tgz",
"commit": "commit"
},
"engines": {
"node": ">= 10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typicode/husky.git"
},
"keywords": [
"git",
"hook",
"hooks",
"test",
"lint",
"applypatch-msg",
"pre-applypatch",
"post-applypatch",
"pre-commit",
"pre-merge-commit",
"prepare-commit-msg",
"commit-msg",
"post-commit",
"pre-rebase",
"post-checkout",
"post-merge",
"pre-push",
"post-update",
"push-to-checkout",
"pre-auto-gc",
"post-rewrite",
"sendemail-validate"
],
"author": "Typicode <typicode@gmail.com>",
"license": "Parity-7.0.0 AND MIT WITH Patron-1.0.0",
"bugs": {
"url": "https://github.com/typicode/husky/issues"
},
"homepage": "https://github.com/typicode/husky#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/typicode"
},
{
"type": "opencollective",
"url": "https://opencollective.com/husky"
}
]
}