scanoss 0.2.26 → 0.3.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/.github/workflows/reuse.yml +15 -0
- package/.github/workflows/scanoss.yml +24 -0
- package/.gitignore +0 -1
- package/.idea/.gitignore +5 -0
- package/.idea/codeStyles/Project.xml +61 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/scanoss.js.iml +12 -0
- package/.idea/vcs.xml +6 -0
- package/.idea/workspace.xml +366 -0
- package/.nyc_output/a25d3ac4-ee71-4c5e-926e-3a17714555cd.json +1 -0
- package/.nyc_output/processinfo/a25d3ac4-ee71-4c5e-926e-3a17714555cd.json +1 -0
- package/.nyc_output/processinfo/index.json +1 -0
- package/.reuse/dep5 +16 -0
- package/LICENSES/CC0-1.0.txt +121 -0
- package/LICENSES/MIT.txt +9 -0
- package/README.md +9 -0
- package/build/main/bin/cli-bin.js +5 -3
- package/build/main/commands/dep.js +1 -2
- package/build/main/commands/fingerprint.js +20 -12
- package/build/main/commands/helpers.js +1 -2
- package/build/main/commands/scan.js +7 -2
- package/build/main/index.js +1 -2
- package/build/main/lib/dependencies/DependencyScanner.d.ts +1 -1
- package/build/main/lib/dependencies/DependencyScanner.js +23 -12
- package/build/main/lib/dependencies/DependencyScannerCfg.js +1 -2
- package/build/main/lib/dependencies/DependencyTypes.js +0 -1
- package/build/main/lib/dependencies/LocalDependency/DependencyTypes.js +0 -1
- package/build/main/lib/dependencies/LocalDependency/LocalDependency.js +3 -2
- package/build/main/lib/dependencies/LocalDependency/parsers/golangParser.d.ts +1 -0
- package/build/main/lib/dependencies/LocalDependency/parsers/golangParser.js +50 -16
- package/build/main/lib/dependencies/LocalDependency/parsers/mavenParser.js +130 -15
- package/build/main/lib/dependencies/LocalDependency/parsers/npmParser.d.ts +10 -0
- package/build/main/lib/dependencies/LocalDependency/parsers/npmParser.js +146 -10
- package/build/main/lib/dependencies/LocalDependency/parsers/pyParser.js +1 -2
- package/build/main/lib/dependencies/LocalDependency/parsers/rubyParser.js +1 -2
- package/build/main/lib/dependencies/LocalDependency/parsers/utils.js +1 -2
- package/build/main/lib/filters/defaultFilter.js +1 -2
- package/build/main/lib/filters/filtering.js +1 -2
- package/build/main/lib/grpc/GrpcDependencyService.js +1 -2
- package/build/main/lib/grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.d.ts +62 -0
- package/build/main/lib/grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.js +128 -0
- package/build/main/lib/grpc/scanoss/api/components/v2/scanoss-components_pb.d.ts +1 -0
- package/build/main/lib/grpc/scanoss/api/components/v2/scanoss-components_pb.js +1403 -0
- package/build/main/lib/scanner/Dispatcher/DispatchableItem.d.ts +14 -5
- package/build/main/lib/scanner/Dispatcher/DispatchableItem.js +30 -10
- package/build/main/lib/scanner/Dispatcher/Dispatcher.d.ts +2 -2
- package/build/main/lib/scanner/Dispatcher/Dispatcher.js +10 -15
- package/build/main/lib/scanner/Dispatcher/DispatcherResponse.js +1 -2
- package/build/main/lib/scanner/Dispatcher/GlobalControllerAborter.js +1 -2
- package/build/main/lib/scanner/Scannable/ScannableItem.js +1 -2
- package/build/main/lib/scanner/Scanner.js +13 -9
- package/build/main/lib/scanner/ScannerCfg.js +2 -3
- package/build/main/lib/scanner/ScannerQueue.d.ts +3 -0
- package/build/main/lib/scanner/ScannerQueue.js +8 -0
- package/build/main/lib/scanner/ScannerTypes.d.ts +9 -2
- package/build/main/lib/scanner/ScannerTypes.js +8 -3
- package/build/main/lib/scanner/WfpProvider/FingerprintPackage.d.ts +9 -0
- package/build/main/lib/scanner/WfpProvider/FingerprintPackage.js +31 -0
- package/build/main/lib/scanner/WfpProvider/WfpCalculator/WfpCalculator.js +178 -21
- package/build/main/lib/scanner/WfpProvider/WfpCalculator/Winnower.d.ts +3 -0
- package/build/main/lib/scanner/WfpProvider/WfpCalculator/Winnower.js +211 -0
- package/build/main/lib/scanner/WfpProvider/WfpProvider.d.ts +2 -2
- package/build/main/lib/scanner/WfpProvider/WfpProvider.js +6 -7
- package/build/main/lib/scanner/WfpProvider/WfpSplitter/WfpSplitter.js +1 -2
- package/build/main/lib/tree/File.js +1 -2
- package/build/main/lib/tree/Folder.js +1 -2
- package/build/main/lib/tree/Node.js +1 -2
- package/build/main/lib/tree/Tree.js +1 -2
- package/build/module/bin/cli-bin.js +5 -2
- package/build/module/commands/fingerprint.js +25 -16
- package/build/module/commands/scan.js +8 -2
- package/build/module/lib/dependencies/DependencyScanner.d.ts +1 -1
- package/build/module/lib/dependencies/DependencyScanner.js +23 -11
- package/build/module/lib/dependencies/LocalDependency/LocalDependency.js +5 -3
- package/build/module/lib/dependencies/LocalDependency/parsers/golangParser.d.ts +1 -0
- package/build/module/lib/dependencies/LocalDependency/parsers/golangParser.js +47 -14
- package/build/module/lib/dependencies/LocalDependency/parsers/mavenParser.js +130 -14
- package/build/module/lib/dependencies/LocalDependency/parsers/npmParser.d.ts +10 -0
- package/build/module/lib/dependencies/LocalDependency/parsers/npmParser.js +140 -8
- package/build/module/lib/grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.d.ts +62 -0
- package/build/module/lib/grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.js +128 -0
- package/build/module/lib/grpc/scanoss/api/components/v2/scanoss-components_pb.d.ts +1 -0
- package/build/module/lib/grpc/scanoss/api/components/v2/scanoss-components_pb.js +1403 -0
- package/build/module/lib/scanner/Dispatcher/DispatchableItem.d.ts +14 -5
- package/build/module/lib/scanner/Dispatcher/DispatchableItem.js +32 -10
- package/build/module/lib/scanner/Dispatcher/Dispatcher.d.ts +2 -2
- package/build/module/lib/scanner/Dispatcher/Dispatcher.js +10 -14
- package/build/module/lib/scanner/Scanner.js +12 -8
- package/build/module/lib/scanner/ScannerCfg.js +2 -2
- package/build/module/lib/scanner/ScannerQueue.d.ts +3 -0
- package/build/module/lib/scanner/ScannerQueue.js +4 -0
- package/build/module/lib/scanner/ScannerTypes.d.ts +9 -2
- package/build/module/lib/scanner/ScannerTypes.js +7 -1
- package/build/module/lib/scanner/WfpProvider/FingerprintPackage.d.ts +9 -0
- package/build/module/lib/scanner/WfpProvider/FingerprintPackage.js +30 -0
- package/build/module/lib/scanner/WfpProvider/WfpCalculator/WfpCalculator.js +178 -20
- package/build/module/lib/scanner/WfpProvider/WfpCalculator/Winnower.d.ts +3 -0
- package/build/module/lib/scanner/WfpProvider/WfpCalculator/Winnower.js +211 -0
- package/build/module/lib/scanner/WfpProvider/WfpProvider.d.ts +2 -2
- package/build/module/lib/scanner/WfpProvider/WfpProvider.js +6 -6
- package/build/tsconfig.module.tsbuildinfo +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -17
- package/src/bin/cli-bin.ts +4 -1
- package/src/commands/fingerprint.ts +26 -17
- package/src/commands/scan.ts +16 -3
- package/src/lib/dependencies/DependencyScanner.ts +20 -13
- package/src/lib/dependencies/LocalDependency/LocalDependency.ts +8 -2
- package/src/lib/dependencies/LocalDependency/parsers/golangParser.ts +67 -15
- package/src/lib/dependencies/LocalDependency/parsers/mavenParser.ts +143 -16
- package/src/lib/dependencies/LocalDependency/parsers/npmParser.ts +182 -7
- package/src/lib/scanner/Dispatcher/DispatchableItem.ts +45 -11
- package/src/lib/scanner/Dispatcher/Dispatcher.ts +11 -14
- package/src/lib/scanner/Scanner.ts +17 -13
- package/src/lib/scanner/ScannerCfg.ts +2 -1
- package/src/lib/scanner/ScannerTypes.ts +10 -2
- package/src/lib/scanner/WfpProvider/{FingerprintPacket.ts → FingerprintPackage.ts} +4 -14
- package/src/lib/scanner/WfpProvider/WfpCalculator/WfpCalculator.ts +177 -20
- package/src/lib/scanner/WfpProvider/WfpProvider.ts +5 -5
- package/tests/WfpCalculator.spec.ts +103 -0
- package/tests/data/dependencies/Gemfile/1/Gemfile +6 -0
- package/tests/data/dependencies/Gemfile/1/Gemfile~ +0 -0
- package/tests/data/dependencies/Gemfile/2/Gemfile +3 -0
- package/tests/data/dependencies/Gemfile/2/Gemfile~ +6 -0
- package/tests/data/dependencies/Gemfile/3/Gemfile +7 -0
- package/tests/data/dependencies/Gemfile/3/Gemfile~ +6 -0
- package/tests/data/dependencies/Gemfile/4/Gemfile +31 -0
- package/tests/data/dependencies/Gemfile/4/Gemfile~ +7 -0
- package/tests/data/dependencies/Gemfile.lock/1/Gemfile.lock +180 -0
- package/tests/data/dependencies/Gemfile.lock/2/Gemfile.lock +60 -0
- package/tests/data/dependencies/Gemfile.lock/2/Gemfile.lock~ +0 -0
- package/tests/data/dependencies/go.sum/1/go.sum +119 -0
- package/tests/data/dependencies/go.sum/depJSON.sh +23 -0
- package/tests/data/dependencies/package-lock/1/package-lock.json +715 -0
- package/tests/data/dependencies/package-lock/2/package-lock.json +32069 -0
- package/tests/data/dependencies/package-lock/3/package-lock.json +9013 -0
- package/tests/data/dependencies/pom.xml/1/pom.xml +162 -0
- package/tests/data/dependencies/yarn-lock/generate_expected_output.sh +4 -0
- package/tests/data/dependencies/yarn-lock/v1/yarn.lock +50 -0
- package/tests/data/dependencies/yarn-lock/v1/yarn.lock-expected +13 -0
- package/tests/data/dependencies/yarn-lock/v1-complex/yarn.lock +27 -0
- package/tests/data/dependencies/yarn-lock/v1-complex/yarn.lock-expected +8 -0
- package/tests/data/dependencies/yarn-lock/v1-complex2/yarn.lock +220 -0
- package/tests/data/dependencies/yarn-lock/v2/yarn.lock +31 -0
- package/tests/data/dependencies/yarn-lock/v2/yarn.lock-expected +57 -0
- package/tests/data/dependencies/yarn-lock/v2-local/yarn.lock +11 -0
- package/tests/data/dependencies/yarn-lock/v2-local/yarn.lock-expected +27204 -0
- package/tests/data/scanner/file1.c +41 -0
- package/tests/data/scanner/file2.go +87 -0
- package/tests/dependencies/golangParser.goModParser.specs.ts +146 -0
- package/tests/dependencies/npmParser.spec.ts +133 -0
- package/tsconfig.json +4 -3
- package/yarn.lock +4596 -5321
- package/examples/defaultFilter.json +0 -203
- package/package-lock.json +0 -18588
- package/src/lib/scanner/Winnower/WinnowerExtractor.ts +0 -37
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
3
|
+
<modelVersion>4.0.0</modelVersion>
|
|
4
|
+
<groupId>tech.triplecheck</groupId>
|
|
5
|
+
<artifactId>orcus</artifactId>
|
|
6
|
+
<version>1.0.0</version>
|
|
7
|
+
<packaging>jar</packaging>
|
|
8
|
+
<build>
|
|
9
|
+
<finalName>orcus</finalName>
|
|
10
|
+
<plugins>
|
|
11
|
+
<plugin>
|
|
12
|
+
<groupId>org.apache.maven.plugins</groupId>
|
|
13
|
+
<artifactId>maven-surefire-plugin</artifactId>
|
|
14
|
+
<version>2.22.0</version>
|
|
15
|
+
</plugin>
|
|
16
|
+
|
|
17
|
+
<plugin>
|
|
18
|
+
<!-- Build an executable JAR -->
|
|
19
|
+
<groupId>org.apache.maven.plugins</groupId>
|
|
20
|
+
<artifactId>maven-jar-plugin</artifactId>
|
|
21
|
+
<version>3.1.0</version>
|
|
22
|
+
<configuration>
|
|
23
|
+
<archive>
|
|
24
|
+
<manifest>
|
|
25
|
+
<mainClass>tech.triplecheck.orcus.main.Main</mainClass>
|
|
26
|
+
</manifest>
|
|
27
|
+
</archive>
|
|
28
|
+
</configuration>
|
|
29
|
+
</plugin>
|
|
30
|
+
|
|
31
|
+
<plugin>
|
|
32
|
+
<groupId>org.apache.maven.plugins</groupId>
|
|
33
|
+
<artifactId>maven-assembly-plugin</artifactId>
|
|
34
|
+
<version>3.1.1</version>
|
|
35
|
+
|
|
36
|
+
<configuration>
|
|
37
|
+
<descriptorRefs>
|
|
38
|
+
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
39
|
+
</descriptorRefs>
|
|
40
|
+
<archive>
|
|
41
|
+
<manifest>
|
|
42
|
+
<mainClass>tech.triplecheck.orcus.main.Main</mainClass>
|
|
43
|
+
</manifest>
|
|
44
|
+
</archive>
|
|
45
|
+
</configuration>
|
|
46
|
+
|
|
47
|
+
<executions>
|
|
48
|
+
<execution>
|
|
49
|
+
<id>make-assembly</id>
|
|
50
|
+
<phase>package</phase>
|
|
51
|
+
<goals>
|
|
52
|
+
<goal>single</goal>
|
|
53
|
+
</goals>
|
|
54
|
+
</execution>
|
|
55
|
+
</executions>
|
|
56
|
+
|
|
57
|
+
</plugin>
|
|
58
|
+
</plugins>
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
</build>
|
|
62
|
+
<repositories>
|
|
63
|
+
<repository>
|
|
64
|
+
<id>tmate</id>
|
|
65
|
+
<url>http://maven.tmatesoft.com/content/repositories/releases</url>
|
|
66
|
+
</repository>
|
|
67
|
+
</repositories>
|
|
68
|
+
<dependencies>
|
|
69
|
+
<dependency>
|
|
70
|
+
<groupId>org.tmatesoft.sqljet</groupId>
|
|
71
|
+
<artifactId>sqljet</artifactId>
|
|
72
|
+
<version>1.1.13</version>
|
|
73
|
+
</dependency>
|
|
74
|
+
<dependency>
|
|
75
|
+
<groupId>org.cyclonedx</groupId>
|
|
76
|
+
<artifactId>cyclonedx-core-java</artifactId>
|
|
77
|
+
<version>5.0.4</version>
|
|
78
|
+
</dependency>
|
|
79
|
+
<dependency>
|
|
80
|
+
<groupId>org.apache.poi</groupId>
|
|
81
|
+
<artifactId>poi</artifactId>
|
|
82
|
+
<version>3.8</version>
|
|
83
|
+
</dependency>
|
|
84
|
+
<dependency>
|
|
85
|
+
<groupId>com.github.weisj</groupId>
|
|
86
|
+
<artifactId>darklaf-core</artifactId>
|
|
87
|
+
<version>2.7.2</version>
|
|
88
|
+
</dependency>
|
|
89
|
+
<dependency>
|
|
90
|
+
<groupId>org.apache.poi</groupId>
|
|
91
|
+
<artifactId>poi-ooxml</artifactId>
|
|
92
|
+
<version>3.8</version>
|
|
93
|
+
<type>jar</type>
|
|
94
|
+
</dependency>
|
|
95
|
+
<dependency>
|
|
96
|
+
<groupId>org.junit.jupiter</groupId>
|
|
97
|
+
<artifactId>junit-jupiter-api</artifactId>
|
|
98
|
+
<version>5.6.0</version>
|
|
99
|
+
<scope>test</scope>
|
|
100
|
+
</dependency>
|
|
101
|
+
<dependency>
|
|
102
|
+
<groupId>org.junit.jupiter</groupId>
|
|
103
|
+
<artifactId>junit-jupiter-params</artifactId>
|
|
104
|
+
<version>5.6.0</version>
|
|
105
|
+
<scope>test</scope>
|
|
106
|
+
</dependency>
|
|
107
|
+
<dependency>
|
|
108
|
+
<groupId>org.junit.jupiter</groupId>
|
|
109
|
+
<artifactId>junit-jupiter-engine</artifactId>
|
|
110
|
+
<version>5.6.0</version>
|
|
111
|
+
<scope>test</scope>
|
|
112
|
+
</dependency>
|
|
113
|
+
<dependency>
|
|
114
|
+
<groupId>org.apache.commons</groupId>
|
|
115
|
+
<artifactId>commons-lang3</artifactId>
|
|
116
|
+
<version>3.1</version>
|
|
117
|
+
<type>jar</type>
|
|
118
|
+
</dependency>
|
|
119
|
+
<dependency>
|
|
120
|
+
<groupId>com.google.code.gson</groupId>
|
|
121
|
+
<artifactId>gson</artifactId>
|
|
122
|
+
<version>2.5</version>
|
|
123
|
+
</dependency>
|
|
124
|
+
<dependency>
|
|
125
|
+
<groupId>org.spdx</groupId>
|
|
126
|
+
<artifactId>tools-java</artifactId>
|
|
127
|
+
<version>1.0.2</version>
|
|
128
|
+
</dependency>
|
|
129
|
+
<dependency>
|
|
130
|
+
<groupId>net.openhft</groupId>
|
|
131
|
+
<artifactId>compiler</artifactId>
|
|
132
|
+
<version>2.4.1</version>
|
|
133
|
+
</dependency>
|
|
134
|
+
<dependency>
|
|
135
|
+
<groupId>gov.nist.secauto.swid</groupId>
|
|
136
|
+
<artifactId>swid-builder</artifactId>
|
|
137
|
+
<version>0.6.1</version>
|
|
138
|
+
</dependency>
|
|
139
|
+
<dependency>
|
|
140
|
+
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
141
|
+
<artifactId>jackson-dataformat-xml</artifactId>
|
|
142
|
+
<version>2.11.1</version>
|
|
143
|
+
</dependency>
|
|
144
|
+
<dependency>
|
|
145
|
+
<groupId>org.jsoup</groupId>
|
|
146
|
+
<artifactId>jsoup</artifactId>
|
|
147
|
+
<version>1.12.1</version>
|
|
148
|
+
</dependency>
|
|
149
|
+
<dependency>
|
|
150
|
+
<groupId>info.picocli</groupId>
|
|
151
|
+
<artifactId>picocli</artifactId>
|
|
152
|
+
<version>4.6.2</version>
|
|
153
|
+
</dependency>
|
|
154
|
+
</dependencies>
|
|
155
|
+
<properties>
|
|
156
|
+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
157
|
+
<maven.compiler.source>1.8</maven.compiler.source>
|
|
158
|
+
<maven.compiler.target>1.8</maven.compiler.target>
|
|
159
|
+
</properties>
|
|
160
|
+
<name>Orcus</name>
|
|
161
|
+
<description>Tool for importing and producing OSS-compliant documentation</description>
|
|
162
|
+
</project>
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
2
|
+
# yarn lockfile v1
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
abbrev@1:
|
|
6
|
+
version "1.0.9"
|
|
7
|
+
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135"
|
|
8
|
+
|
|
9
|
+
ansi-align@^1.1.0:
|
|
10
|
+
version "1.1.0"
|
|
11
|
+
resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-1.1.0.tgz#2f0c1658829739add5ebb15e6b0c6e3423f016ba"
|
|
12
|
+
dependencies:
|
|
13
|
+
string-width "^1.0.1"
|
|
14
|
+
|
|
15
|
+
are-we-there-yet@~1.1.2:
|
|
16
|
+
version "1.1.2"
|
|
17
|
+
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3"
|
|
18
|
+
dependencies:
|
|
19
|
+
delegates "^1.0.0"
|
|
20
|
+
readable-stream "^2.0.0 || ^1.1.13"
|
|
21
|
+
|
|
22
|
+
arr-diff@^2.0.0:
|
|
23
|
+
version "2.0.0"
|
|
24
|
+
resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
|
|
25
|
+
dependencies:
|
|
26
|
+
arr-flatten "^1.0.1"
|
|
27
|
+
|
|
28
|
+
babel-helper-function-name@^6.18.0, babel-helper-function-name@^6.8.0:
|
|
29
|
+
version "6.18.0"
|
|
30
|
+
resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz#68ec71aeba1f3e28b2a6f0730190b754a9bf30e6"
|
|
31
|
+
dependencies:
|
|
32
|
+
babel-helper-get-function-arity "^6.18.0"
|
|
33
|
+
babel-traverse "^6.18.0"
|
|
34
|
+
babel-types "^6.18.0"
|
|
35
|
+
|
|
36
|
+
rimraf@2, rimraf@~2.5.1, rimraf@~2.5.4:
|
|
37
|
+
version "2.5.4"
|
|
38
|
+
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04"
|
|
39
|
+
dependencies:
|
|
40
|
+
glob "^7.0.5"
|
|
41
|
+
|
|
42
|
+
semver-diff@^2.0.0:
|
|
43
|
+
version "2.1.0"
|
|
44
|
+
resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"
|
|
45
|
+
dependencies:
|
|
46
|
+
semver "^5.0.3"
|
|
47
|
+
|
|
48
|
+
"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@~5.3.0:
|
|
49
|
+
version "5.3.0"
|
|
50
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"file": "yarn.lock",
|
|
3
|
+
"purls": [
|
|
4
|
+
{"purl":"pkg:npm/abbrev@1.0.9","requirement":"1"},
|
|
5
|
+
{"purl":"pkg:npm/ansi-align@1.1.0","requirement":"^1.1.0"},
|
|
6
|
+
{"purl":"pkg:npm/are-we-there-yet@1.1.2","requirement":"~1.1.2"},
|
|
7
|
+
{"purl":"pkg:npm/arr-diff@2.0.0","requirement":"^2.0.0"},
|
|
8
|
+
{"purl":"pkg:npm/babel-helper-function-name@6.18.0","requirement":"^6.18.0, ^6.8.0"},
|
|
9
|
+
{"purl":"pkg:npm/rimraf@2.5.4","requirement":"2, ~2.5.1, ~2.5.4"},
|
|
10
|
+
{"purl":"pkg:npm/semver-diff@2.1.0","requirement":"^2.0.0"},
|
|
11
|
+
{"purl":"pkg:npm/semver@5.3.0","requirement":"2 || 3 || 4 || 5, ^5.0.3, ^5.1.0, ^5.3.0, ~5.3.0"}
|
|
12
|
+
]
|
|
13
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
2
|
+
# yarn lockfile v1
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
"@babel/code-frame@^7.0.0":
|
|
6
|
+
version "7.0.0"
|
|
7
|
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"
|
|
8
|
+
integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==
|
|
9
|
+
dependencies:
|
|
10
|
+
"@babel/highlight" "^7.0.0"
|
|
11
|
+
|
|
12
|
+
"@babel/core@^7.1.0", "@babel/core@^7.3.4":
|
|
13
|
+
version "7.3.4"
|
|
14
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.3.4.tgz#921a5a13746c21e32445bf0798680e9d11a6530b"
|
|
15
|
+
integrity sha512-jRsuseXBo9pN197KnDwhhaaBzyZr2oIcLHHTt2oDdQrej5Qp57dCCJafWx5ivU8/alEYDpssYqv1MUqcxwQlrA==
|
|
16
|
+
dependencies:
|
|
17
|
+
"@babel/code-frame" "^7.0.0"
|
|
18
|
+
"@babel/generator" "^7.3.4"
|
|
19
|
+
"@babel/types" "^7.3.4"
|
|
20
|
+
source-map "^0.5.0"
|
|
21
|
+
|
|
22
|
+
"@babel/helper-annotate-as-pure@^7.0.0":
|
|
23
|
+
version "7.0.0"
|
|
24
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32"
|
|
25
|
+
integrity sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q==
|
|
26
|
+
dependencies:
|
|
27
|
+
"@babel/types" "^7.0.0"
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"file": "yarn.lock",
|
|
3
|
+
"purls": [
|
|
4
|
+
{"purl":"pkg:npm/%40babel/code-frame@7.0.0","requirement":"^7.0.0"},
|
|
5
|
+
{"purl":"pkg:npm/%40babel/core@7.3.4","requirement":"^7.1.0, ^7.3.4"},
|
|
6
|
+
{"purl":"pkg:npm/%40babel/helper-annotate-as-pure@7.0.0","requirement":"^7.0.0"}
|
|
7
|
+
]
|
|
8
|
+
}
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
2
|
+
# yarn lockfile v1
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
ansi-regex@^3.0.0:
|
|
6
|
+
version "3.0.1"
|
|
7
|
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1"
|
|
8
|
+
integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==
|
|
9
|
+
|
|
10
|
+
ansi-regex@^5.0.1:
|
|
11
|
+
version "5.0.1"
|
|
12
|
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
|
|
13
|
+
integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
|
|
14
|
+
|
|
15
|
+
ansi-styles@^4.0.0:
|
|
16
|
+
version "4.3.0"
|
|
17
|
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
|
|
18
|
+
integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
|
|
19
|
+
dependencies:
|
|
20
|
+
color-convert "^2.0.1"
|
|
21
|
+
|
|
22
|
+
camelcase@^5.0.0:
|
|
23
|
+
version "5.3.1"
|
|
24
|
+
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
|
|
25
|
+
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
|
|
26
|
+
|
|
27
|
+
cliui@^6.0.0:
|
|
28
|
+
version "6.0.0"
|
|
29
|
+
resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
|
|
30
|
+
integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
|
|
31
|
+
dependencies:
|
|
32
|
+
string-width "^4.2.0"
|
|
33
|
+
strip-ansi "^6.0.0"
|
|
34
|
+
wrap-ansi "^6.2.0"
|
|
35
|
+
|
|
36
|
+
color-convert@^2.0.1:
|
|
37
|
+
version "2.0.1"
|
|
38
|
+
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
|
|
39
|
+
integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
|
|
40
|
+
dependencies:
|
|
41
|
+
color-name "~1.1.4"
|
|
42
|
+
|
|
43
|
+
color-name@~1.1.4:
|
|
44
|
+
version "1.1.4"
|
|
45
|
+
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
|
46
|
+
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
|
47
|
+
|
|
48
|
+
cowsay@^1.5.0:
|
|
49
|
+
version "1.5.0"
|
|
50
|
+
resolved "https://registry.yarnpkg.com/cowsay/-/cowsay-1.5.0.tgz#4a2a453b8b59383c7d7a50e44d765c5de0bf615f"
|
|
51
|
+
integrity sha512-8Ipzr54Z8zROr/62C8f0PdhQcDusS05gKTS87xxdji8VbWefWly0k8BwGK7+VqamOrkv3eGsCkPtvlHzrhWsCA==
|
|
52
|
+
dependencies:
|
|
53
|
+
get-stdin "8.0.0"
|
|
54
|
+
string-width "~2.1.1"
|
|
55
|
+
strip-final-newline "2.0.0"
|
|
56
|
+
yargs "15.4.1"
|
|
57
|
+
|
|
58
|
+
decamelize@^1.2.0:
|
|
59
|
+
version "1.2.0"
|
|
60
|
+
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
|
|
61
|
+
integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==
|
|
62
|
+
|
|
63
|
+
emoji-regex@^8.0.0:
|
|
64
|
+
version "8.0.0"
|
|
65
|
+
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
|
|
66
|
+
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
|
|
67
|
+
|
|
68
|
+
find-up@^4.1.0:
|
|
69
|
+
version "4.1.0"
|
|
70
|
+
resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
|
|
71
|
+
integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
|
|
72
|
+
dependencies:
|
|
73
|
+
locate-path "^5.0.0"
|
|
74
|
+
path-exists "^4.0.0"
|
|
75
|
+
|
|
76
|
+
get-caller-file@^2.0.1:
|
|
77
|
+
version "2.0.5"
|
|
78
|
+
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
|
|
79
|
+
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
|
|
80
|
+
|
|
81
|
+
get-stdin@8.0.0:
|
|
82
|
+
version "8.0.0"
|
|
83
|
+
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53"
|
|
84
|
+
integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==
|
|
85
|
+
|
|
86
|
+
is-fullwidth-code-point@^2.0.0:
|
|
87
|
+
version "2.0.0"
|
|
88
|
+
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
|
|
89
|
+
integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==
|
|
90
|
+
|
|
91
|
+
is-fullwidth-code-point@^3.0.0:
|
|
92
|
+
version "3.0.0"
|
|
93
|
+
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
|
|
94
|
+
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
|
|
95
|
+
|
|
96
|
+
locate-path@^5.0.0:
|
|
97
|
+
version "5.0.0"
|
|
98
|
+
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
|
|
99
|
+
integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
|
|
100
|
+
dependencies:
|
|
101
|
+
p-locate "^4.1.0"
|
|
102
|
+
|
|
103
|
+
p-limit@^2.2.0:
|
|
104
|
+
version "2.3.0"
|
|
105
|
+
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
|
|
106
|
+
integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
|
|
107
|
+
dependencies:
|
|
108
|
+
p-try "^2.0.0"
|
|
109
|
+
|
|
110
|
+
p-locate@^4.1.0:
|
|
111
|
+
version "4.1.0"
|
|
112
|
+
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
|
|
113
|
+
integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
|
|
114
|
+
dependencies:
|
|
115
|
+
p-limit "^2.2.0"
|
|
116
|
+
|
|
117
|
+
p-try@^2.0.0:
|
|
118
|
+
version "2.2.0"
|
|
119
|
+
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
|
|
120
|
+
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
|
|
121
|
+
|
|
122
|
+
path-exists@^4.0.0:
|
|
123
|
+
version "4.0.0"
|
|
124
|
+
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
|
|
125
|
+
integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
|
|
126
|
+
|
|
127
|
+
require-directory@^2.1.1:
|
|
128
|
+
version "2.1.1"
|
|
129
|
+
resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
|
|
130
|
+
integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==
|
|
131
|
+
|
|
132
|
+
require-main-filename@^2.0.0:
|
|
133
|
+
version "2.0.0"
|
|
134
|
+
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
|
|
135
|
+
integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
|
|
136
|
+
|
|
137
|
+
set-blocking@^2.0.0:
|
|
138
|
+
version "2.0.0"
|
|
139
|
+
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
|
|
140
|
+
integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==
|
|
141
|
+
|
|
142
|
+
string-width@^4.1.0, string-width@^4.2.0:
|
|
143
|
+
version "4.2.3"
|
|
144
|
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
|
|
145
|
+
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
|
|
146
|
+
dependencies:
|
|
147
|
+
emoji-regex "^8.0.0"
|
|
148
|
+
is-fullwidth-code-point "^3.0.0"
|
|
149
|
+
strip-ansi "^6.0.1"
|
|
150
|
+
|
|
151
|
+
string-width@~2.1.1:
|
|
152
|
+
version "2.1.1"
|
|
153
|
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
|
|
154
|
+
integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
|
|
155
|
+
dependencies:
|
|
156
|
+
is-fullwidth-code-point "^2.0.0"
|
|
157
|
+
strip-ansi "^4.0.0"
|
|
158
|
+
|
|
159
|
+
strip-ansi@^4.0.0:
|
|
160
|
+
version "4.0.0"
|
|
161
|
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
|
|
162
|
+
integrity sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==
|
|
163
|
+
dependencies:
|
|
164
|
+
ansi-regex "^3.0.0"
|
|
165
|
+
|
|
166
|
+
strip-ansi@^6.0.0, strip-ansi@^6.0.1:
|
|
167
|
+
version "6.0.1"
|
|
168
|
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
|
|
169
|
+
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
|
|
170
|
+
dependencies:
|
|
171
|
+
ansi-regex "^5.0.1"
|
|
172
|
+
|
|
173
|
+
strip-final-newline@2.0.0:
|
|
174
|
+
version "2.0.0"
|
|
175
|
+
resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
|
|
176
|
+
integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
|
|
177
|
+
|
|
178
|
+
which-module@^2.0.0:
|
|
179
|
+
version "2.0.0"
|
|
180
|
+
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
|
|
181
|
+
integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==
|
|
182
|
+
|
|
183
|
+
wrap-ansi@^6.2.0:
|
|
184
|
+
version "6.2.0"
|
|
185
|
+
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
|
|
186
|
+
integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
|
|
187
|
+
dependencies:
|
|
188
|
+
ansi-styles "^4.0.0"
|
|
189
|
+
string-width "^4.1.0"
|
|
190
|
+
strip-ansi "^6.0.0"
|
|
191
|
+
|
|
192
|
+
y18n@^4.0.0:
|
|
193
|
+
version "4.0.3"
|
|
194
|
+
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf"
|
|
195
|
+
integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==
|
|
196
|
+
|
|
197
|
+
yargs-parser@^18.1.2:
|
|
198
|
+
version "18.1.3"
|
|
199
|
+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
|
|
200
|
+
integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
|
|
201
|
+
dependencies:
|
|
202
|
+
camelcase "^5.0.0"
|
|
203
|
+
decamelize "^1.2.0"
|
|
204
|
+
|
|
205
|
+
yargs@15.4.1:
|
|
206
|
+
version "15.4.1"
|
|
207
|
+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
|
|
208
|
+
integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
|
|
209
|
+
dependencies:
|
|
210
|
+
cliui "^6.0.0"
|
|
211
|
+
decamelize "^1.2.0"
|
|
212
|
+
find-up "^4.1.0"
|
|
213
|
+
get-caller-file "^2.0.1"
|
|
214
|
+
require-directory "^2.1.1"
|
|
215
|
+
require-main-filename "^2.0.0"
|
|
216
|
+
set-blocking "^2.0.0"
|
|
217
|
+
string-width "^4.2.0"
|
|
218
|
+
which-module "^2.0.0"
|
|
219
|
+
y18n "^4.0.0"
|
|
220
|
+
yargs-parser "^18.1.2"
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# This file is generated by running "yarn install" inside your project.
|
|
2
|
+
# Manual changes might be lost - proceed with caution!
|
|
3
|
+
|
|
4
|
+
__metadata:
|
|
5
|
+
version: 6
|
|
6
|
+
cacheKey: 9
|
|
7
|
+
|
|
8
|
+
"@actions/core@npm:^1.2.6":
|
|
9
|
+
version: 1.2.6
|
|
10
|
+
resolution: "@actions/core@npm:1.2.6"
|
|
11
|
+
checksum: 034e57fcb5f944d5fb0ef55be1b212dd88e23d1a50aaffda874cb94e8f4bfa633a66f108f26e81a7cce287cd2b349aa88c97d2023135c8879495326db37a7feb
|
|
12
|
+
languageName: node
|
|
13
|
+
linkType: hard
|
|
14
|
+
|
|
15
|
+
"@babel/cli@npm:^7.10.1":
|
|
16
|
+
version: 7.10.1
|
|
17
|
+
resolution: "@babel/cli@npm:7.10.1"
|
|
18
|
+
dependencies:
|
|
19
|
+
chokidar: ^2.1.8
|
|
20
|
+
source-map: ^0.5.0
|
|
21
|
+
peerDependencies:
|
|
22
|
+
"@babel/core": ^7.0.0-0
|
|
23
|
+
dependenciesMeta:
|
|
24
|
+
chokidar:
|
|
25
|
+
optional: true
|
|
26
|
+
bin:
|
|
27
|
+
babel: ./bin/babel.js
|
|
28
|
+
babel-external-helpers: ./bin/babel-external-helpers.js
|
|
29
|
+
checksum: a2f9d52e2f866c4c6e5c4fdb4e64820ebbc6acb2aeaeac3e4d97cee16054684f015f253a6f036a2065729a520e595da085cf476501d3bc279d50ffc0dc891641
|
|
30
|
+
languageName: node
|
|
31
|
+
linkType: hard
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "npm",
|
|
4
|
+
"namespace": null,
|
|
5
|
+
"name": null,
|
|
6
|
+
"version": null,
|
|
7
|
+
"qualifiers": {},
|
|
8
|
+
"subpath": null,
|
|
9
|
+
"primary_language": "JavaScript",
|
|
10
|
+
"description": null,
|
|
11
|
+
"release_date": null,
|
|
12
|
+
"parties": [],
|
|
13
|
+
"keywords": [],
|
|
14
|
+
"homepage_url": null,
|
|
15
|
+
"download_url": null,
|
|
16
|
+
"size": null,
|
|
17
|
+
"sha1": null,
|
|
18
|
+
"md5": null,
|
|
19
|
+
"sha256": null,
|
|
20
|
+
"sha512": null,
|
|
21
|
+
"bug_tracking_url": null,
|
|
22
|
+
"code_view_url": null,
|
|
23
|
+
"vcs_url": null,
|
|
24
|
+
"copyright": null,
|
|
25
|
+
"license_expression": null,
|
|
26
|
+
"declared_license": null,
|
|
27
|
+
"notice_text": null,
|
|
28
|
+
"source_packages": [],
|
|
29
|
+
"file_references": [],
|
|
30
|
+
"extra_data": {},
|
|
31
|
+
"dependencies": [
|
|
32
|
+
{
|
|
33
|
+
"purl": "pkg:npm/%40actions/core@1.2.6",
|
|
34
|
+
"extracted_requirement": "1.2.6",
|
|
35
|
+
"scope": "dependencies",
|
|
36
|
+
"is_runtime": true,
|
|
37
|
+
"is_optional": false,
|
|
38
|
+
"is_resolved": true,
|
|
39
|
+
"resolved_package": {}
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"purl": "pkg:npm/%40babel/cli@7.10.1",
|
|
43
|
+
"extracted_requirement": "7.10.1",
|
|
44
|
+
"scope": "dependencies",
|
|
45
|
+
"is_runtime": true,
|
|
46
|
+
"is_optional": false,
|
|
47
|
+
"is_resolved": true,
|
|
48
|
+
"resolved_package": {}
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"repository_homepage_url": null,
|
|
52
|
+
"repository_download_url": null,
|
|
53
|
+
"api_data_url": null,
|
|
54
|
+
"datasource_id": "yarn_lock_v2",
|
|
55
|
+
"purl": null
|
|
56
|
+
}
|
|
57
|
+
]
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# This file is generated by running "yarn install" inside your project.
|
|
2
|
+
# Manual changes might be lost - proceed with caution!
|
|
3
|
+
|
|
4
|
+
__metadata:
|
|
5
|
+
version: 5
|
|
6
|
+
|
|
7
|
+
"bookmarkmap@workspace:.":
|
|
8
|
+
version: 0.0.0-use.local
|
|
9
|
+
resolution: "bookmarkmap@workspace:."
|
|
10
|
+
languageName: unknown
|
|
11
|
+
linkType: soft
|