From d9a53b01e19ca12a3fe9661d379670a8cbaef750 Mon Sep 17 00:00:00 2001 From: Aaronepower Date: Tue, 23 Sep 2014 00:04:40 +0100 Subject: [PATCH] Change to Node module Management added 'node_modules' to '.gitignore' to reduce project file size and add a 'package.json' to replace node module management. --- .gitignore | 5 +++++ package.json | 30 ++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 package.json diff --git a/.gitignore b/.gitignore index fe7f44f..7c783e0 100644 --- a/.gitignore +++ b/.gitignore @@ -164,6 +164,11 @@ pip-log.txt # Mac crap .DS_Store +########## +## Node.JS +########## +node_modules + ################### ## Project Specific ################### diff --git a/package.json b/package.json new file mode 100644 index 0000000..a257f2f --- /dev/null +++ b/package.json @@ -0,0 +1,30 @@ +{ + "name": "TwitchBot", + "version": "0.3.9", + "description": "A TwitchTV viewer reward system", + "main": "./users/example.js", + "dependencies": { + "express": "~4.2.0", + "jade": "^1.1.5", + "mysql": "^2.0.0-alpha5" + }, + "devDependencies": {}, + "scripts": { + "test": "./users/example.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/binaryatrocity/TwitchBot.git" + }, + "keywords": [ + "twitch", + "IRC", + "bot" + ], + "author": "binaryatrocity", + "license": "ISC", + "bugs": { + "url": "https://github.com/binaryatrocity/TwitchBot/issues" + }, + "homepage": "https://github.com/binaryatrocity/TwitchBot" +}