forked from oclif/oclif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 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
86
{
"name": "alto-clif",
"description": "Create an alto-clif CLI (fork of @oclif/oclif)",
"version": "0.9.7",
"author": "柏大衛",
"oclif-version": "1.16.1",
"oclif-author": "Jeff Dickey @jdxcode",
"bin": "./bin/run",
"bugs": "https://github.com/bodawei/alto-clif/issues",
"dependencies": {
"alto-command": "^0.9.9",
"@oclif/config": "^1.12.6",
"@oclif/errors": "^1.2.2",
"@oclif/fixpack": "^2.3.0",
"alto-plugin-help": "^0",
"@oclif/plugin-help": "^2",
"@oclif/plugin-not-found": "^1.2.2",
"@oclif/plugin-warn-if-update-available": "^1.5.4",
"debug": "^4.1.1",
"lodash": "^4.17.11",
"nps-utils": "^1.7.0",
"sort-pjson": "^1.0.3",
"tslib": "^1.9.3",
"yeoman-environment": "^2.3.4",
"yeoman-generator": "^3.2.0",
"yosay": "^2.0.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1.21.0",
"@types/lodash": "^4.14.121",
"@types/read-pkg": "^3.0.0",
"@types/shelljs": "^0.8.3",
"@types/yeoman-generator": "^3.1.4",
"@types/yosay": "^0.0.29",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"execa": "^1.0.0",
"fancy-test": "^1.4.3",
"fs-extra": "^7.0.1",
"globby": "^9.0.0",
"mocha": "^5.2.0",
"npm-run-path": "^2.0.2",
"nps": "^5.9.5",
"shelljs": "^0.8.3",
"tmp": "^0.0.33",
"ts-node": "^8.0.2",
"typescript": "^3.7"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
".oclif.manifest.json",
"/bin",
"/lib",
"/templates"
],
"homepage": "https://github.com/bodawei/alto-clif",
"keywords": [
"oclif",
"alto-clif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"plugins": [
"alto-plugin-help",
"@oclif/plugin-warn-if-update-available",
"@oclif/plugin-not-found"
],
"bin": "alto-clif"
},
"repository": "bodawei/alto-clif",
"scripts": {
"lint": "nps lint",
"postpack": "rm .oclif.manifest.json",
"posttest": "yarn run lint",
"prepack": "rm -rf lib && tsc && oclif-dev manifest",
"version": "oclif-dev readme && git add README.md",
"test": "nps test"
},
"types": "lib/index.d.ts"
}