-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 879 Bytes
/
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
{
"name": "git-messages-format",
"version": "1.0.0",
"description": "test for getting a shareable commit messages format across a dev team",
"main": "",
"scripts": {},
"repository": {
"type": "git",
"url": "git+https://github.com/mbelchin/git-messages-format.git"
},
"keywords": [
"git",
"messages",
"commit",
"format"
],
"author": "Moises Belchin <moisesbelchin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mbelchin/git-messages-format/issues"
},
"homepage": "https://github.com/mbelchin/git-messages-format#readme",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.1",
"husky": "^4.2.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"post-merge": "npm install"
}
}
}