-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 2.13 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
{
"name": "express-msteams-host",
"version": "1.9.1",
"description": "Express utility for Microsoft Teams solutions",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p .",
"clean": "rm -rf lib",
"test": "jest --ci --reporters=jest-junit --reporters=default --coverage --coverageDirectory='coverage' --collectCoverageFrom='src/**/*.{ts,tsx,js}'",
"lint": "eslint ./src/**/*.{js,ts,tsx}"
},
"keywords": [
"express",
"microsoft-teams",
"msteams",
"typescript"
],
"author": "Wictor Wilén ([email protected])",
"maintainers": [
{
"name": "Wictor Wilén",
"email": "[email protected]",
"url": "http://www.wictorwilen.se"
}
],
"repository": {
"type": "git",
"url": "https://github.com/wictorwilen/express-msteams-host.git"
},
"bugs": {
"url": "https://github.com/wictorwilen/express-msteams-host/issues"
},
"homepage": "https://github.com/wictorwilen/express-msteams-host",
"contributors": [
"Mommers, Laurence <https://github.com/LaurenceMommers>",
"Plets, Felipe <https://github.com/felipeplets>",
"Franco, Mark <https://github.com/MTCMarkFranco>"
],
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/node": "^14.11.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.2.3",
"jest-auto-stub": "^1.0.8",
"jest-junit": "^13.0.0",
"mocha": "^9.1.2",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"typescript": "4.4.3"
},
"dependencies": {
"botbuilder": "^4.14.1",
"botbuilder-core": "^4.14.1",
"botbuilder-teams-messagingextensions": "^1.8.0",
"debug": "^4.3.2",
"express": "^4.16.4",
"reflect-metadata": "^0.1.13"
}
}