forked from nvie/gitflow
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.46 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.46 KB
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
{
"name": "gitflow",
"version": "0.5.5",
"description": "Modified gitflow for dreidev",
"main": "src/index.js",
"scripts": {
"postinstall": "curl https://raw.githubusercontent.com/dreidev/gitflow/develop/contrib/gitflow-installer.sh > gitflow-installer.sh; chmod a+x gitflow-installer.sh; if [ -z ${TRAVIS+x} ]; then sudo bash gitflow-installer.sh install stable; else bash gitflow-installer.sh install stable;exit 0;fi",
"postuninstall": "curl https://raw.githubusercontent.com/dreidev/gitflow/develop/contrib/gitflow-installer.sh > gitflow-installer.sh; chmod a+x gitflow-installer.sh; if [ -z ${TRAVIS+x} ]; then sudo bash gitflow-installer.sh uninstall; else sudo gitflow-installer.sh uninstall;exit 0;fi"
},
"files": [
"src/"
],
"bin": {
"breakout-flow": "./node_modules/breakout-timeline/bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dreidev/gitflow.git"
},
"os": [
"!win32"
],
"keywords": [
"gitflow",
"dreidev",
"version",
"control",
"git",
"cmosh"
],
"author": {
"name": "Clive Makamara",
"email": "clive@makamara.me",
"url": "http://github.com/cmosh",
"organization": "dreidev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dreidev/gitflow/issues"
},
"homepage": "https://github.com/dreidev/gitflow#readme",
"dependencies": {
"breakout-timeline": "0.0.4",
"commander": "^2.9.0",
"shelljs": "^0.7.6"
}
}