forked from oclif/oclif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "oclif",
"description": "oclif: create your own CLI",
"version": "1.16.1",
"author": "Jeff Dickey @jdxcode",
"bin": "./bin/run",
"bugs": "https://github.com/oclif/oclif/issues",
"dependencies": {
"@oclif/command": "^1.6",
"@oclif/config": "^1.12.6",
"@oclif/errors": "^1.2.2",
"@oclif/fixpack": "^2.3.0",
"@oclif/plugin-help": "^3",
"@oclif/plugin-not-found": "^1.2.2",
"@oclif/plugin-warn-if-update-available": "^1.5.4",
"cli-ux": "^5.2.1",
"debug": "^4.1.1",
"find-yarn-workspace-root": "^2.0.0",
"fs-extra": "^8.1",
"github-slugger": "^1.2.1",
"lodash": "^4.17.11",
"normalize-package-data": "^3.0.0",
"nps-utils": "^1.7.0",
"qqjs": "^0.3.10",
"sort-pjson": "^1.0.3",
"tslib": "^2.0.0",
"yeoman-environment": "^2.3.4",
"yeoman-generator": "3",
"yosay": "^2.0.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1.21.0",
"@oclif/plugin-legacy": "^1.1.4",
"@oclif/test": "^1.2.4",
"@types/chai": "^4.1.7",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^8.1",
"@types/lodash": "^4.14.121",
"@types/lodash.template": "^4.4.6",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.14",
"@types/read-pkg": "^5.1.0",
"@types/shelljs": "^0.8.3",
"@types/supports-color": "^7.2.0",
"@types/write-json-file": "^3.2.1",
"@types/yeoman-environment": "^2.10.2",
"@types/yosay": "^0.0.29",
"aws-sdk": "^2.443.0",
"chai": "^4.2.0",
"conventional-changelog-cli": "^2.0.17",
"eslint": "^7.3.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.2.0",
"execa": "^0.10.0",
"fancy-test": "^1.4.3",
"globby": "^11.0.1",
"mocha": "^8.2.1",
"npm-run-path": "^4.0.1",
"nps": "^5.9.3",
"shelljs": "^0.8.3",
"tmp": "^0.2.1",
"ts-node": "^9.0.0",
"typescript": "3.8.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
".oclif.manifest.json",
"/bin",
"/lib",
"/templates"
],
"homepage": "https://github.com/oclif/oclif",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available",
"@oclif/plugin-not-found"
],
"bin": "oclif",
"dirname": "oclif",
"macos": {
"identifier": "com.oclif.cli",
"sign": "Developer ID Installer: Heroku INC"
},
"update": {
"autoupdate": {
"rollout": 50,
"debounce": 60
},
"node": {
"version": "12.12.0"
},
"s3": {
"bucket": "oclif-staging",
"xz": true
}
}
},
"repository": "oclif/oclif",
"scripts": {
"build": "rm -rf lib && tsc",
"devcli:lint": "eslint . --ext .ts --config .eslintrc",
"devcli:test": "mocha --forbid-only \"test/*.test.ts\"",
"devcli": "yarn build --noEmit && yarn run devcli:test && yarn run devcli:lint",
"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"
}