-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.61 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
{
"author": "Rodrigo Moutinho",
"name": "cyborg-developer-cookbook",
"description": "Get Rid of Manual Steps and Reduce the Dependency on Hero Developers on Your Team Today!",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cyborgdeveloper/cyborg-developer-cookbook.git"
},
"bugs": {
"url": "https://github.com/cyborgdeveloper/cyborg-developer-cookbook/issues"
},
"homepage": "https://github.com/cyborgdeveloper/cyborg-developer-cookbook",
"keywords": [
"Automation",
"Vagrant",
"Docker",
"Java",
"Linux",
"Git",
"Devops",
"Asciidoctor"
],
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@commitlint/prompt": "^8.0.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.2.0",
"@semantic-release/git": "^7.0.16",
"@semantic-release/github": "^5.4.2",
"@semantic-release/release-notes-generator": "^7.2.1",
"commitizen": "^3.1.1",
"git-cz": "^3.0.1",
"husky": "^2.7.0",
"semantic-release": "^15.13.18",
"semantic-release-cli": "^5.1.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"commit": "./node_modules/.bin/git-cz",
"semantic-release": "./node_modules/.bin/semantic-release",
"semantic-release-cli": "./node_modules/.bin/semantic-release-cli"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
}
}