Merge pull request #15 from dreidev/develop
merge master
Showing
.travis.yml
0 → 100644
gitflow @ 82ff372c
| { | { | ||
| "name": "gitflow", | "name": "gitflow", | ||
| "version": "0.4.11", | "version": "0.5.5", | ||
| "description": "Modified gitflow for dreidev", | "description": "Modified gitflow for dreidev", | ||
| "main": "src/index.js", | "main": "src/index.js", | ||
| "scripts": { | "scripts": { | ||
| "postinstall": "curl https://raw.githubusercontent.com/dreidev/gitflow/develop/contrib/gitflow-installer.sh > gitflow-installer.sh; chmod a+x gitflow-installer.sh; sudo bash gitflow-installer.sh install stable", | "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; sudo bash gitflow-installer.sh uninstall" | "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": [ | "files": [ | ||
| "src/" | "src/" | ||
| ], | ], | ||
| "bin": { | "bin": { | ||
| "flow": "src/flow.js" | "breakout-flow": "./node_modules/breakout-timeline/bin/index.js" | ||
| }, | }, | ||
| "repository": { | "repository": { | ||
| "type": "git", | "type": "git", | ||
| "url": "git+https://github.com/dreidev/gitflow.git" | "url": "git+https://github.com/dreidev/gitflow.git" | ||
| }, | }, | ||
| "os": [ | |||
| "!win32" | |||
| ], | |||
| "keywords": [ | "keywords": [ | ||
| "gitflow", | "gitflow", | ||
| "dreidev", | "dreidev", | ||
| "version", | "version", | ||
| "control", | "control", | ||
| "git", | "git", | ||
| "drazious", | |||
| "cmosh" | "cmosh" | ||
| ], | ], | ||
| "author": { | "author": { | ||
| ... | @@ -31,13 +33,14 @@ | ... | @@ -31,13 +33,14 @@ |
| "email": "clive@makamara.me", | "email": "clive@makamara.me", | ||
| "url": "http://github.com/cmosh", | "url": "http://github.com/cmosh", | ||
| "organization": "dreidev" | "organization": "dreidev" | ||
| }, | }, | ||
| "license": "LGPL", | "license": "MIT", | ||
| "bugs": { | "bugs": { | ||
| "url": "https://github.com/dreidev/gitflow/issues" | "url": "https://github.com/dreidev/gitflow/issues" | ||
| }, | }, | ||
| "homepage": "https://github.com/dreidev/gitflow#readme", | "homepage": "https://github.com/dreidev/gitflow#readme", | ||
| "dependencies": { | "dependencies": { | ||
| "breakout-timeline": "0.0.4", | |||
| "commander": "^2.9.0", | "commander": "^2.9.0", | ||
| "shelljs": "^0.7.6" | "shelljs": "^0.7.6" | ||
| } | } | ||
| ... | ... |
Please register or sign in to comment