diff --git a/.gitignore b/.gitignore index 7d3289c..6b0db7e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -#blocking out my IDE files +# Blocking out IDE files /.idea/ # Logs diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 89e50ff..5780a39 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -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", diff --git a/package.json b/package.json index 61ada06..bdd1410 100644 --- a/package.json +++ b/package.json @@ -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" } }