UNPKG

2 kBJSONView Raw
1{
2 "name": "@oclif/plugin-help",
3 "description": "standard help for oclif",
4 "version": "1.0.4",
5 "author": "Jeff Dickey @jdxcode",
6 "bugs": "https://github.com/oclif/plugin-help/issues",
7 "dependencies": {
8 "@oclif/command": "^1.3.0",
9 "chalk": "^2.3.1",
10 "indent-string": "^3.2.0",
11 "lodash.template": "^4.4.0",
12 "string-width": "^2.1.1",
13 "widest-line": "^2.0.0",
14 "wrap-ansi": "^3.0.1"
15 },
16 "devDependencies": {
17 "@oclif/config": "^1.3.55",
18 "@oclif/dev-cli": "^1.2.12",
19 "@oclif/errors": "^1.0.2",
20 "@oclif/plugin-legacy": "^1.0.2",
21 "@oclif/plugin-plugins": "^1.0.0",
22 "@oclif/test": "^1.0.1",
23 "@oclif/tslint": "^1.0.2",
24 "@types/chai": "^4.1.2",
25 "@types/indent-string": "^3.0.0",
26 "@types/lodash.template": "^4.4.3",
27 "@types/mocha": "^2.2.48",
28 "@types/node": "^9.4.6",
29 "@types/strip-ansi": "^3.0.0",
30 "@types/wrap-ansi": "^2.0.14",
31 "chai": "^4.1.2",
32 "concurrently": "^3.5.1",
33 "globby": "^8.0.0",
34 "mocha": "^5.0.1",
35 "strip-ansi": "^4.0.0",
36 "ts-node": "^4.1.0",
37 "tslint": "^5.9.1",
38 "typescript": "^2.7.2"
39 },
40 "engines": {
41 "node": ">=8.0.0"
42 },
43 "files": [
44 ".oclif.manifest.json",
45 "/lib"
46 ],
47 "homepage": "https://github.com/oclif/plugin-help",
48 "keywords": [
49 "oclif-plugin"
50 ],
51 "license": "MIT",
52 "main": "./lib/index.js",
53 "oclif": {
54 "commands": "./lib/commands",
55 "bin": "oclif",
56 "topics": {
57 "fob": {
58 "description": "foo"
59 }
60 },
61 "devPlugins": [
62 "@oclif/plugin-plugins",
63 "@oclif/plugin-legacy"
64 ]
65 },
66 "repository": "oclif/plugin-help",
67 "scripts": {
68 "build": "rm -rf lib && tsc",
69 "lint": "concurrently -p command \"tsc -p test --noEmit\" \"tslint -p test\"",
70 "postpublish": "rm .oclif.manifest.json",
71 "posttest": "yarn run lint",
72 "prepublishOnly": "yarn run build && oclif-dev manifest",
73 "test": "mocha --forbid-only \"test/**/*.test.ts\""
74 },
75 "types": "./lib/index.d.ts"
76}