UNPKG

1.95 kBJSONView Raw
1{
2 "name": "@oclif/plugin-help",
3 "description": "standard help for oclif",
4 "version": "3.0.1",
5 "author": "Jeff Dickey @jdxcode",
6 "bugs": "https://github.com/oclif/plugin-help/issues",
7 "dependencies": {
8 "@oclif/command": "^1.5.20",
9 "@oclif/config": "^1.15.1",
10 "chalk": "^2.4.1",
11 "indent-string": "^4.0.0",
12 "lodash.template": "^4.4.0",
13 "string-width": "^3.0.0",
14 "strip-ansi": "^5.0.0",
15 "widest-line": "^2.0.1",
16 "wrap-ansi": "^4.0.0"
17 },
18 "devDependencies": {
19 "@oclif/dev-cli": "^1.21.0",
20 "@oclif/errors": "^1.2.2",
21 "@oclif/plugin-legacy": "^1.1.3",
22 "@oclif/plugin-plugins": "^1.7.6",
23 "@oclif/test": "^1.2.2",
24 "@types/chai": "^4.1.7",
25 "@types/lodash.template": "^4.4.4",
26 "@types/mocha": "^5.2.5",
27 "@types/node": "^8.10.59",
28 "@types/strip-ansi": "^3.0.0",
29 "@types/wrap-ansi": "^3.0.0",
30 "chai": "^4.2.0",
31 "eslint": "^6.6.0",
32 "eslint-config-oclif": "^3.1.0",
33 "eslint-config-oclif-typescript": "^0.1.0",
34 "globby": "^9.0.0",
35 "mocha": "^5.2.0",
36 "nock": "^12.0.3",
37 "sinon": "^9.0.1",
38 "ts-node": "^8.8.2",
39 "typescript": "^3.8.3"
40 },
41 "engines": {
42 "node": ">=8.0.0"
43 },
44 "files": [
45 "oclif.manifest.json",
46 "/lib"
47 ],
48 "homepage": "https://github.com/oclif/plugin-help",
49 "keywords": [
50 "oclif-plugin"
51 ],
52 "license": "MIT",
53 "main": "./lib/index.js",
54 "oclif": {
55 "commands": "./lib/commands",
56 "bin": "oclif",
57 "devPlugins": [
58 "@oclif/plugin-plugins",
59 "@oclif/plugin-legacy"
60 ]
61 },
62 "repository": "oclif/plugin-help",
63 "scripts": {
64 "build": "rm -rf lib && tsc",
65 "lint": "eslint . --ext .ts --config .eslintrc",
66 "pretest": "tsc -p test --noEmit",
67 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
68 "posttest": "yarn lint",
69 "prepack": "yarn run build && oclif-dev manifest",
70 "postpack": "rm oclif.manifest.json"
71 },
72 "types": "./lib/index.d.ts"
73}