UNPKG

2.29 kBJSONView Raw
1{
2 "name": "@oclif/plugin-plugins",
3 "description": "plugins plugin for oclif",
4 "version": "2.1.0",
5 "author": "Salesforce",
6 "bugs": "https://github.com/oclif/plugin-plugins/issues",
7 "dependencies": {
8 "@oclif/color": "^1.0.1",
9 "@oclif/core": "^1.2.0",
10 "chalk": "^4.1.2",
11 "debug": "^4.1.0",
12 "fs-extra": "^9.0",
13 "http-call": "^5.2.2",
14 "load-json-file": "^5.3.0",
15 "npm-run-path": "^4.0.1",
16 "semver": "^7.3.2",
17 "tslib": "^2.0.0",
18 "yarn": "^1.22.17"
19 },
20 "devDependencies": {
21 "@commitlint/config-conventional": "^12.1.4",
22 "@oclif/plugin-help": "^5.1.10",
23 "@oclif/test": "^2.0.3",
24 "@types/chai": "^4.3.0",
25 "@types/fs-extra": "^9.0",
26 "@types/mocha": "^8.2.3",
27 "@types/node": "^14.18.3",
28 "@types/semver": "^7.3.9",
29 "@types/supports-color": "^7.2.0",
30 "chai": "^4.2.0",
31 "commitlint": "^12.1.4",
32 "eslint": "^7.31.0",
33 "eslint-config-oclif": "^4",
34 "eslint-config-oclif-typescript": "^1.0.2",
35 "fancy-test": "^2.0.0",
36 "globby": "^11.0.1",
37 "husky": "6",
38 "mocha": "^9.1.3",
39 "nock": "^13.2.1",
40 "oclif": "^2.3.0",
41 "ts-node": "^10.4.0",
42 "typescript": "4.5.4"
43 },
44 "engines": {
45 "node": ">=12.0.0"
46 },
47 "files": [
48 "oclif.manifest.json",
49 "/lib"
50 ],
51 "homepage": "https://github.com/oclif/plugin-plugins",
52 "keywords": [
53 "oclif-plugin"
54 ],
55 "license": "MIT",
56 "main": "lib/index.js",
57 "oclif": {
58 "commands": "./lib/commands",
59 "scope": "heroku-cli",
60 "hooks": {
61 "update": "./lib/hooks/update.js"
62 },
63 "devPlugins": [
64 "@oclif/plugin-help"
65 ],
66 "aliases": {
67 "aliasme": "oclif-debug"
68 },
69 "bin": "mycli"
70 },
71 "repository": "oclif/plugin-plugins",
72 "scripts": {
73 "build": "rm -rf lib && tsc",
74 "commitlint": "commitlint",
75 "clean": "rm -f oclif.manifest.json",
76 "lint": "eslint . --ext .ts --config .eslintrc",
77 "pretest": "yarn build && tsc -p test --noEmit",
78 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
79 "posttest": "yarn lint",
80 "prepublishOnly": "yarn run build && oclif manifest . && oclif readme",
81 "postpublish": "yarn run clean",
82 "preversion": "yarn run clean",
83 "version": "oclif readme && git add README.md"
84 },
85 "types": "lib/index.d.ts"
86}