@salesforce/plugin-trust 3.3.11 → 3.3.14
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/README.md +1 -1
- package/npm-shrinkwrap.json +23720 -0
- package/oclif.lock +758 -454
- package/oclif.manifest.json +1 -1
- package/package.json +12 -13
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-trust",
|
|
3
3
|
"description": "validate a digital signature for a npm package",
|
|
4
|
-
"version": "3.3.
|
|
4
|
+
"version": "3.3.14",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf-trust": "bin/dev"
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@oclif/core": "^3.19.6",
|
|
12
|
-
"@salesforce/core": "^6.5.
|
|
13
|
-
"@salesforce/sf-plugins-core": "^7.1.
|
|
12
|
+
"@salesforce/core": "^6.5.5",
|
|
13
|
+
"@salesforce/sf-plugins-core": "^7.1.13",
|
|
14
14
|
"got": "^13.0.0",
|
|
15
15
|
"npm": "10.2.3",
|
|
16
16
|
"npm-run-path": "^4.0.1",
|
|
@@ -21,15 +21,14 @@
|
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@oclif/plugin-command-snapshot": "^5.0.8",
|
|
23
23
|
"@salesforce/cli-plugins-testkit": "^5.1.9",
|
|
24
|
-
"@salesforce/dev-scripts": "^8.
|
|
25
|
-
"@salesforce/plugin-command-reference": "^3.0.
|
|
24
|
+
"@salesforce/dev-scripts": "^8.4.1",
|
|
25
|
+
"@salesforce/plugin-command-reference": "^3.0.69",
|
|
26
26
|
"@salesforce/plugin-telemetry": "^2.3.8",
|
|
27
27
|
"@salesforce/ts-sinon": "^1.4.18",
|
|
28
28
|
"@types/shelljs": "^0.8.15",
|
|
29
29
|
"@types/sinon-chai": "^3.2.12",
|
|
30
30
|
"eslint-plugin-sf-plugin": "^1.17.3",
|
|
31
|
-
"oclif": "^4.4.
|
|
32
|
-
"shx": "0.3.4",
|
|
31
|
+
"oclif": "^4.4.17",
|
|
33
32
|
"sinon-chai": "^3.7.0",
|
|
34
33
|
"ts-node": "^10.9.2",
|
|
35
34
|
"typescript": "^5.2.2"
|
|
@@ -39,11 +38,12 @@
|
|
|
39
38
|
"node": ">=18.0.0"
|
|
40
39
|
},
|
|
41
40
|
"files": [
|
|
42
|
-
"bin",
|
|
43
41
|
"/lib",
|
|
44
42
|
"/messages",
|
|
43
|
+
"/npm-shrinkwrap.json",
|
|
44
|
+
"/oclif.lock",
|
|
45
45
|
"/oclif.manifest.json",
|
|
46
|
-
"
|
|
46
|
+
"bin"
|
|
47
47
|
],
|
|
48
48
|
"homepage": "https://github.com/salesforcecli/plugin-trust",
|
|
49
49
|
"keywords": [
|
|
@@ -87,13 +87,12 @@
|
|
|
87
87
|
"build": "wireit",
|
|
88
88
|
"clean": "sf-clean",
|
|
89
89
|
"clean-all": "sf-clean all",
|
|
90
|
-
"clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json oclif.lock",
|
|
91
90
|
"compile": "wireit",
|
|
92
91
|
"docs": "sf-docs",
|
|
93
92
|
"format": "wireit",
|
|
94
93
|
"link-check": "wireit",
|
|
95
94
|
"lint": "wireit",
|
|
96
|
-
"postpack": "
|
|
95
|
+
"postpack": "sf-clean --ignore-signing-artifacts",
|
|
97
96
|
"prepack": "sf-prepack",
|
|
98
97
|
"prepare": "sf-install",
|
|
99
98
|
"test": "wireit",
|
|
@@ -222,7 +221,7 @@
|
|
|
222
221
|
"exports": "./lib/index.js",
|
|
223
222
|
"type": "module",
|
|
224
223
|
"sfdx": {
|
|
225
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-trust/3.3.
|
|
226
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-trust/3.3.
|
|
224
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-trust/3.3.14.crt",
|
|
225
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-trust/3.3.14.sig"
|
|
227
226
|
}
|
|
228
227
|
}
|