-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update the package.json with data of the travis plugin
Signed-off-by: Henrique Vicente <[email protected]>
- Loading branch information
Showing
1 changed file
with
14 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,34 @@ | ||
{ | ||
"name": "gh-boilerplate", | ||
"description": "NodeGH plugin for demonstrating how to create NodeGH plugins", | ||
"name": "gh-travis", | ||
"description": "NodeGH Travis plugin", | ||
"version": "0.1.0", | ||
"author": { | ||
"name": "Author", | ||
"email": "email@email.com", | ||
"web": "http://www.nodegh.io" | ||
"name": "Henrique Vicente", | ||
"email": "henriquevicente@gmail.com", | ||
"web": "http://henvic.github.io/" | ||
}, | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:node-gh/gh-boilerplate.git" | ||
"url": "[email protected]:node-gh/gh-travis.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/node-gh/gh-boilerplate/issues" | ||
"url": "https://github.com/node-gh/gh-travis/issues" | ||
}, | ||
"keywords": [ | ||
"gh", "nodegh", "boilerplate", "plugin" | ||
"gh", "nodegh", "travis", "ci", "plugin" | ||
], | ||
"bin": { | ||
"gh-bo": "bin/boilerplate.js", | ||
"gh-boilerplate": "bin/boilerplate.js" | ||
"gh-tr": "bin/gh-travis.js", | ||
"gh-travis": "bin/gh-travis.js" | ||
}, | ||
"engines": { | ||
"node": ">=0.8" | ||
}, | ||
"dependencies": { | ||
"open": ">=0.0.4", | ||
"travis-ci": ">=1.0.1" | ||
}, | ||
"peerDependencies": { | ||
"gh": ">=1.4.0" | ||
}, | ||
|