forked from microsoft/botframework-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.61 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.61 KB
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
{
"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",
"dependencies": {
"@microsoft/bf-chatdown": "1.0.0",
"@microsoft/bf-cli-config": "1.0.0",
"@microsoft/bf-dialog": "1.0.0",
"@microsoft/bf-lu": "1.0.0",
"@microsoft/bf-qnamaker": "1.0.0",
"@oclif/command": "~1.5.13",
"@oclif/config": "~1.13.0",
"@oclif/plugin-help": "~2.1.6",
"chalk": "2.4.1",
"cli-ux": "^5.3.0",
"fs-extra": "^7.0.1",
"latest-version": "^4.0.0",
"semver": "^5.5.1",
"tslib": "^1.9.3"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.0",
"@oclif/test": "^1.2.4",
"@oclif/tslint": "^3.1.1",
"@types/chai": "^4.1.7",
"@types/fs-extra": "^5.0.5",
"@types/mocha": "^5.2.6",
"@types/node": "^10.14.6",
"chai": "^4.2.0",
"globby": "^8.0.2",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"rimraf": "^2.6.3",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"engines": {
"node": ">=8.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": {
"commands": "./lib/commands",
"bin": "bf",
"plugins": [
"@oclif/plugin-help",
"@microsoft/bf-chatdown",
"@microsoft/bf-cli-config",
"@microsoft/bf-dialog",
"@microsoft/bf-qnamaker",
"@microsoft/bf-lu"
],
"hooks": {
"init": "./lib/hooks/init/inithook"
}
},
"repository": "https://github.com/microsoft/botframework-cli/tree/master/packages/cli",
"scripts": {
"postinstall": "node scripts/postinstall.js",
"prepack": "npm run clean && npm run build && npm run doc:readme",
"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",
"report:coverage":"npm run coverage && nyc report --reporter=text-lcov | coveralls",
"doc": "npm run build && npm run doc:readme && rimraf oclif.manifest.json",
"doc:readme":"oclif-dev manifest && oclif-dev readme",
"version": "npm run doc:readme && git add README.md"
},
"types": "lib/index.d.ts"
}