-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 949 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
35
{
"name": "rocket-git-task",
"version": "1.2.2",
"description": "Automação de fluxo de trabalho no Git para tasks, deploy e releases.",
"bin": {
"git-task": "./git-task.sh"
},
"scripts": {
"gt:init": "git task init",
"gt:create": "git task create",
"gt:deploy:homolog": "git task deploy homolog",
"gt:deploy:production": "git task deploy production",
"gt:release:homolog": "git task release homolog",
"gt:release:production": "git task release production",
"gt:finish": "git task finish",
"gt:finish:force": "git task finish --force",
"gt:publish": "./.builds/publish.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tihhgoncalves/rocket-git-task.git"
},
"keywords": [
"git",
"task",
"automation",
"workflow",
"git-flow"
],
"author": "Tihh Gonçalves",
"license": "MIT",
"devDependencies": {
"standard-version": "^9.5.0"
}
}