Initial commit

This commit is contained in:
ahoZiorce
2018-07-01 15:47:18 +02:00
commit 979d9043be
4 changed files with 45 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/node_modules/

1
index.js Normal file
View File

@@ -0,0 +1 @@
console.log('Initial commit');

29
package-lock.json generated Normal file
View File

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

14
package.json Normal file
View File

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