ts-node-client 1.8.6 → 1.8.7
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 +18 -42
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,14 +8,12 @@
|
|
|
8
8
|
|
|
9
9
|
[](https://nodei.co/npm/ts-node-client/)
|
|
10
10
|
|
|
11
|
-
TrustSource node client
|
|
12
|
-
|
|
13
|
-
> node module to transfer dependency information to TrustSource server.
|
|
11
|
+
> TrustSource node client - node module to transfer dependency information to TrustSource server.
|
|
14
12
|
|
|
15
13
|
## Requirements
|
|
16
|
-
|
|
17
14
|
* node >= 8.9.0
|
|
18
|
-
* npm < 8.0.0
|
|
15
|
+
* npm < 8.0.0 use **ts-node-client@1.***
|
|
16
|
+
* npm >= 8.0.0 use **ts-node-client@2.***
|
|
19
17
|
|
|
20
18
|
## Installation
|
|
21
19
|
Run: `npm install --save-dev ts-node-client` or `yarn add --dev ts-node-client`
|
|
@@ -77,6 +75,7 @@ Options:
|
|
|
77
75
|
```
|
|
78
76
|
PLEASE NOTE: if you want to pass param into function
|
|
79
77
|
you should add value, for example:
|
|
78
|
+
|
|
80
79
|
`--breakOnViolations true` or `--saveAs sbom`
|
|
81
80
|
|
|
82
81
|
## Software bill of materials
|
|
@@ -87,95 +86,72 @@ you should add value, for example:
|
|
|
87
86
|
## Known problems
|
|
88
87
|
|
|
89
88
|
#### Error: The programmatic API was removed in npm v8.0.0
|
|
90
|
-
You should upgrade to
|
|
89
|
+
You should upgrade to 2.* versions of ts-node-client
|
|
91
90
|
|
|
92
91
|
## Changelog
|
|
93
92
|
|
|
93
|
+
#### 2.0
|
|
94
|
+
- Support new scan tool and fix problem with programmatic API for >= npm@8.0.0
|
|
95
|
+
|
|
94
96
|
#### 1.8.*
|
|
95
97
|
- SBOM
|
|
96
98
|
- **--saveAs** and **--saveAsFormat**
|
|
97
99
|
- Bump minimist from 1.2.5 to 1.2.6
|
|
98
100
|
- Bump urijs from 1.19.10 to 1.19.11
|
|
99
101
|
- replace packageurl-js with simple local function
|
|
102
|
+
- improve docs
|
|
100
103
|
|
|
101
104
|
#### 1.7.*
|
|
102
105
|
- request -> axios
|
|
103
106
|
- fix dependencies
|
|
104
107
|
- doc fixes
|
|
105
108
|
|
|
106
|
-
#### 1.6
|
|
109
|
+
#### 1.6.*
|
|
107
110
|
- **--breakOnWarnings** and **--breakOnViolations**
|
|
108
111
|
- Bump devDependencies
|
|
109
112
|
|
|
110
|
-
#### 1.5
|
|
113
|
+
#### 1.5.*
|
|
111
114
|
- Describe `Error: The programmatic API was removed in npm v8.0.0`
|
|
112
|
-
|
|
113
|
-
#### 1.5.1
|
|
114
115
|
- Bump devDependencies
|
|
115
116
|
- Introduce sonarjs
|
|
116
117
|
|
|
117
|
-
#### 1.4
|
|
118
|
+
#### 1.4.*
|
|
118
119
|
- Bump glob-parent from 5.1.1 to 5.1.2
|
|
119
120
|
- Bump path-parse from 1.0.6 to 1.0.7
|
|
120
|
-
|
|
121
|
-
#### 1.4.2
|
|
122
121
|
- Bump lodash from 4.17.19 to 4.17.21
|
|
123
|
-
|
|
124
|
-
#### 1.4.1
|
|
125
122
|
- Bump y18n from 4.0.0 to 4.0.1
|
|
126
|
-
|
|
127
|
-
#### 1.4.0
|
|
128
123
|
- Added:
|
|
129
124
|
- option **--includeDevDependencies**. It is allow to scan dev dependencies
|
|
130
125
|
|
|
131
|
-
#### 1.3
|
|
126
|
+
#### 1.3.*
|
|
132
127
|
- Use [`global-npm`](https://github.com/dracupid/global-npm) (meaning `npm` is no longer a dependency of `ts-node-client`)
|
|
133
128
|
|
|
134
|
-
#### 1.2
|
|
129
|
+
#### 1.2.*
|
|
135
130
|
- Added:
|
|
136
131
|
- option **--brakeOnViolations**. It is fail build in case any violations after scan transferred.
|
|
137
132
|
- option **--brakeOnWarnings**. It is fail build in case any warning after scan transferred.
|
|
138
133
|
|
|
139
|
-
#### 1.1
|
|
134
|
+
#### 1.1.*
|
|
140
135
|
- userName is not required param for scans
|
|
141
136
|
- Support usage of scan meta param binaryLinks inside Options definition
|
|
142
137
|
|
|
143
|
-
|
|
144
|
-
#### 1.0.0
|
|
138
|
+
#### 1.0.*
|
|
145
139
|
- Node JS and dependencies updates "node": ">= 8.12.0"
|
|
146
140
|
|
|
147
|
-
#### 0.3
|
|
141
|
+
#### 0.3.*
|
|
148
142
|
- Improve variable usage and tasks migration
|
|
149
|
-
|
|
150
|
-
#### 0.3.3
|
|
151
143
|
- Support usage of scan meta params: branch and tag inside Options definition
|
|
152
|
-
|
|
153
|
-
#### 0.3.2
|
|
154
144
|
- Skip npmDependency without names
|
|
155
|
-
|
|
156
|
-
#### 0.3.1
|
|
157
145
|
- Update travis config
|
|
158
|
-
|
|
159
|
-
#### 0.3.0
|
|
160
146
|
- Update dependency to resolve vulnerabilities
|
|
161
147
|
|
|
162
|
-
#### 0.2
|
|
148
|
+
#### 0.2.*
|
|
163
149
|
- Added proxy support and config
|
|
164
|
-
|
|
165
|
-
#### 0.2.4
|
|
166
150
|
- Update travis config
|
|
167
|
-
|
|
168
|
-
#### 0.2.3
|
|
169
151
|
- Updated README.md with `app.trustsource.io`
|
|
170
|
-
|
|
171
|
-
#### 0.2.2
|
|
172
152
|
- Updated default url to `app.trustsource.io`
|
|
173
|
-
|
|
174
|
-
#### 0.2.1
|
|
175
153
|
- Added windows support
|
|
176
154
|
- Fixed json
|
|
177
|
-
|
|
178
|
-
#### 0.2.0
|
|
179
155
|
- **Removed:**
|
|
180
156
|
- options: **--credentials** and **--credentialsFile** instead you should use **--config**.
|
|
181
157
|
- option **--baseUrl** instead you should use **--url**.
|
package/package.json
CHANGED