-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "botbuilder-typetalk",
"version": "0.4.3",
"description": "Typetalk bot connector for Microsoft BotBuilder.",
"author": "vvatanabe",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/nulab/botbuilder-typetalk.git"
},
"scripts": {
"test": "tsc && mocha --exit test/test-index.js",
"test-cov": "tsc && nyc mocha --exit test/test-index.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"build": "tsc --removeComments",
"build-tsd": "tsc -d"
},
"dependencies": {
"bluebird": "^3.3.5",
"botbuilder": "^1.0.1",
"node-fetch": "^1.5.1",
"ws": "^3.3.1"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.21",
"coveralls": "^3.0.9",
"dotenv": "^2.0.0",
"espower-typescript": "^5.0.1",
"mocha": "^6.2.2",
"ncp": "^2.0.0",
"nock": "^11.7.0",
"nyc": "^15.0.0",
"power-assert": "^1.4.1",
"typescript": "^1.8.10",
"uglify-js": "^2.6.2"
},
"keywords": [
"bot",
"typetalk",
"chat",
"microsoft",
"nulab"
]
}