@oclif/plugin-help 6.0.9-dev.2 → 6.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/oclif.lock +6350 -0
- package/oclif.manifest.json +1 -1
- package/package.json +13 -15
- package/npm-shrinkwrap.json +0 -11723
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/plugin-help",
|
|
3
3
|
"description": "Standard help for oclif.",
|
|
4
|
-
"version": "6.0.
|
|
4
|
+
"version": "6.0.10",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/oclif/plugin-help/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@oclif/core": "^3.
|
|
8
|
+
"@oclif/core": "^3.16.0"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
11
|
"@commitlint/config-conventional": "^17.8.1",
|
|
12
12
|
"@oclif/prettier-config": "^0.2.1",
|
|
13
|
-
"@oclif/test": "^3.1.
|
|
13
|
+
"@oclif/test": "^3.1.8",
|
|
14
14
|
"@types/chai": "^4.3.11",
|
|
15
15
|
"@types/mocha": "^10.0.6",
|
|
16
16
|
"@types/node": "^18",
|
|
17
17
|
"chai": "^4.3.10",
|
|
18
18
|
"commitlint": "^17.8.1",
|
|
19
|
-
"eslint": "^8.
|
|
19
|
+
"eslint": "^8.56.0",
|
|
20
20
|
"eslint-config-oclif": "^5.0.0",
|
|
21
|
-
"eslint-config-oclif-typescript": "^3.0.
|
|
21
|
+
"eslint-config-oclif-typescript": "^3.0.31",
|
|
22
22
|
"eslint-config-prettier": "^9.1.0",
|
|
23
23
|
"husky": "^8.0.3",
|
|
24
24
|
"lint-staged": "^14.0.1",
|
|
25
25
|
"mocha": "^10.2.0",
|
|
26
|
-
"oclif": "^4.0
|
|
27
|
-
"prettier": "^3.1.
|
|
26
|
+
"oclif": "^4.1.0",
|
|
27
|
+
"prettier": "^3.1.1",
|
|
28
28
|
"shx": "^0.3.4",
|
|
29
29
|
"ts-node": "^10.9.2",
|
|
30
30
|
"typescript": "^5.3.3"
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"files": [
|
|
37
37
|
"oclif.manifest.json",
|
|
38
38
|
"/lib",
|
|
39
|
-
"
|
|
39
|
+
"/oclif.lock"
|
|
40
40
|
],
|
|
41
41
|
"homepage": "https://github.com/oclif/plugin-help",
|
|
42
42
|
"keywords": [
|
|
@@ -52,14 +52,12 @@
|
|
|
52
52
|
"repository": "oclif/plugin-help",
|
|
53
53
|
"scripts": {
|
|
54
54
|
"build": "shx rm -rf lib && tsc",
|
|
55
|
-
"commitlint": "commitlint --edit $1",
|
|
56
55
|
"lint": "eslint . --ext .ts",
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"pretest": "npm build && tsc --noEmit",
|
|
56
|
+
"postpack": "shx rm oclif.manifest.json oclif.lock",
|
|
57
|
+
"posttest": "yarn lint",
|
|
58
|
+
"prepack": "yarn run build && oclif manifest . && oclif lock",
|
|
59
|
+
"prepare": "husky install && yarn build",
|
|
60
|
+
"pretest": "yarn build && tsc --noEmit",
|
|
63
61
|
"test": "mocha --forbid-only \"test/**/*.test.ts\""
|
|
64
62
|
},
|
|
65
63
|
"type": "module",
|