forked from oclif/oclif
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
149 lines (149 loc) · 3.96 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "@appfolio/oclif",
"description": "oclif: create your own CLI",
"version": "3.8.1",
"author": "Salesforce",
"bin": {
"oclif": "bin/run",
"oclif2": "bin/run"
},
"bugs": "https://github.com/oclif/oclif/issues",
"dependencies": {
"@oclif/core": "^2.8.0",
"@oclif/plugin-help": "^5.1.19",
"@oclif/plugin-not-found": "^2.3.7",
"@oclif/plugin-warn-if-update-available": "^2.0.14",
"aws-sdk": "^2.1231.0",
"concurrently": "^7.6.0",
"debug": "^4.3.3",
"find-yarn-workspace-root": "^2.0.0",
"fs-extra": "^8.1",
"github-slugger": "^1.5.0",
"got": "^11",
"lodash": "^4.17.21",
"normalize-package-data": "^3.0.3",
"semver": "^7.3.8",
"shelljs": "^0.8.5",
"tslib": "^2.3.1",
"yeoman-environment": "^3.11.1",
"yeoman-generator": "^5.6.1",
"yosay": "^2.0.2"
},
"devDependencies": {
"@oclif/plugin-legacy": "^1.2.7",
"@oclif/test": "^2.3.0",
"@types/chai": "^4.3.4",
"@types/cli-progress": "^3.11.0",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^9.0",
"@types/lodash": "^4.14.191",
"@types/lodash.template": "^4.5.0",
"@types/mocha": "^8.2.3",
"@types/node": "^14.18.34",
"@types/read-pkg": "^5.1.0",
"@types/semver": "^7.3.13",
"@types/shelljs": "^0.8.11",
"@types/supports-color": "^7.2.1",
"@types/write-json-file": "^3.2.1",
"@types/yeoman-generator": "^5.2.10",
"@types/yosay": "^2.0.1",
"chai": "^4.3.7",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"execa": "^0.11.0",
"fancy-test": "^1.4.10",
"globby": "^11.1.0",
"mocha": "^9.2.2",
"npm-run-path": "^4.0.1",
"nps": "^5.10.0",
"shx": "^0.3.4",
"tmp": "^0.2.1",
"ts-node": "^10.7.0",
"typescript": "4.5.5"
},
"resolutions": {
"colors": "1.4.0"
},
"overrides": {
"colors": "1.4.0"
},
"engines": {
"node": ">=12.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",
"binAliases": [
"oclif2"
],
"dirname": "oclif",
"topicSeparator": " ",
"macos": {
"identifier": "com.oclif.cli"
},
"update": {
"autoupdate": {
"rollout": 50,
"debounce": 60
},
"node": {
"version": "16.13.2"
},
"s3": {
"bucket": "dfc-data-production",
"indexVersionLimit": 20,
"folder": "media/salesforce-cli/oclif-testing",
"acl": " ",
"host": "https://developer.salesforce.com",
"xz": true
}
},
"topics": {
"pack": {
"description": "package an oclif CLI into installable artifacts"
},
"upload": {
"description": "upload installable CLI artifacts to AWS S3"
}
}
},
"repository": "oclif/oclif",
"scripts": {
"build": "shx rm -rf lib && tsc",
"devcli:lint": "eslint . --ext .ts --config .eslintrc",
"devcli:test": "mocha --forbid-only \"test/unit/*.test.ts\"",
"devcli": "yarn build --noEmit && yarn run devcli:test && yarn run devcli:lint",
"lint": "nps lint",
"prepare": "yarn build",
"postpack": "shx rm .oclif.manifest.json",
"posttest": "yarn run lint",
"prepack": "shx rm -rf lib && tsc && bin/dev manifest .",
"test": "nps test && yarn test:unit && yarn test:integration",
"test:integration": "mocha --forbid-only \"test/integration/*.test.ts\"",
"test:unit": "mocha --forbid-only \"test/unit/*.test.ts\"",
"version": "bin/dev readme && git add README.md"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"types": "lib/index.d.ts"
}