From c0638ac5084fa23a43bbcf396cd99a5e436168da Mon Sep 17 00:00:00 2001 From: Wolvan Date: Fri, 20 Nov 2015 03:41:47 +0100 Subject: [PATCH] Do "npm init" and create package.json Run "npm init" to create the package.json for easy bot installation and meta-data --- package.json | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..9d1e7c3 --- /dev/null +++ b/package.json @@ -0,0 +1,34 @@ +{ + "name": "newxkitbot", + "version": "2.0.0", + "description": "The little helping hand for the New-XKit Team", + "main": "main.js", + "dependencies": { + "extend": "^3.0.0", + "irc": "^0.4.0", + "node-gitter": "^1.2.8", + "octonode": "^0.7.4" + }, + "devDependencies": {}, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/new-xkit/NewXKitBot.git" + }, + "keywords": [ + "bot", + "new", + "xkit", + "gitter", + "irc", + "bridge" + ], + "author": "Wolvan (http://www.github.com/Wolvan)", + "license": "GPL-2.0", + "bugs": { + "url": "https://github.com/new-xkit/NewXKitBot/issues" + }, + "homepage": "https://github.com/new-xkit/NewXKitBot#readme" +}