-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.6 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
{
"name": "pt.codeforge.tooler-tools",
"version": "0.1.0",
"description": "Versatile library for backend and CLI developers, offers a growing collection of",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "mvn -B --update-snapshots clean test",
"update:logs": "npm run release -- --skip.bump --skip.tag --skip.commit",
"prepare": "husky install",
"release": "standard-version",
"release:minor": "mvn build-helper:parse-version versions:set@minor && npm run commit-pom && standard-version -s -t '' --release-as minor",
"release:patch": "mvn build-helper:parse-version versions:set@patch && npm run commit-pom && standard-version -s -t '' --release-as patch",
"release:major": "mvn build-helper:parse-version versions:set@major && npm run commit-pom && standard-version -s -t '' --release-as major",
"commit-pom": "git add pom.xml && git commit -m \"build: pom.xml update\""
},
"repository": {
"type": "git",
"url": "https://github.com/rikkarth/tooler-tools.git"
},
"keywords": [
"tooler-tools",
"rikkarth",
"java",
"backend",
"library",
"lib"
],
"author": "Ricardo Mendes",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/rikkarth/tooler-tools/issues"
},
"homepage": "https://github.com/rikkarth/tooler-tools#readme",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"husky": "^8.0.0",
"standard-version": "^9.5.0"
}
}