commit 979d9043be8e767ca3ec7b46a43be3b180b24f10 Author: ahoZiorce Date: Sun Jul 1 15:47:18 2018 +0200 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..096746c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/node_modules/ \ No newline at end of file diff --git a/index.js b/index.js new file mode 100644 index 0000000..03e343d --- /dev/null +++ b/index.js @@ -0,0 +1 @@ +console.log('Initial commit'); \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..444ab55 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,29 @@ +{ + "name": "logori", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "async-limiter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", + "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==" + }, + "eris": { + "version": "0.8.6", + "resolved": "https://registry.npmjs.org/eris/-/eris-0.8.6.tgz", + "integrity": "sha512-mEE+hMxs1YrQhu7YSs8jTUoaZC0ahWDNPLR9Iq/FmIzXYPBIEFKXpL00jbARa36Xpay7fmc/cQfJLwhebDMwuw==", + "requires": { + "ws": "5.2.1" + } + }, + "ws": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.1.tgz", + "integrity": "sha512-2NkHdPKjDBj3CHdnAGNpmlliryKqF+n9MYXX7/wsVC4yqYocKreKNjydPDvT3wShAZnndlM0RytEfTALCDvz7A==", + "requires": { + "async-limiter": "1.0.0" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..395836e --- /dev/null +++ b/package.json @@ -0,0 +1,14 @@ +{ + "name": "logori", + "version": "1.0.0", + "description": "A discord bot intended to complete the audit log", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "Alejandro W. Sior", + "license": "MIT", + "dependencies": { + "eris": "^0.8.6" + } +}