endorctl 1.7.870 → 1.7.882

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.
Files changed (2) hide show
  1. package/README.md +0 -1
  2. package/package.json +29 -28
package/README.md CHANGED
@@ -1,4 +1,3 @@
1
-
2
1
  # Endor Labs CLI
3
2
 
4
3
  'endorctl' is a command line utility designed to bring the functionality of [Endor Labs](https://www.endorlabs.com/) into your software delivery workflows. It helps you to run scans on your local machine and integrate Endor Labs into your development pipeline.
package/package.json CHANGED
@@ -1,30 +1,31 @@
1
1
  {
2
- "author": "Endor Labs \u003cnpm@endor.ai\u003e",
3
- "version": "v1.7.870",
2
+ "author": "Endor Labs <npm@endor.ai>",
3
+ "version": "v1.7.882",
4
+ "license": "Apache-2.0",
5
+ "name": "endorctl",
6
+ "description": "Endor Labs CLI",
7
+ "platform": [
8
+ "linux",
9
+ "darwin",
10
+ "win32"
11
+ ],
12
+ "arch": [
13
+ "amd64",
14
+ "arm64"
15
+ ],
16
+ "scripts": {
17
+ "postinstall": "go-npm install",
18
+ "preuninstall": "go-npm uninstall"
19
+ },
20
+ "bin": {
21
+ "endorctl": "./bin/endorctl"
22
+ },
23
+ "goBinary": {
4
24
  "name": "endorctl",
5
- "description": "Endor Labs CLI",
6
- "platform": [
7
- "linux",
8
- "darwin",
9
- "win32"
10
- ],
11
- "arch": [
12
- "amd64",
13
- "arm64"
14
- ],
15
- "scripts": {
16
- "postinstall": "go-npm install",
17
- "preuninstall": "go-npm uninstall"
18
- },
19
- "bin": {
20
- "endorctl": "./bin/endorctl"
21
- },
22
- "goBinary": {
23
- "name": "endorctl",
24
- "path": "./bin",
25
- "url": "https://api.endorlabs.com/download/endorlabs/v{{version}}/binaries/endorctl_v{{version}}_{{platform}}_{{arch}}{{win_ext}}"
26
- },
27
- "dependencies": {
28
- "@endorlabs/go-npm": "^0.1.14"
29
- }
30
- }
25
+ "path": "./bin",
26
+ "url": "https://api.endorlabs.com/download/endorlabs/v{{version}}/binaries/endorctl_v{{version}}_{{platform}}_{{arch}}{{win_ext}}"
27
+ },
28
+ "dependencies": {
29
+ "@endorlabs/go-npm": "^0.1.14"
30
+ }
31
+ }