This repository has been archived by the owner on Jan 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathpackage.json
109 lines (109 loc) · 2.99 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@microsoft/botframework-cli",
"version": "1.0.0",
"description": "One-stop-shop CLI to manage your bot’s resources. BF CLI and AZ CLI together cover your end-to-end bot development workflow needs.",
"author": "Microsoft",
"bin": {
"bf": "./bin/run"
},
"bugs": "https://github.com/microsoft/botframework-cli",
"engines": {
"node": ">=14.0.0"
},
"files": [
"/bin",
"/lib",
"/scripts",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/microsoft/botframework-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "bf",
"plugins": [
"@oclif/plugin-help",
"@microsoft/bf-chatdown",
"@microsoft/bf-cli-config",
"@microsoft/bf-qnamaker",
"@microsoft/bf-luis-cli",
"@microsoft/bf-orchestrator-cli",
"@microsoft/bf-cli-plugins",
"@microsoft/bf-lg-cli",
"@microsoft/bf-dialog"
],
"hooks": {
"init": "./lib/hooks/init/inithook"
}
},
"mocha": {
"extension": [
".test.js",
".test.ts"
],
"recursive": true,
"timeout": 60000,
"require": [
"../../test/hook.js",
"source-map-support/register"
]
},
"repository": "https://github.com/microsoft/botframework-cli/tree/master/packages/cli",
"scripts": {
"postinstall": "node scripts/postinstall.js",
"prepack": "npm run clean && npm run build",
"postpack": "rimraf oclif.manifest.json",
"posttest": "tslint -p test -t stylish",
"build": "tsc -b",
"clean": "rimraf ./.nyc_output ./lib ./package-lock.json ./tsconfig.tsbuildinfo",
"test": "mocha",
"coverage": "nyc npm run test",
"doc": "npm run clean && npm run build && npm run doc:readme && rimraf oclif.manifest.json",
"doc:readme": "oclif-dev manifest && oclif-dev readme",
"version": "oclif-dev manifest"
},
"types": "lib/index.d.ts",
"dependencies": {
"@microsoft/bf-chatdown": "1.0.0",
"@microsoft/bf-cli-config": "1.0.0",
"@microsoft/bf-luis-cli": "1.0.0",
"@microsoft/bf-qnamaker": "1.0.0",
"@microsoft/bf-orchestrator-cli": "1.0.0",
"@microsoft/bf-cli-plugins": "1.0.0",
"@microsoft/bf-lg-cli": "1.0.0",
"@microsoft/bf-dialog": "1.0.0",
"@oclif/command": "~1.8.36",
"@oclif/config": "~1.18.17",
"@oclif/errors": "~1.3.6",
"@oclif/plugin-help": "~6.2.10",
"chalk": "2.4.1",
"cli-ux": "^5.3.0",
"fs-extra": "^7.0.1",
"is-ci": "2.0.0",
"semver": "^7.6.3",
"tslib": "^2.0.3"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.10",
"@oclif/test": "^1.2.5",
"@oclif/tslint": "^3.1.1",
"@types/chai": "^4.1.7",
"@types/fs-extra": "^5.0.5",
"@types/mocha": "^10.0.6",
"@types/nock": "^11.1.0",
"@types/node": "^11.3.7",
"chai": "^4.4.1",
"globby": "^11.0.4",
"mocha": "^10.4.0",
"nock": "^13.5.5",
"nyc": "^15.1.0",
"rimraf": "^2.6.3",
"ts-node": "^10.8.1",
"tslint": "^5.18.0",
"typescript": "^4.9.5"
}
}