remove references to client

This commit is contained in:
Sharon Kennedy 2020-05-06 20:49:14 -04:00
parent f837264d76
commit f7da8fb2ac
2 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
{ {
"name": "ocrcc-bot", "name": "safesupport-bot",
"version": "0.1.0", "version": "0.1.0",
"description": "Chatbot to manage interactions on OCRCC client chatbots", "description": "Chatbot to manage interactions on Safe Support Chat",
"main": "dist/ocrcc-chatbot.js", "main": "dist/index.js",
"scripts": { "scripts": {
"develop": "nodemon --exec babel-node src/index.js", "develop": "nodemon --exec babel-node src/index.js",
"build": "babel src -d dist", "build": "babel src -d dist",

View File

@ -40,6 +40,6 @@ module.exports = [{
entry: './src/index.js', entry: './src/index.js',
output: { output: {
path: distDir, path: distDir,
filename: 'ocrcc-chatbot.js', filename: 'index.js',
}, },
}]; }];