From 748e230aa7140e926e4f5aba7d0a27596d950ca4 Mon Sep 17 00:00:00 2001 From: Henrique Vicente Date: Mon, 16 Sep 2013 14:56:42 -0300 Subject: [PATCH] update the package.json with data of the travis plugin Signed-off-by: Henrique Vicente --- package.json | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 9e41af9..1e961d9 100755 --- a/package.json +++ b/package.json @@ -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": "git@github.com:node-gh/gh-boilerplate.git" + "url": "git@github.com: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" },