Browse Source

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.
pull/1/head
Aaronepower 10 years ago
parent
commit
d9a53b01e1
  1. 5
      .gitignore
  2. 30
      package.json

5
.gitignore

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

30
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"
}
Loading…
Cancel
Save