forked from rosineygp/mkdkr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "mkdkr",
"version": "1.14.0",
"description": "Super small and powerful framework for build CI pipeline, scripted with Makefile and isolated with docker.",
"main": "index.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "standard-version -n --skip.commit --skip.tag && git add CHANGELOG.md package.json && git commit --amend --no-edit && standard-version -n --skip.commit --skip.changelog --skip.bump"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rosineygp/mkdkr.git"
},
"keywords": [
"makefile",
"docker",
"git",
"pipeline",
"ci",
"cd"
],
"author": "Rosiney Gomes Pereira",
"license": "ISC",
"bugs": {
"url": "https://github.com/rosineygp/mkdkr/issues"
},
"homepage": "https://github.com/rosineygp/mkdkr#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"husky": "^3.1.0",
"standard-version": "^8.0.1"
},
"husky": {
"hooks": {
"pre-commit": "make lint.shellcheck",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}