ts-node-client 3.2.0 → 3.2.2
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/.editorconfig +10 -10
- package/.eslintrc.json +29 -29
- package/.gitattributes +4 -4
- package/.github/workflows/codeql-analysis.yml +71 -71
- package/.github/workflows/publish.yml +32 -0
- package/.travis.yml +12 -12
- package/CHANGELOG.md +58 -46
- package/LICENSE +202 -202
- package/README.md +191 -191
- package/SECURITY.md +21 -21
- package/lib/cli.js +122 -122
- package/lib/convertor.js +244 -244
- package/lib/dependency.js +169 -169
- package/lib/meteor-scanner.js +61 -61
- package/lib/npm-scanner.js +334 -334
- package/lib/pkg.js +36 -36
- package/lib/rest-client.js +129 -129
- package/lib/scanresult.js +32 -32
- package/package-lock.json +5147 -0
- package/package-lock_dev_test.json +47 -0
- package/package.json +2 -2
- package/test/dependency-test.js +309 -309
- package/test/error-test.js +80 -80
- package/test/rest-test.js +75 -75
- package/test/scanresult-test.js +44 -44
- package/.yarnrc.yml +0 -1
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name":"ts-node-client",
|
|
3
|
+
"version":"3.1.0",
|
|
4
|
+
"lockfileVersion":3,
|
|
5
|
+
"requires":true,
|
|
6
|
+
"packages":{
|
|
7
|
+
"":{
|
|
8
|
+
"name":"ts-node-client",
|
|
9
|
+
"version":"3.1.0",
|
|
10
|
+
"license":"Apache-2.0",
|
|
11
|
+
"dependencies":{
|
|
12
|
+
"axios":"1.2.6"
|
|
13
|
+
},
|
|
14
|
+
"bin":{
|
|
15
|
+
"ts-node-client":"bin/ts-node-client.js"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies":{
|
|
18
|
+
"eslint-plugin-sonarjs":"0.18.0"
|
|
19
|
+
},
|
|
20
|
+
"engines":{
|
|
21
|
+
"node":">= 12.0.0"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"node_modules/axios":{
|
|
25
|
+
"version":"1.2.6",
|
|
26
|
+
"resolved":"https://registry.npmjs.org/axios/-/axios-1.2.6.tgz",
|
|
27
|
+
"integrity":"sha512-rC/7F08XxZwjMV4iuWv+JpD3E0Ksqg9nac4IIg6RwNuF0JTeWoCo/mBNG54+tNhhI11G3/VDRbdDQTs9hGp4pQ==",
|
|
28
|
+
"dependencies":{
|
|
29
|
+
"follow-redirects":"^1.15.0",
|
|
30
|
+
"form-data":"^4.0.0",
|
|
31
|
+
"proxy-from-env":"^1.1.0"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"node_modules/eslint-plugin-sonarjs":{
|
|
35
|
+
"version":"0.18.0",
|
|
36
|
+
"resolved":"https://registry.npmjs.org/eslint-plugin-sonarjs/-/eslint-plugin-sonarjs-0.18.0.tgz",
|
|
37
|
+
"integrity":"sha512-DJ3osLnt6KFdT5e9ZuIDOjT5A6wUGSLeiJJT03lPgpdD+7CVWlYAw9Goe3bt7SmbFO3Xh89NOCZAuB9XA7bAUQ==",
|
|
38
|
+
"dev":true,
|
|
39
|
+
"engines":{
|
|
40
|
+
"node":">=14"
|
|
41
|
+
},
|
|
42
|
+
"peerDependencies":{
|
|
43
|
+
"eslint":"^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-node-client",
|
|
3
3
|
"description": "npm / node module to transfer dependency information to TrustSource server.",
|
|
4
|
-
"version": "3.2.
|
|
4
|
+
"version": "3.2.2",
|
|
5
5
|
"homepage": "https://app.trustsource.io/",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Oleksandr Dmukhovskyi",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"scripts": {
|
|
21
21
|
"scan": "yarn node ./bin/ts-node-client.js --debug true --saveAs test --saveAsFormat scan",
|
|
22
22
|
"scan-with-brakes": "yarn node ./bin/ts-node-client.js --breakOnViolations true --breakOnWarnings false",
|
|
23
|
-
"scan-to-file": "yarn node ./bin/ts-node-client.js --saveAs test --saveAsFormat scan",
|
|
23
|
+
"scan-to-file": "yarn node ./bin/ts-node-client.js --saveAs test --saveAsFormat scan --includeDevDependencies false",
|
|
24
24
|
"lint": "eslint bin lib test",
|
|
25
25
|
"lint-fix": "eslint bin lib test --fix",
|
|
26
26
|
"test": "mocha test",
|