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
/
package.json
70 lines (70 loc) · 1.69 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
{
"name": "luis-apis",
"version": "2.6.2",
"description": "Tooling for connectivity with LUIS APIs",
"main": "./lib/luisAuthoring.js",
"types": "./typings/lib/luisAuthoring.d.ts",
"bin": {
"luis": "./bin/luis.js"
},
"directories": {
"bin": "bin",
"doc": "docs",
"lib": "lib",
"typings": "typings",
"examples": "examples"
},
"files": [
"bin/",
"docs/",
"lib/",
"examples/",
"typings/"
],
"scripts": {
"test": "cd test/ && mocha --opts mocha.opts",
"clean": "erase /Q /s lib\\* && erase /Q /s typings\\*",
"build": "tsc"
},
"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",
"dependencies": {
"@azure/ms-rest-js": "^1.8.13",
"await-delay": "^1.0.0",
"chalk": "2.4.1",
"cli-position": "^1.0.1",
"cli-table3": "^0.5.1",
"fs-extra": "^5.0.0",
"get-stdin": "^6.0.0",
"intercept-stdout": "^0.1.2",
"latest-version": "^4.0.0",
"minimist": "^1.2.0",
"node-fetch": "^2.6.0",
"perf_hooks": "0.0.1",
"readline-sync": "^1.4.9",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"semver": "^5.7.0",
"tslib": "^1.10.0",
"window-size": "^1.1.0"
},
"devDependencies": {
"enum-files": "git+https://github.com/hirowaki/enum-files.git",
"mocha": "^5.2.0",
"rollup": "^0.66.2",
"rollup-plugin-node-resolve": "^3.4.0",
"targz": "^1.0.1",
"typescript": "^3.5.2"
}
}