-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
67 lines (67 loc) · 2 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
{
"name": "botbuilder-teams-messagingextensions",
"version": "1.8.1",
"description": "Microsoft Bot Builder Framework v4 middleware for Microsoft Teams Messaging Extensions",
"main": "lib/index.js",
"scripts": {
"build": "tsc -p .",
"clean": "rm -rf lib",
"lint": "eslint ./src/**/*.{js,ts,tsx}",
"test": "jest --ci --reporters=jest-junit --reporters=default --coverage --coverageDirectory='coverage' --collectCoverageFrom='src/**/*.{ts,tsx,js}'"
},
"keywords": [
"microsoft-teams",
"msteams",
"botbuilder",
"botbuilder-extension",
"botbuilder-middleware"
],
"author": "Wictor Wilén",
"maintainers": [
{
"name": "Wictor Wilén",
"email": "wictor@wictorwilen.se",
"url": "http://www.wictorwilen.se"
}
],
"contributors": [
"White, Thomas <https://github.com/tdwhite0>",
"Bliss, Bill <https://github.com/billbliss>",
"<https://github.com/greyseer256>",
"<https://github.com/kavins14>"
],
"repository": {
"type": "git",
"url": "https://github.com/wictorwilen/botbuilder-teams-messagingextensions.git"
},
"bugs": {
"url": "https://github.com/wictorwilen/botbuilder-teams-messagingextensions/issues"
},
"homepage": "https://github.com/wictorwilen/botbuilder-teams-messagingextensions",
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"botbuilder-core": "^4.14.1",
"eslint": "^7.18.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.0.4",
"jest-auto-stub": "^1.0.8",
"jest-junit": "^13.0.0",
"ts-jest": "^27.0.3",
"typescript": "^4.4.3"
},
"dependencies": {
"debug": "^4.3.2"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/wictorwilen/"
}
}