This repository has been archived by the owner on Jun 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 262
/
Copy pathpackage.json
71 lines (71 loc) · 1.81 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
{
"name": "msbot",
"version": "4.3.7",
"description": "MSBot command line tool for manipulating Microsoft Bot Framework .bot files",
"main": "bin/BotConfig.js",
"scripts": {
"build": "tsc",
"test": "cd test/ && mocha --opts mocha.opts",
"clean": "erase /Q /s .\\bin && erase /Q /s .\\typings",
"set-version": "npm version --allow-same-version ${Version}"
},
"bin": {
"msbot": "bin/msbot.js"
},
"types": "bin/index.d.ts",
"directories": {
"bin": "bin",
"doc": "docs",
"typings": "typings"
},
"files": [
"bin/",
"docs/",
"typings/"
],
"engines": {
"node": ">=8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/botbuilder-tools.git"
},
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/botbuilder-tools/issues"
},
"homepage": "https://github.com/Microsoft/botbuilder-tools#readme",
"devDependencies": {
"@types/fs-extra": "^5.0.2",
"@types/get-stdin": "^5.0.1",
"@types/node": "^10.9.4",
"@types/opn": "^5.1.0",
"@types/readline-sync": "^1.4.3",
"@types/semver": "^5.5.0",
"@types/uuid": "^3.4.3",
"@types/valid-url": "^1.0.2",
"enum-files": "git+https://github.com/hirowaki/enum-files.git",
"mocha": "^5.2.0",
"targz": "^1.0.1"
},
"dependencies": {
"botframework-config": "^4.2.1",
"chalk": "2.4.1",
"cli-table3": "^0.5.1",
"command-exists": "^1.2.8",
"commander": "^2.15.1",
"fs-extra": "^5.0.0",
"get-stdin": "^6.0.0",
"intercept-stdout": "^0.1.2",
"latest-version": "^4.0.0",
"linq-collections": "^1.0.254",
"opn": "^5.3.0",
"readline-sync": "^1.4.9",
"semver": "^5.5.1",
"strip-bom": "^3.0.0",
"uuid": "^3.2.1",
"valid-url": "^1.0.9",
"validator": "^9.4.1"
}
}