diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b512c09 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules \ No newline at end of file diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e25379d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,6 @@ +language: node_js +node_js: + - lts/* + +before_install: + - npm i diff --git a/index.js b/index.js new file mode 100644 index 0000000..7120b8a --- /dev/null +++ b/index.js @@ -0,0 +1 @@ +import('./src/index').main(); \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..49e3d1f --- /dev/null +++ b/package.json @@ -0,0 +1,23 @@ +{ + "name": "thebackyardbot", + "version": "1.0.0", + "description": "

\r \r

", + "main": "index.js", + "dependencies": {}, + "devDependencies": {}, + "scripts": { + "test": "node index.js", + "debug": "nodemon", + "production": "node index.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/plane000/TheBackyardBot.git" + }, + "author": "Ben Kyd (https://benkyd.co.uk)", + "license": "MIT", + "bugs": { + "url": "https://github.com/plane000/TheBackyardBot/issues" + }, + "homepage": "https://github.com/plane000/TheBackyardBot#readme" +} diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..cf4b250 --- /dev/null +++ b/src/index.js @@ -0,0 +1,5 @@ + +module.exports.main = async function() +{ + +}