-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
89 lines (89 loc) · 2.36 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
86
87
88
89
{
"name": "@oclif/plugin-plugins",
"description": "plugins plugin for oclif",
"version": "1.10.11",
"author": "Jeff Dickey @jdxcode",
"bugs": "https://github.com/oclif/plugin-plugins/issues",
"dependencies": {
"@oclif/color": "^0.1.2",
"@oclif/command": "^1.8.15",
"@oclif/errors": "^1.3.5",
"chalk": "^4.1.2",
"cli-ux": "^5.6.7",
"debug": "^4.3.3",
"fs-extra": "^9.0",
"http-call": "^5.3.0",
"load-json-file": "^5.3.0",
"npm-run-path": "^4.0.1",
"semver": "^7.3.2",
"tslib": "^2.0.0",
"yarn": "^1.21.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^12.1.4",
"@oclif/config": "^1.18.2",
"@oclif/dev-cli": "^1.26.10",
"@oclif/plugin-help": "3.2.18",
"@oclif/test": "^1.2.8",
"@types/chai": "^4.1.7",
"@types/fs-extra": "^9.0",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.26",
"@types/semver": "^7.3.1",
"@types/supports-color": "^7.2.0",
"chai": "^4.2.0",
"commitlint": "^12.1.4",
"eslint": "^7.3.1",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.2.0",
"fancy-test": "^1.4.1",
"globby": "^11.0.1",
"husky": "6",
"mocha": "^8.2.1",
"nock": "^13.0.3",
"ts-node": "^9.0.0",
"typescript": "3.8.3"
},
"engines": {
"node": ">=12.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",
"commitlint": "commitlint",
"clean": "rm -f oclif.manifest.json",
"lint": "eslint . --ext .ts --config .eslintrc",
"pretest": "yarn build --noEmit && 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"
}