-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 928 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
{
"name": "todolist-api",
"version": "21.2.1",
"description": "todolist-api",
"repository": "https://github.com/mcauto/todolist-api.git",
"author": "Mincheol Kim<[email protected]>",
"main": "main.go",
"license": "MIT",
"scripts": {
"start": "go run main.go run",
"build": "make build",
"lint": "make lint",
"test": "make test"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^4.2.5",
"next-standard-version": "^2.1.3",
"standard-version": "^9.1.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"skipCI": true,
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "make lint vet test sast build"
}
}
}