UNPKG

1.42 kBJSONView Raw
1{
2 "name": "@oclif/plugin-help",
3 "description": "Standard help for oclif.",
4 "version": "5.1.12",
5 "author": "Salesforce",
6 "bugs": "https://github.com/oclif/plugin-help/issues",
7 "dependencies": {
8 "@oclif/core": "^1.3.6"
9 },
10 "devDependencies": {
11 "@oclif/plugin-plugins": "^2.1.0",
12 "@oclif/test": "^2.1.0",
13 "@types/chai": "^4.3.0",
14 "@types/mocha": "^9.1.0",
15 "chai": "^4.3.6",
16 "eslint": "^7.3.1",
17 "eslint-config-oclif": "^4.0.0",
18 "eslint-config-oclif-typescript": "^1.0.2",
19 "mocha": "^9.2.1",
20 "oclif": "^2.5.0",
21 "shx": "^0.3.4",
22 "ts-node": "^9.1.1",
23 "typescript": "^4.6.2"
24 },
25 "engines": {
26 "node": ">=12.0.0"
27 },
28 "files": [
29 "oclif.manifest.json",
30 "/lib"
31 ],
32 "homepage": "https://github.com/oclif/plugin-help",
33 "keywords": [
34 "oclif-plugin"
35 ],
36 "license": "MIT",
37 "main": "./lib/index.js",
38 "oclif": {
39 "commands": "./lib/commands",
40 "bin": "oclif",
41 "devPlugins": [
42 "@oclif/plugin-plugins"
43 ]
44 },
45 "repository": "oclif/plugin-help",
46 "scripts": {
47 "build": "shx rm -rf lib && tsc",
48 "lint": "eslint . --ext .ts --config .eslintrc",
49 "pretest": "yarn build && tsc --noEmit",
50 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
51 "posttest": "yarn lint",
52 "prepack": "yarn run build && oclif manifest .",
53 "postpack": "shx rm oclif.manifest.json"
54 },
55 "types": "./lib/index.d.ts"
56}