-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.57 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
{
"author": "Rinaldo Pitzer Jr. e Rodrigo Moutinho",
"name": "java6-to-java8",
"description": "Guia para ajudar devs Java atualizarem sua certificação Java 6 para Java 8.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/duke-certification/java6-to-java8.git"
},
"bugs": {
"url": "https://github.com/duke-certification/java6-to-java8/issues"
},
"homepage": "https://github.com/duke-certification/java6-to-java8",
"keywords": [
"java",
"java6",
"java8",
"certificate",
"developer",
"update",
"guide"
],
"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"
}
}
}