From 405efb58deffb6273819b071648a9fc30c8d02c0 Mon Sep 17 00:00:00 2001 From: Brandon Morelli Date: Sat, 27 May 2017 08:32:23 -0700 Subject: [PATCH] basic file structure --- .gitignore | 49 ++----------------------------------------------- app.js | 2 ++ package.json | 22 ++++++++++++++++++++++ 3 files changed, 26 insertions(+), 47 deletions(-) create mode 100644 app.js create mode 100644 package.json diff --git a/.gitignore b/.gitignore index cd2946a..5adb5f4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,47 +1,2 @@ -# Windows image file caches -Thumbs.db -ehthumbs.db - -# Folder config file -Desktop.ini - -# Recycle Bin used on file shares -$RECYCLE.BIN/ - -# Windows Installer files -*.cab -*.msi -*.msm -*.msp - -# Windows shortcuts -*.lnk - -# ========================= -# Operating System Files -# ========================= - -# OSX -# ========================= - -.DS_Store -.AppleDouble -.LSOverride - -# Thumbnails -._* - -# Files that might appear in the root of a volume -.DocumentRevisions-V100 -.fseventsd -.Spotlight-V100 -.TemporaryItems -.Trashes -.VolumeIcon.icns - -# Directories potentially created on remote AFP share -.AppleDB -.AppleDesktop -Network Trash Folder -Temporary Items -.apdisk +node_modules +config.js diff --git a/app.js b/app.js new file mode 100644 index 0000000..967bdf7 --- /dev/null +++ b/app.js @@ -0,0 +1,2 @@ +var twit = require('twit'); +var config = require('./config.js'); diff --git a/package.json b/package.json new file mode 100644 index 0000000..236b734 --- /dev/null +++ b/package.json @@ -0,0 +1,22 @@ +{ + "name": "twitter-bot", + "version": "1.0.0", + "description": "Nodejs Twitter Bot", + "main": "app.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/bmorelli25/Twitter-Bot.git" + }, + "author": "Brandon Morelli", + "license": "ISC", + "bugs": { + "url": "https://github.com/bmorelli25/Twitter-Bot/issues" + }, + "homepage": "https://github.com/bmorelli25/Twitter-Bot#readme", + "dependencies": { + "twit": "^2.2.5" + } +}