Cleaning up and adding lodash.

This commit is contained in:
Alex 2020-08-16 12:10:12 -04:00
parent 93e5dd845e
commit 860cbc8f60
3 changed files with 11 additions and 4 deletions

2
.gitignore vendored
View File

@ -1,4 +1,4 @@
#blocking out my IDE files
# Blocking out IDE files
/.idea/
# Logs

9
npm-shrinkwrap.json generated
View File

@ -1,6 +1,6 @@
{
"name": "LineconBotDC28",
"version": "0.0.2",
"name": "linecon-bot",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -65,6 +65,11 @@
"resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
"integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ=="
},
"lodash": {
"version": "4.17.20",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
"integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
},
"mime-db": {
"version": "1.44.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz",

View File

@ -7,10 +7,12 @@
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --trace-warnings ./src/index.js"
},
"repository": "https://github.com/fox3455/LineconBotDC28",
"keywords": [],
"author": "Technically, Fox3455",
"license": "MIT",
"dependencies": {
"discord.js": "^12.2.0"
"discord.js": "^12.2.0",
"lodash": "^4.17.20"
}
}