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.
This commit is contained in:
Aaronepower 2014-09-23 00:04:40 +01:00
parent 708ff96989
commit d9a53b01e1
2 changed files with 35 additions and 0 deletions

5
.gitignore vendored
View File

@ -164,6 +164,11 @@ pip-log.txt
# Mac crap # Mac crap
.DS_Store .DS_Store
##########
## Node.JS
##########
node_modules
################### ###################
## Project Specific ## Project Specific
################### ###################

30
package.json Normal file
View File

@ -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"
}