@contrast/cli 1.18.0 → 1.20.0
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/LICENSE +1 -1
- package/lib/config-diagnostics.js +2 -2
- package/lib/system-diagnostics.js +1 -1
- package/package.json +4 -4
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/*
|
|
3
|
-
* Copyright:
|
|
3
|
+
* Copyright: 2024 Contrast Security, Inc
|
|
4
4
|
* Contact: support@contrastsecurity.com
|
|
5
5
|
* License: Commercial
|
|
6
6
|
|
|
@@ -34,7 +34,7 @@ if (require.main === module) {
|
|
|
34
34
|
|
|
35
35
|
async function action(entrypoint, options) {
|
|
36
36
|
const core = { agentName, agentVersion };
|
|
37
|
-
require('@contrast/core/lib/
|
|
37
|
+
require('@contrast/core/lib/messages')(core);
|
|
38
38
|
require('@contrast/config')(core);
|
|
39
39
|
require('@contrast/logger').default(core, { level: 'silent' });
|
|
40
40
|
require('@contrast/core/lib/app-info')(core);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contrast/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.20.0",
|
|
4
4
|
"description": "A collection of agent related CLI utilities",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"author": "Contrast Security <nodejs@contrastsecurity.com> (https://www.contrastsecurity.com)",
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"test": "../scripts/test.sh"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@contrast/config": "1.
|
|
23
|
-
"@contrast/core": "1.
|
|
22
|
+
"@contrast/config": "1.23.0",
|
|
23
|
+
"@contrast/core": "1.27.1",
|
|
24
24
|
"@contrast/logger": "1.7.0",
|
|
25
|
-
"@contrast/reporter": "1.
|
|
25
|
+
"@contrast/reporter": "1.22.0",
|
|
26
26
|
"@contrast/scopes": "^1.4.0",
|
|
27
27
|
"commander": "^9.4.1"
|
|
28
28
|
}
|