diff --git a/package.json b/package.json index 9601e6a..cdceebc 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { - "name": "ocrcc-bot", + "name": "safesupport-bot", "version": "0.1.0", - "description": "Chatbot to manage interactions on OCRCC client chatbots", - "main": "dist/ocrcc-chatbot.js", + "description": "Chatbot to manage interactions on Safe Support Chat", + "main": "dist/index.js", "scripts": { "develop": "nodemon --exec babel-node src/index.js", "build": "babel src -d dist", diff --git a/webpack.config.js b/webpack.config.js index 1875055..a56cd41 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -40,6 +40,6 @@ module.exports = [{ entry: './src/index.js', output: { path: distDir, - filename: 'ocrcc-chatbot.js', + filename: 'index.js', }, }];