1 | {
|
2 | "name": "@oclif/plugin-legacy",
|
3 | "description": "converts older style plugins to be compatible with oclif",
|
4 | "version": "2.0.18",
|
5 | "author": "Salesforce",
|
6 | "bugs": "https://github.com/oclif/plugin-legacy/issues",
|
7 | "dependencies": {
|
8 | "@oclif/color": "^1.0.13",
|
9 | "@oclif/core": "^3.27.0",
|
10 | "ansi-escapes": "^4.3.2",
|
11 | "debug": "^4.3.7",
|
12 | "semver": "^7.6.3"
|
13 | },
|
14 | "devDependencies": {
|
15 | "@commitlint/config-conventional": "^17.8.1",
|
16 | "@heroku-cli/plugin-apps": "^7.59.1",
|
17 | "@heroku-cli/plugin-status": "5.0.10",
|
18 | "@oclif/plugin-help": "^6.2.10",
|
19 | "@oclif/prettier-config": "^0.2.1",
|
20 | "@oclif/test": "^4",
|
21 | "@types/chai": "^4.3.16",
|
22 | "@types/mocha": "^10.0.7",
|
23 | "@types/nock": "^11.1.0",
|
24 | "@types/node": "^14.0.14",
|
25 | "@types/semver": "^7.5.8",
|
26 | "@types/supports-color": "^7.2.0",
|
27 | "chai": "^4.5.0",
|
28 | "commitlint": "^17.8.1",
|
29 | "eslint": "^8.57.0",
|
30 | "eslint-config-oclif": "^5.2.1",
|
31 | "eslint-config-oclif-typescript": "^3.1.10",
|
32 | "eslint-config-prettier": "^9.1.0",
|
33 | "globby": "^11.1.0",
|
34 | "heroku-apps": "^2.4.22",
|
35 | "husky": "^9.1.5",
|
36 | "lint-staged": "^15.2.10",
|
37 | "mocha": "^10.7.3",
|
38 | "nock": "^13.5.5",
|
39 | "nyc": "^15.1.0",
|
40 | "oclif": "^4.14.29",
|
41 | "prettier": "^3.3.3",
|
42 | "ts-node": "^10.9.2",
|
43 | "typescript": "^5.5.4"
|
44 | },
|
45 | "peerDependencies": {
|
46 | "@heroku-cli/command": "*"
|
47 | },
|
48 | "engines": {
|
49 | "node": ">=8.0.0"
|
50 | },
|
51 | "exports": "./lib/index.js",
|
52 | "files": [
|
53 | "/oclif.manifest.json",
|
54 | "/lib",
|
55 | "/oclif.lock"
|
56 | ],
|
57 | "homepage": "https://github.com/oclif/plugin-legacy",
|
58 | "keywords": [
|
59 | "oclif-plugin"
|
60 | ],
|
61 | "license": "MIT",
|
62 | "oclif": {
|
63 | "commands": "./lib/commands",
|
64 | "hooks": {
|
65 | "init": "./lib/hooks/init.js"
|
66 | },
|
67 | "devPlugins": [
|
68 | "@oclif/plugin-help",
|
69 | "@heroku-cli/plugin-apps",
|
70 | "@heroku-cli/plugin-status"
|
71 | ],
|
72 | "bin": "oclif-example"
|
73 | },
|
74 | "repository": "oclif/plugin-legacy",
|
75 | "scripts": {
|
76 | "build": "rm -rf lib && tsc",
|
77 | "lint": "eslint . --ext .ts",
|
78 | "postpack": "rm -f oclif.manifest.json oclif.lock",
|
79 | "posttest": "yarn lint",
|
80 | "prepack": "rm -rf lib && tsc && oclif lock && oclif manifest && oclif readme",
|
81 | "prepare": "husky install",
|
82 | "pretest": "yarn build && tsc -p test",
|
83 | "test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
84 | "version": "oclif readme && git add README.md"
|
85 | },
|
86 | "types": "lib/index.d.ts"
|
87 | }
|