forked from oclif/plugin-plugins
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@oclif/plugin-plugins",
"description": "plugins plugin for oclif",
"version": "1.8.0",
"author": "Jeff Dickey @jdxcode",
"bugs": "https://github.com/oclif/plugin-plugins/issues",
"dependencies": {
"@oclif/color": "^0.x",
"@oclif/command": "^1.5.12",
"chalk": "^2.4.2",
"cli-ux": "^5.2.1",
"debug": "^4.1.0",
"fs-extra": "^7.0.1",
"http-call": "^5.2.2",
"load-json-file": "^5.2.0",
"npm-run-path": "^3.0.0",
"semver": "^5.6.0",
"tslib": "^1.9.3",
"yarn": "^1.21.1"
},
"devDependencies": {
"@oclif/config": "^1.12.11",
"@oclif/dev-cli": "^1.21.3",
"@oclif/errors": "^1.2.2",
"@oclif/plugin-help": "^2.1.4",
"@oclif/test": "^1.2.4",
"@types/chai": "^4.1.7",
"@types/fs-extra": "^5.0.5",
"@types/mocha": "^5.2.6",
"@types/node": "^8.10.59",
"@types/semver": "^5.5.0",
"@types/supports-color": "^5.3.0",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"fancy-test": "^1.4.1",
"globby": "^9.1.0",
"mocha": "^6.0.2",
"nock": "^10.0.0",
"ts-node": "^8.0.3",
"typescript": "3.8.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"oclif.manifest.json",
"/lib"
],
"homepage": "https://github.com/oclif/plugin-plugins",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"scope": "heroku-cli",
"hooks": {
"update": "./lib/hooks/update.js"
},
"devPlugins": [
"@oclif/plugin-help"
],
"aliases": {
"aliasme": "oclif-debug"
},
"bin": "mycli"
},
"repository": "oclif/plugin-plugins",
"scripts": {
"build": "rm -rf lib && tsc",
"clean": "rm -f oclif.manifest.json",
"lint": "eslint . --ext .ts --config .eslintrc",
"pretest": "tsc -p test --noEmit",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"posttest": "yarn lint",
"prepublishOnly": "yarn run build && oclif-dev manifest && oclif-dev readme",
"postpublish": "yarn run clean",
"preversion": "yarn run clean",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}