UNPKG

2.42 kBJSONView Raw
1{
2 "name": "@oclif/plugin-plugins",
3 "description": "plugins plugin for oclif",
4 "version": "1.10.1",
5 "author": "Jeff Dickey @jdxcode",
6 "bugs": "https://github.com/oclif/plugin-plugins/issues",
7 "dependencies": {
8 "@oclif/color": "^0.x",
9 "@oclif/command": "^1.5.12",
10 "@oclif/errors": "^1.2.2",
11 "chalk": "^4.1.0",
12 "cli-ux": "^5.2.1",
13 "debug": "^4.1.0",
14 "fs-extra": "^9.0",
15 "http-call": "^5.2.2",
16 "load-json-file": "^5.2.0",
17 "npm-run-path": "^4.0.1",
18 "semver": "^7.3.2",
19 "tslib": "^2.0.0",
20 "yarn": "^1.21.1"
21 },
22 "devDependencies": {
23 "@commitlint/config-conventional": "^12.1.4",
24 "@oclif/config": "^1.12.11",
25 "@oclif/dev-cli": "^1.21.3",
26 "@oclif/plugin-help": "^3.1.0",
27 "@oclif/test": "^1.2.4",
28 "@types/chai": "^4.1.7",
29 "@types/fs-extra": "^9.0",
30 "@types/mocha": "^8.0.0",
31 "@types/node": "^14.0.26",
32 "@types/semver": "^7.3.1",
33 "@types/supports-color": "^7.2.0",
34 "chai": "^4.2.0",
35 "commitlint": "^12.1.4",
36 "eslint": "^7.3.1",
37 "eslint-config-oclif": "^3.1.0",
38 "eslint-config-oclif-typescript": "^0.2.0",
39 "fancy-test": "^1.4.1",
40 "globby": "^11.0.1",
41 "husky": "6",
42 "mocha": "^8.2.1",
43 "nock": "^13.0.3",
44 "ts-node": "^9.0.0",
45 "typescript": "3.8.3"
46 },
47 "engines": {
48 "node": ">=8.0.0"
49 },
50 "files": [
51 "oclif.manifest.json",
52 "/lib"
53 ],
54 "homepage": "https://github.com/oclif/plugin-plugins",
55 "keywords": [
56 "oclif-plugin"
57 ],
58 "license": "MIT",
59 "main": "lib/index.js",
60 "oclif": {
61 "commands": "./lib/commands",
62 "scope": "heroku-cli",
63 "hooks": {
64 "update": "./lib/hooks/update.js"
65 },
66 "devPlugins": [
67 "@oclif/plugin-help"
68 ],
69 "aliases": {
70 "aliasme": "oclif-debug"
71 },
72 "bin": "mycli"
73 },
74 "repository": "oclif/plugin-plugins",
75 "scripts": {
76 "build": "rm -rf lib && tsc",
77 "commitlint": "commitlint",
78 "clean": "rm -f oclif.manifest.json",
79 "lint": "eslint . --ext .ts --config .eslintrc",
80 "pretest": "yarn build --noEmit && tsc -p test --noEmit",
81 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
82 "posttest": "yarn lint",
83 "prepublishOnly": "yarn run build && oclif-dev manifest && oclif-dev readme",
84 "postpublish": "yarn run clean",
85 "preversion": "yarn run clean",
86 "version": "oclif-dev readme && git add README.md"
87 },
88 "types": "lib/index.d.ts"
89}