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",
"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",

View File

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