generator-msbf-watson-coco
Version:
A yeoman generator for creating bots built with Bot Framework v4, for Watson and CoCo
38 lines (37 loc) • 1.14 kB
JavaScript
{
"name": "<%= botname %>",
"version": "1.0.0",
"description": "<%= botDescription %>",
"author": "Generated using Microsoft Bot Builder Yeoman generator v<%= version %>",
"license": "MIT",
"main": "<%= npmMain %>",
"scripts": {
"start": "node ./index.js",
"watch": "nodemon ./index.js",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"@conversationalcomponents/sdk": "^0.1.11",
"botbuilder": "~4.7.0",
"dotenv": "^8.2.0",
"ibm-watson": "^5.4.0",
"replace": "~1.1.1",
"restify": "~8.4.0",
"ws": "^7.2.1",
"xhr2": "^0.2.0"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "~1.19.4"
}
}