-
Notifications
You must be signed in to change notification settings - Fork 253
/
package.json
73 lines (73 loc) · 1.77 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "botkit-middleware-watson",
"version": "2.0.1",
"description": "A middleware for using Watson Assistant in a Botkit-powered bot.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "node ./node_modules/typescript/bin/tsc --p ./tsconfig.json",
"pretest": "npm run build",
"test": "jest test --coverage --forceExit",
"lint": "npm run build && eslint '*/**/*.ts' --quiet --fix",
"version": "npm run build && git add -A lib",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/botkit-middleware.git"
},
"keywords": [
"bot",
"botkit",
"chatbot",
"conversation",
"assistant",
"ibm",
"watson"
],
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/nock": "^11.1.0",
"@types/sinon": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"botbuilder-adapter-web": "^1.0.9",
"clone": "^2.1.2",
"codecov": "^3.8.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.1",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"nock": "^13.0.7",
"prettier": "^2.2.1",
"sinon": "^9.2.4",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"botkit": "^4.10.0",
"debug": "^4.3.1",
"deepmerge": "^4.2.2",
"ibm-watson": "^6.0.2"
},
"lint-staged": {
"src/**/*.ts": [
"npm run build",
"npm run lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}