1 | {
|
2 | "name": "botkit",
|
3 | "version": "4.15.0",
|
4 | "description": "Building Blocks for Building Bots",
|
5 | "main": "lib/index.js",
|
6 | "typings": "./lib/index.d.ts",
|
7 | "files": [
|
8 | "/lib",
|
9 | "/src"
|
10 | ],
|
11 | "scripts": {
|
12 | "build": "tsc",
|
13 | "eslint": "./node_modules/.bin/eslint --fix src/*",
|
14 | "test": "tsc ; nyc mocha tests/*.tests.js",
|
15 | "pack": "npm pack"
|
16 | },
|
17 | "author": "benbrown@gmail.com",
|
18 | "license": "MIT",
|
19 | "keywords": [
|
20 | "botkit",
|
21 | "botbuilder",
|
22 | "botframework",
|
23 | "bots",
|
24 | "chatbots"
|
25 | ],
|
26 | "homepage": "https://github.com/howdyai/botkit/blob/master/packages/botkit#readme",
|
27 | "bugs": {
|
28 | "url": "https://github.com/howdyai/botkit/issues"
|
29 | },
|
30 | "repository": {
|
31 | "type": "git",
|
32 | "url": "https://github.com/howdyai/botkit.git"
|
33 | },
|
34 | "dependencies": {
|
35 | "body-parser": "^1.19.0",
|
36 | "botbuilder": "^4.15.0",
|
37 | "botbuilder-core": "^4.15.0",
|
38 | "botbuilder-dialogs": "^4.15.0",
|
39 | "botframework-connector": "^4.15.0",
|
40 | "debug": "^4.1.0",
|
41 | "express": "^4.17.1",
|
42 | "mustache": "^4.0.1",
|
43 | "path": "^0.12.7",
|
44 | "ware": "^1.3.0"
|
45 | },
|
46 | "devDependencies": {
|
47 | "@types/debug": "^4.1.5",
|
48 | "@types/express": "^4.17.2",
|
49 | "@types/node": "^10.17.5",
|
50 | "eslint": "^8.3.0",
|
51 | "eslint-config-standard": "^16.0.3",
|
52 | "eslint-plugin-import": "^2.25.3",
|
53 | "eslint-plugin-node": "^11.1.0",
|
54 | "eslint-plugin-promise": "^5.1.1",
|
55 | "eslint-plugin-standard": "^4.0.1"
|
56 | }
|
57 | }
|