-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "botbuilder-storage-mongodb",
"version": "1.0.17",
"license": "MIT",
"contributors": [
{
"name": "Hattan Shobokshi",
"url": "https://github.com/hattan"
},
{
"name": "Daniel Egan",
"url": "https://github.com/DanielEgan"
},
{
"name": "Nuri Halperin",
"url": "https://github.com/nurih"
}
],
"homepage": "https://github.com/botbuilder-contrib/botbuilder-storage-mongodb#readme",
"repository": {
"type": "git",
"url": "https://github.com/botbuilder-contrib/botbuilder-storage-mongodb.git"
},
"dependencies": {
"@types/mongodb": "^4.0.7",
"botbuilder": "^4.19.3",
"mongodb": "^5.1.0",
"request": "^2.88.2"
},
"scripts": {
"test:unit": "npm run build && mocha test/unit",
"test:integration": "npm run build && mocha test/integration",
"build": "node node_modules/typescript/bin/tsc"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.8",
"mocha": "^10.2",
"nyc": "^15.1.0",
"sinon": "^15.0.2",
"source-map-support": "^0.5.21",
"typescript": "^5.0.2"
}
}