forked from oclif/plugin-help
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.02 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
{
"name": "alto-plugin-help",
"description": "help for alto-clif",
"version": "0.9.3",
"oclif-version": "3.0.1",
"author": "柏大衛",
"oclif-author": "Jeff Dickey @jdxcode",
"bugs": "https://github.com/bodawei/alto-plugin-help/issues",
"dependencies": {
"alto-command": "^0",
"@oclif/config": "^1.15.1",
"chalk": "^2.4.1",
"indent-string": "^4.0.0",
"lodash.template": "^4.4.0",
"string-width": "^3.0.0",
"strip-ansi": "^5.0.0",
"widest-line": "^2.0.1",
"wrap-ansi": "^4.0.0"
},
"devDependencies": {
"alto-plugin-help": "^0",
"@oclif/dev-cli": "^1.21.0",
"@oclif/errors": "^1.2.2",
"@oclif/plugin-legacy": "^1.1.3",
"@oclif/plugin-plugins": "^1.7.6",
"@oclif/test": "^1.2.2",
"@types/chai": "^4.1.7",
"@types/lodash.template": "^4.4.4",
"@types/mocha": "^5.2.5",
"@types/node": "^8.10.59",
"@types/strip-ansi": "^3.0.0",
"@types/wrap-ansi": "^3.0.0",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"globby": "^9.0.0",
"mocha": "^5.2.0",
"nock": "^12.0.3",
"sinon": "^9.0.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"oclif.manifest.json",
"/lib"
],
"homepage": "https://github.com/bodawei/alto-plugin-help",
"keywords": [
"alto-plugin",
"oclif-plugin"
],
"license": "MIT",
"main": "./lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "oclif",
"devPlugins": [
"@oclif/plugin-plugins",
"@oclif/plugin-legacy"
]
},
"repository": "bodawei/alto-plugin-help",
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "eslint . --ext .ts --config .eslintrc",
"pretest": "tsc -p test --noEmit",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"posttest": "yarn lint",
"prepack": "yarn run build && oclif-dev manifest",
"postpack": "rm oclif.manifest.json"
},
"types": "./lib/index.d.ts"
}