38 lines
992 B
JSON
38 lines
992 B
JSON
{
|
|
"name": "ocrcc-bot",
|
|
"version": "0.1.0",
|
|
"description": "Chatbot to manage interactions on OCRCC client chatbots",
|
|
"main": "dist/ocrcc-chatbot.js",
|
|
"scripts": {
|
|
"develop": "nodemon --exec babel-node src/index.js",
|
|
"build": "babel src -d dist",
|
|
"start": "yarn build && node dist/index.js",
|
|
"test": "jest"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"dotenv": "^8.2.0",
|
|
"matrix-js-sdk": "^5.0.1",
|
|
"node-localstorage": "^2.1.5",
|
|
"olm": "https://packages.matrix.org/npm/olm/olm-3.1.4.tgz",
|
|
"uuidv4": "^6.0.2",
|
|
"winston": "^3.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.8.4",
|
|
"@babel/core": "^7.8.4",
|
|
"@babel/node": "^7.8.4",
|
|
"@babel/preset-env": "^7.8.4",
|
|
"babel-jest": "^25.1.0",
|
|
"babel-plugin-dynamic-import-node": "^2.3.0",
|
|
"jest": "^25.1.0",
|
|
"jest-cli": "^25.1.0",
|
|
"nodemon": "^2.0.2",
|
|
"wait-for-expect": "^3.0.2"
|
|
},
|
|
"jest": {
|
|
"testPathIgnorePatterns": ["dist"]
|
|
}
|
|
}
|