UNPKG

1.75 kBJSONView Raw
1{
2 "name": "@oclif/plugin-commands",
3 "description": "plugin to show the list of all the commands",
4 "version": "2.0.1",
5 "author": "Jeff Dickey @jdxcode",
6 "bugs": "https://github.com/oclif/plugin-commands/issues",
7 "dependencies": {
8 "@oclif/core": "^1.0.8",
9 "cli-ux": "^6.0.5",
10 "lodash": "^4.17.11"
11 },
12 "devDependencies": {
13 "@oclif/plugin-help": "^5.1.7",
14 "@oclif/test": "^2.0.2",
15 "@types/chai": "^4.1.6",
16 "@types/lodash": "^4.14.117",
17 "@types/mocha": "^8.0.0",
18 "@types/nock": "^11.1.0",
19 "@types/node": "^14.0.14",
20 "chai": "^4.2.0",
21 "eslint": "^7.3.1",
22 "eslint-config-oclif": "^3.1.0",
23 "eslint-config-oclif-typescript": "^0.2.0",
24 "globby": "^11",
25 "mocha": "^8",
26 "nock": "^13.0.0",
27 "nyc": "^15.1.0",
28 "oclif": "2.0.0-main.14",
29 "shx": "^0.3.3",
30 "ts-node": "^9.1.1",
31 "tslib": "^2.0.0",
32 "typescript": "4.4.3"
33 },
34 "engines": {
35 "node": ">=12.0.0"
36 },
37 "files": [
38 "/lib",
39 "/oclif.manifest.json",
40 "/yarn.lock"
41 ],
42 "homepage": "https://github.com/oclif/plugin-commands",
43 "keywords": [
44 "oclif-plugin"
45 ],
46 "license": "MIT",
47 "oclif": {
48 "commands": "./lib/commands",
49 "bin": "oclif-example",
50 "devPlugins": [
51 "@oclif/plugin-help"
52 ]
53 },
54 "repository": "oclif/plugin-commands",
55 "scripts": {
56 "lint": "eslint . --ext .ts --config .eslintrc",
57 "pretest": "yarn build && tsc -p test --noEmit",
58 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
59 "posttest": "yarn lint",
60 "prepack": "shx rm -rf lib && tsc && oclif manifest . && oclif readme",
61 "postpack": "shx rm -f oclif.manifest.json",
62 "version": "oclif readme && git add README.md",
63 "build": "shx rm -rf lib && tsc"
64 }
65}