license_scout 0.1.3 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.md +13 -5
- data/bin/license_scout +39 -1
- data/bin/rebar_lock_json +0 -0
- data/erl_src/rebar_lock_json/README.md +17 -0
- data/erl_src/rebar_lock_json/rebar.config +19 -0
- data/erl_src/rebar_lock_json/rebar.lock +36 -0
- data/erl_src/rebar_lock_json/src/rebar_lock_json.app.src +17 -0
- data/erl_src/rebar_lock_json/src/rebar_lock_json.erl +20 -0
- data/lib/license_scout/canonical_licenses/BSD-2-Clause.txt +19 -0
- data/lib/license_scout/canonical_licenses/BSD-3-Clause.txt +27 -0
- data/lib/license_scout/canonical_licenses/Chef-MLSA.txt +5 -0
- data/lib/license_scout/collector.rb +1 -1
- data/lib/license_scout/dependency_manager/base.rb +8 -1
- data/lib/license_scout/dependency_manager/berkshelf.rb +1 -1
- data/lib/license_scout/dependency_manager/bundler.rb +1 -1
- data/lib/license_scout/dependency_manager/cpanm.rb +160 -0
- data/lib/license_scout/dependency_manager/dep.rb +87 -0
- data/lib/license_scout/dependency_manager/glide.rb +79 -0
- data/lib/license_scout/dependency_manager/godep.rb +71 -0
- data/lib/license_scout/dependency_manager/rebar.rb +6 -35
- data/lib/license_scout/dependency_manager.rb +5 -2
- data/lib/license_scout/license_file_analyzer/definitions.rb +8 -1
- data/lib/license_scout/license_file_analyzer/templates/Apache2.txt +0 -2
- data/lib/license_scout/license_file_analyzer/templates/Chef-MLSA.txt +5 -0
- data/lib/license_scout/net_fetcher.rb +1 -0
- data/lib/license_scout/options.rb +1 -1
- data/lib/license_scout/overrides.rb +553 -19
- data/lib/license_scout/version.rb +1 -1
- metadata +45 -13
- data/.gitignore +0 -9
- data/.rspec +0 -3
- data/.rubocop.yml +0 -4
- data/.travis.yml +0 -11
- data/Gemfile +0 -24
- data/Rakefile +0 -39
- data/appveyor.yml +0 -19
- data/bin/config_to_json +0 -0
- data/lib/license_scout/dependency_manager/cpan.rb +0 -322
- data/license_scout.gemspec +0 -54
@@ -1,5 +1,4 @@
|
|
1
1
|
#
|
2
|
-
|
3
2
|
# Copyright:: Copyright 2016, Chef Software Inc.
|
4
3
|
# License:: Apache License, Version 2.0
|
5
4
|
#
|
@@ -47,7 +46,7 @@ module LicenseScout
|
|
47
46
|
|
48
47
|
def normalize_and_verify_path(license_location, dependency_root_dir)
|
49
48
|
full_path = File.expand_path(license_location, dependency_root_dir)
|
50
|
-
if File.
|
49
|
+
if File.exist?(full_path)
|
51
50
|
full_path
|
52
51
|
else
|
53
52
|
raise Exceptions::InvalidOverride, "Provided license file path '#{license_location}' can not be found under detected dependency path '#{dependency_root_dir}'."
|
@@ -96,12 +95,153 @@ module LicenseScout
|
|
96
95
|
end
|
97
96
|
|
98
97
|
def default_overrides
|
98
|
+
# AWS Ruby SDK
|
99
|
+
aws_sdk_gems = %w{
|
100
|
+
aws-partitions
|
101
|
+
aws-sdk
|
102
|
+
aws-sdk-acm
|
103
|
+
aws-sdk-alexaforbusiness
|
104
|
+
aws-sdk-apigateway
|
105
|
+
aws-sdk-applicationautoscaling
|
106
|
+
aws-sdk-applicationdiscoveryservice
|
107
|
+
aws-sdk-appstream
|
108
|
+
aws-sdk-appsync
|
109
|
+
aws-sdk-athena
|
110
|
+
aws-sdk-autoscaling
|
111
|
+
aws-sdk-batch
|
112
|
+
aws-sdk-budgets
|
113
|
+
aws-sdk-cloud9
|
114
|
+
aws-sdk-clouddirectory
|
115
|
+
aws-sdk-cloudformation
|
116
|
+
aws-sdk-cloudfront
|
117
|
+
aws-sdk-cloudhsm
|
118
|
+
aws-sdk-cloudhsmv2
|
119
|
+
aws-sdk-cloudsearch
|
120
|
+
aws-sdk-cloudsearchdomain
|
121
|
+
aws-sdk-cloudtrail
|
122
|
+
aws-sdk-cloudwatch
|
123
|
+
aws-sdk-cloudwatchevents
|
124
|
+
aws-sdk-cloudwatchlogs
|
125
|
+
aws-sdk-codebuild
|
126
|
+
aws-sdk-codecommit
|
127
|
+
aws-sdk-codedeploy
|
128
|
+
aws-sdk-codepipeline
|
129
|
+
aws-sdk-codestar
|
130
|
+
aws-sdk-cognitoidentity
|
131
|
+
aws-sdk-cognitoidentityprovider
|
132
|
+
aws-sdk-cognitosync
|
133
|
+
aws-sdk-comprehend
|
134
|
+
aws-sdk-configservice
|
135
|
+
aws-sdk-core
|
136
|
+
aws-sdk-costandusagereportservice
|
137
|
+
aws-sdk-costexplorer
|
138
|
+
aws-sdk-databasemigrationservice
|
139
|
+
aws-sdk-datapipeline
|
140
|
+
aws-sdk-dax
|
141
|
+
aws-sdk-devicefarm
|
142
|
+
aws-sdk-directconnect
|
143
|
+
aws-sdk-directoryservice
|
144
|
+
aws-sdk-dynamodb
|
145
|
+
aws-sdk-dynamodbstreams
|
146
|
+
aws-sdk-ec2
|
147
|
+
aws-sdk-ecr
|
148
|
+
aws-sdk-ecs
|
149
|
+
aws-sdk-efs
|
150
|
+
aws-sdk-elasticache
|
151
|
+
aws-sdk-elasticbeanstalk
|
152
|
+
aws-sdk-elasticloadbalancing
|
153
|
+
aws-sdk-elasticloadbalancingv2
|
154
|
+
aws-sdk-elasticsearchservice
|
155
|
+
aws-sdk-elastictranscoder
|
156
|
+
aws-sdk-emr
|
157
|
+
aws-sdk-firehose
|
158
|
+
aws-sdk-gamelift
|
159
|
+
aws-sdk-glacier
|
160
|
+
aws-sdk-glue
|
161
|
+
aws-sdk-greengrass
|
162
|
+
aws-sdk-guardduty
|
163
|
+
aws-sdk-health
|
164
|
+
aws-sdk-iam
|
165
|
+
aws-sdk-importexport
|
166
|
+
aws-sdk-inspector
|
167
|
+
aws-sdk-iot
|
168
|
+
aws-sdk-iotdataplane
|
169
|
+
aws-sdk-iotjobsdataplane
|
170
|
+
aws-sdk-kinesis
|
171
|
+
aws-sdk-kinesisanalytics
|
172
|
+
aws-sdk-kinesisvideo
|
173
|
+
aws-sdk-kinesisvideoarchivedmedia
|
174
|
+
aws-sdk-kinesisvideomedia
|
175
|
+
aws-sdk-kms
|
176
|
+
aws-sdk-lambda
|
177
|
+
aws-sdk-lambdapreview
|
178
|
+
aws-sdk-lex
|
179
|
+
aws-sdk-lexmodelbuildingservice
|
180
|
+
aws-sdk-lexruntimeservice
|
181
|
+
aws-sdk-lightsail
|
182
|
+
aws-sdk-machinelearning
|
183
|
+
aws-sdk-marketplacecommerceanalytics
|
184
|
+
aws-sdk-marketplaceentitlementservice
|
185
|
+
aws-sdk-marketplacemetering
|
186
|
+
aws-sdk-mediaconvert
|
187
|
+
aws-sdk-medialive
|
188
|
+
aws-sdk-mediapackage
|
189
|
+
aws-sdk-mediastore
|
190
|
+
aws-sdk-mediastoredata
|
191
|
+
aws-sdk-migrationhub
|
192
|
+
aws-sdk-mobile
|
193
|
+
aws-sdk-mq
|
194
|
+
aws-sdk-mturk
|
195
|
+
aws-sdk-opsworks
|
196
|
+
aws-sdk-opsworkscm
|
197
|
+
aws-sdk-organizations
|
198
|
+
aws-sdk-pinpoint
|
199
|
+
aws-sdk-polly
|
200
|
+
aws-sdk-pricing
|
201
|
+
aws-sdk-rds
|
202
|
+
aws-sdk-redshift
|
203
|
+
aws-sdk-rekognition
|
204
|
+
aws-sdk-resourcegroups
|
205
|
+
aws-sdk-resourcegroupstaggingapi
|
206
|
+
aws-sdk-resources
|
207
|
+
aws-sdk-route53
|
208
|
+
aws-sdk-route53domains
|
209
|
+
aws-sdk-s3
|
210
|
+
aws-sdk-sagemaker
|
211
|
+
aws-sdk-sagemakerruntime
|
212
|
+
aws-sdk-serverlessapplicationrepository
|
213
|
+
aws-sdk-servicecatalog
|
214
|
+
aws-sdk-servicediscovery
|
215
|
+
aws-sdk-ses
|
216
|
+
aws-sdk-sfn
|
217
|
+
aws-sdk-shield
|
218
|
+
aws-sdk-simpledb
|
219
|
+
aws-sdk-sms
|
220
|
+
aws-sdk-snowball
|
221
|
+
aws-sdk-sns
|
222
|
+
aws-sdk-sqs
|
223
|
+
aws-sdk-ssm
|
224
|
+
aws-sdk-states
|
225
|
+
aws-sdk-storagegateway
|
226
|
+
aws-sdk-support
|
227
|
+
aws-sdk-swf
|
228
|
+
aws-sdk-translate
|
229
|
+
aws-sdk-waf
|
230
|
+
aws-sdk-wafregional
|
231
|
+
aws-sdk-workdocs
|
232
|
+
aws-sdk-workspaces
|
233
|
+
aws-sdk-xray
|
234
|
+
aws-sigv2
|
235
|
+
aws-sigv4
|
236
|
+
}.map { |aws_gem| [ aws_gem, nil, ["https://raw.githubusercontent.com/aws/aws-sdk-ruby/master/LICENSE.txt"] ] }
|
237
|
+
|
99
238
|
# Default overrides for ruby_bundler dependency manager.
|
100
|
-
[
|
239
|
+
other_gems = [
|
101
240
|
["debug_inspector", "MIT", ["README.md"]],
|
102
241
|
["inifile", "MIT", ["README.md"]],
|
103
242
|
["syslog-logger", "MIT", ["README.rdoc"]],
|
104
243
|
["httpclient", "Ruby", ["README.md"]],
|
244
|
+
["jsonschema", "MIT", ["README.rdoc"]],
|
105
245
|
["little-plugger", "MIT", ["README.rdoc"]],
|
106
246
|
["logging", "MIT", ["README.md"]],
|
107
247
|
["coderay", nil, ["README_INDEX.rdoc"]],
|
@@ -133,6 +273,10 @@ module LicenseScout
|
|
133
273
|
["reel", "MIT", nil],
|
134
274
|
["spork", "MIT", nil],
|
135
275
|
["rack-test", "MIT", nil],
|
276
|
+
["rework", "MIT", ["Readme.md"]],
|
277
|
+
["rework-visit", "MIT", ["Readme.md"]],
|
278
|
+
["source-map-resolve", "MIT", ["LICENSE"]],
|
279
|
+
["source-map-url", "MIT", ["LICENSE"]],
|
136
280
|
["moneta", "MIT", nil],
|
137
281
|
["mixlib-authentication", "Apache-2.0", nil],
|
138
282
|
["mixlib-cli", "Apache-2.0", nil],
|
@@ -142,12 +286,16 @@ module LicenseScout
|
|
142
286
|
["systemu", "BSD-2-Clause", nil],
|
143
287
|
["pry", "MIT", nil],
|
144
288
|
["puma", "BSD-3-Clause", nil],
|
145
|
-
["rb-inotify", "MIT",
|
289
|
+
["rb-inotify", "MIT", ["README.md"]],
|
146
290
|
["chef-web-core", "Apache-2.0", nil],
|
147
291
|
["knife-opc", "Apache-2.0", nil],
|
148
292
|
["highline", "Ruby", ["LICENSE"]],
|
149
293
|
["unicorn", "Ruby", ["LICENSE"]],
|
150
294
|
["winrm-fs", "Apache-2.0", nil],
|
295
|
+
["codecov", "MIT", ["https://raw.githubusercontent.com/codecov/codecov-ruby/master/LICENSE.txt"]],
|
296
|
+
["net-http-persistent", "MIT", ["README.rdoc"]],
|
297
|
+
["net-http-pipeline", "MIT", ["README.txt"]],
|
298
|
+
["websocket", "MIT", ["README.md"]],
|
151
299
|
# Overrides that require file fetching from internet
|
152
300
|
["sfl", "Ruby", ["https://raw.githubusercontent.com/ujihisa/spawn-for-legacy/master/LICENCE.md"]],
|
153
301
|
["json_pure", nil, ["https://raw.githubusercontent.com/flori/json/master/README.md"]],
|
@@ -155,7 +303,7 @@ module LicenseScout
|
|
155
303
|
["aws-sdk-resources", nil, ["https://raw.githubusercontent.com/aws/aws-sdk-ruby/master/README.md"]],
|
156
304
|
["aws-sdk", nil, ["https://raw.githubusercontent.com/aws/aws-sdk-ruby/master/README.md"]],
|
157
305
|
["fuzzyurl", nil, ["https://raw.githubusercontent.com/gamache/fuzzyurl/master/LICENSE.txt"]],
|
158
|
-
["jwt", nil, ["https://
|
306
|
+
["jwt", nil, ["https://raw.githubusercontent.com/jwt/ruby-jwt/master/LICENSE"]],
|
159
307
|
["win32-process", nil, ["http://www.perlfoundation.org/attachment/legal/artistic-2_0.txt"]],
|
160
308
|
["win32-api", nil, ["http://www.perlfoundation.org/attachment/legal/artistic-2_0.txt"]],
|
161
309
|
["win32-dir", nil, ["http://www.perlfoundation.org/attachment/legal/artistic-2_0.txt"]],
|
@@ -166,7 +314,7 @@ module LicenseScout
|
|
166
314
|
["win32-mutex", nil, ["http://www.perlfoundation.org/attachment/legal/artistic-2_0.txt"]],
|
167
315
|
["win32-service", nil, ["http://www.perlfoundation.org/attachment/legal/artistic-2_0.txt"]],
|
168
316
|
["windows-api", nil, ["http://www.perlfoundation.org/attachment/legal/artistic-2_0.txt"]],
|
169
|
-
["rdoc", "Ruby", ["https://raw.githubusercontent.com/
|
317
|
+
["rdoc", "Ruby", ["https://raw.githubusercontent.com/ruby/rdoc/master/LICENSE.rdoc"]],
|
170
318
|
["rest-client", "MIT", ["https://raw.githubusercontent.com/rest-client/rest-client/master/LICENSE"]],
|
171
319
|
["rspec-rerun", nil, ["https://raw.githubusercontent.com/dblock/rspec-rerun/master/LICENSE.md"]],
|
172
320
|
["amqp", "Ruby", ["https://raw.githubusercontent.com/ruby-amqp/amqp/master/README.md"]],
|
@@ -195,7 +343,18 @@ module LicenseScout
|
|
195
343
|
["unicorn-rails", "MIT", ["https://raw.githubusercontent.com/samuelkadolph/unicorn-rails/master/LICENSE"]],
|
196
344
|
["hoe", "MIT", ["https://raw.githubusercontent.com/seattlerb/hoe/master/README.rdoc"]],
|
197
345
|
["rubyzip", nil, ["https://raw.githubusercontent.com/rubyzip/rubyzip/master/README.md"]],
|
198
|
-
|
346
|
+
["url", "MIT", ["https://raw.githubusercontent.com/tal/URL/master/LICENSE"]],
|
347
|
+
["mocha", "MIT", ["https://raw.githubusercontent.com/freerange/mocha/master/MIT-LICENSE.md"]],
|
348
|
+
["sslshake", "MPL-2.0", ["https://raw.githubusercontent.com/arlimus/sslshake/master/README.md"]],
|
349
|
+
["inspec-msccm", nil, [canonical("Chef-MLSA")]],
|
350
|
+
["inspec-scap", nil, [canonical("Chef-MLSA")]],
|
351
|
+
["aws-sigv4", "MIT", ["https://raw.githubusercontent.com/cmdrkeene/aws4/master/readme.md"]],
|
352
|
+
["slack-notifier", "MIT", ["https://raw.githubusercontent.com/stevenosloan/slack-notifier/master/LICENSE"]],
|
353
|
+
["parslet", "MIT", ["https://raw.githubusercontent.com/kschiess/parslet/master/LICENSE"]],
|
354
|
+
["blankslate", "MIT", ["https://raw.githubusercontent.com/masover/blankslate/master/MIT-LICENSE"]],
|
355
|
+
["xml-simple", "Ruby", ["https://raw.githubusercontent.com/maik/xml-simple/master/README.md"]],
|
356
|
+
]
|
357
|
+
(aws_sdk_gems + other_gems).each do |override_data|
|
199
358
|
override_license "ruby_bundler", override_data[0] do |version|
|
200
359
|
{}.tap do |d|
|
201
360
|
d[:license] = override_data[1] if override_data[1]
|
@@ -213,6 +372,8 @@ module LicenseScout
|
|
213
372
|
["openssl", nil, ["https://raw.githubusercontent.com/chef-cookbooks/openssl/master/LICENSE"]],
|
214
373
|
["runit", nil, ["https://raw.githubusercontent.com/chef-cookbooks/runit/master/LICENSE"]],
|
215
374
|
["yum", nil, ["https://raw.githubusercontent.com/chef-cookbooks/yum/master/LICENSE"]],
|
375
|
+
["compat_resource", nil, ["https://raw.githubusercontent.com/chef-cookbooks/compat_resource/master/LICENSE"]],
|
376
|
+
["yum-epel", nil, ["https://raw.githubusercontent.com/chef-cookbooks/yum-epel/master/LICENSE"]],
|
216
377
|
].each do |override_data|
|
217
378
|
override_license "chef_berkshelf", override_data[0] do |version|
|
218
379
|
{}.tap do |d|
|
@@ -238,6 +399,7 @@ module LicenseScout
|
|
238
399
|
["base", "Perl-5", ["http://www.perlfoundation.org/attachment/legal/artistic-2_0.txt"]],
|
239
400
|
["Encode", nil, ["AUTHORS"]],
|
240
401
|
["Moo", nil, ["README"]],
|
402
|
+
["Sub-Quote", nil, ["README"]],
|
241
403
|
["Role-Tiny", nil, ["README"]],
|
242
404
|
["Try-Tiny", nil, ["LICENCE"]],
|
243
405
|
["Module-Metadata", nil, ["LICENCE"]],
|
@@ -278,14 +440,26 @@ module LicenseScout
|
|
278
440
|
["Digest-MD5", nil, ["README"]],
|
279
441
|
["Algorithm-Diff", "Perl-5", ["lib/Algorithm/Diff.pm"]],
|
280
442
|
["Encode-Locale", nil, ["README"]],
|
281
|
-
["Hash-Merge", nil, ["README"]],
|
443
|
+
["Hash-Merge", nil, ["README.md"]],
|
282
444
|
["Clone", nil, ["README"]],
|
445
|
+
["Clone-Choose", nil, ["README.md"]],
|
283
446
|
["URI-db", nil, ["README"]],
|
284
447
|
["URI-Nested", nil, ["README.md"]],
|
285
448
|
["Test-utf8", nil, ["README"]],
|
286
|
-
|
449
|
+
["Class-Singleton", "Perl-5", ["README"]],
|
450
|
+
["Devel-PPPort", nil, ["README"]],
|
451
|
+
["Digest-SHA1", nil, ["README"]],
|
452
|
+
["JSON-PP", nil, ["README"]],
|
453
|
+
["MRO-Compat", nil, ["README"]],
|
454
|
+
["MouseX-NativeTraits", nil, ["http://www.perlfoundation.org/attachment/legal/artistic-2_0.txt"]],
|
455
|
+
["MouseX-Types", nil, ["http://www.perlfoundation.org/attachment/legal/artistic-2_0.txt"]],
|
456
|
+
["MouseX-Types-Path-Class", nil, ["http://www.perlfoundation.org/attachment/legal/artistic-2_0.txt"]],
|
457
|
+
["Test-UseAllModules", nil, ["README"]],
|
458
|
+
["Variable-Magic", nil, ["README"]],
|
459
|
+
["Class-Data-Inheritable", nil, ["https://raw.githubusercontent.com/tmtmtmtm/class-data-inheritable/master/README"]],
|
460
|
+
["File-ShareDir", "Perl-5", ["lib/File/ShareDir.pm"]],
|
287
461
|
].each do |override_data|
|
288
|
-
override_license "
|
462
|
+
override_license "perl_cpanm", override_data[0] do |version|
|
289
463
|
{}.tap do |d|
|
290
464
|
d[:license] = override_data[1] if override_data[1]
|
291
465
|
d[:license_files] = override_data[2] if override_data[2]
|
@@ -298,7 +472,7 @@ module LicenseScout
|
|
298
472
|
["sync", "MIT", ["https://raw.githubusercontent.com/rustyio/sync/11df81d196eaab2d84caa3fbe8def5d476ef79d8/src/sync.erl"]],
|
299
473
|
["rebar_vsn_plugin", "Apache-2.0", ["https://raw.githubusercontent.com/erlware/rebar_vsn_plugin/master/src/rebar_vsn_plugin.erl"]],
|
300
474
|
["edown", "Erlang-Public", ["https://raw.githubusercontent.com/seth/edown/master/NOTICE"]],
|
301
|
-
["bcrypt", "Multiple", ["https://
|
475
|
+
["bcrypt", "Multiple", ["https://raw.githubusercontent.com/chef/erlang-bcrypt/master/LICENSE"]],
|
302
476
|
["amqp_client", "MPL-2.0", ["https://raw.githubusercontent.com/seth/amqp_client/7622ad8093a41b7288a1aa44dd16d3e92ce8f833/src/amqp_connection.erl"]],
|
303
477
|
["erlsom", "LGPL-3.0", ["https://raw.githubusercontent.com/willemdj/erlsom/c5ca9fca1257f563d78b048e35ac60832ec80584/COPYING", "https://raw.githubusercontent.com/willemdj/erlsom/c5ca9fca1257f563d78b048e35ac60832ec80584/COPYING.LESSER"]],
|
304
478
|
["gen_server2", "Public-Domain", ["https://raw.githubusercontent.com/mdaguete/gen_server2/master/README.md"]],
|
@@ -322,29 +496,71 @@ module LicenseScout
|
|
322
496
|
|
323
497
|
# js_npm
|
324
498
|
[
|
499
|
+
["ignore", "MIT", ["https://raw.githubusercontent.com/kaelzhang/node-ignore/master/LICENSE-MIT"]],
|
500
|
+
["hock", "MIT", nil],
|
501
|
+
["known-css-properties", nil, [canonical("MIT")]],
|
502
|
+
["buffer-indexof", "MIT", nil],
|
503
|
+
["stdout-stream", "MIT", nil],
|
504
|
+
["thunky", "MIT", [canonical("MIT")]],
|
505
|
+
["core-object", nil, [canonical("MIT")]],
|
506
|
+
["css-parse", nil, [canonical("MIT")]],
|
507
|
+
["denodeify", nil, [canonical("MIT")]],
|
508
|
+
["detect-node", nil, [canonical("MIT")]],
|
509
|
+
["ember-cli-normalize-entity-name", nil, [canonical("MIT")]],
|
510
|
+
["ember-cli-string-utils", nil, [canonical("MIT")]],
|
511
|
+
["ensure-posix-path", nil, [canonical("MIT")]],
|
512
|
+
["handle-thing", nil, [canonical("MIT")]],
|
513
|
+
["hash-base", nil, [canonical("MIT")]],
|
514
|
+
["heimdalljs", nil, [canonical("MIT")]],
|
515
|
+
["hmac-drbg", nil, [canonical("MIT")]],
|
516
|
+
["hpack.js", nil, [canonical("MIT")]],
|
517
|
+
["http-deceiver", nil, [canonical("MIT")]],
|
518
|
+
["icss-utils", nil, [canonical("MIT")]],
|
519
|
+
["inflection", nil, [canonical("MIT")]],
|
520
|
+
["ip", nil, [canonical("MIT")]],
|
521
|
+
["karma-source-map-support", nil, [canonical("MIT")]],
|
522
|
+
["loader-runner", nil, [canonical("MIT")]],
|
523
|
+
["magic-string", nil, [canonical("MIT")]],
|
524
|
+
["matcher-collection", nil, [canonical("MIT")]],
|
525
|
+
["minimalistic-crypto-utils", nil, [canonical("MIT")]],
|
526
|
+
["node-modules-path", nil, [canonical("MIT")]],
|
527
|
+
["obuf", nil, [canonical("MIT")]],
|
528
|
+
["rx-lite-aggregates", nil, [canonical("MIT")]],
|
529
|
+
["script-loader", nil, [canonical("MIT")]],
|
530
|
+
["select-hose", nil, [canonical("MIT")]],
|
531
|
+
["selfsigned", nil, [canonical("MIT")]],
|
532
|
+
["silent-error", nil, [canonical("MIT")]],
|
533
|
+
["spdy", nil, [canonical("MIT")]],
|
534
|
+
["spdy-transport", nil, [canonical("MIT")]],
|
535
|
+
["vlq", nil, [canonical("MIT")]],
|
536
|
+
["wbuf", nil, [canonical("MIT")]],
|
537
|
+
["copy-to-clipboard", nil, [canonical("MIT")]],
|
538
|
+
["toggle-selection", nil, [canonical("MIT")]],
|
325
539
|
["isarray", nil, [canonical("MIT")]],
|
326
540
|
["array-filter", nil, [canonical("MIT")]],
|
541
|
+
["cssauron", nil, [canonical("MIT")]],
|
542
|
+
["path-parse", nil, [canonical("MIT")]],
|
543
|
+
["semver-dsl", nil, [canonical("MIT")]],
|
327
544
|
["chokidar", nil, ["README.md"]],
|
328
545
|
["set-immediate-shim", "MIT", ["https://raw.githubusercontent.com/sindresorhus/set-immediate-shim/master/license"]],
|
329
546
|
["process-nextick-args", nil, [canonical("MIT")]],
|
330
547
|
["buffer-shims", nil, [canonical("MIT")]],
|
331
548
|
["brace-expansion", nil, ["README.md"]],
|
332
|
-
["verror", "MIT", ["https://
|
549
|
+
["verror", "MIT", ["https://raw.githubusercontent.com/joyent/node-verror/master/LICENSE"]],
|
333
550
|
# From the json-schema readme:
|
334
551
|
# Code is licensed under the AFL or BSD license as part of the
|
335
552
|
# Persevere project which is administered under the Dojo foundation,
|
336
553
|
# and all contributions require a Dojo CLA.
|
337
554
|
["json-schema", "BSD", ["https://raw.githubusercontent.com/dojo/dojo/master/LICENSE"]],
|
338
|
-
["tweetnacl", "BSD", ["https://raw.githubusercontent.com/dchest/tweetnacl-js/master/
|
555
|
+
["tweetnacl", "BSD", ["https://raw.githubusercontent.com/dchest/tweetnacl-js/master/LICENSE"]],
|
339
556
|
["assert-plus", "MIT", ["README.md"]],
|
340
557
|
["sntp", "BSD-3-Clause", nil],
|
341
558
|
["node-uuid", "MIT", nil],
|
342
559
|
["ms", "MIT", nil],
|
343
560
|
["jsonpointer", nil, ["https://raw.githubusercontent.com/janl/node-jsonpointer/master/LICENSE.md"]],
|
344
561
|
["has-color", nil, ["https://raw.githubusercontent.com/chalk/supports-color/master/license"]],
|
345
|
-
["generate-function", nil, ["https://
|
562
|
+
["generate-function", nil, ["https://raw.githubusercontent.com/mafintosh/generate-function/master/LICENSE"]],
|
346
563
|
["extsprintf", "MIT", nil],
|
347
|
-
["debug", nil, ["README.md"]],
|
348
564
|
["dashdash", nil, ["https://raw.githubusercontent.com/trentm/node-dashdash/master/LICENSE.txt"]],
|
349
565
|
# The link here is what's included in the readme
|
350
566
|
["async-each", nil, ["https://raw.githubusercontent.com/paulmillr/mit/master/README.md"]],
|
@@ -369,21 +585,24 @@ module LicenseScout
|
|
369
585
|
["brorand", nil, ["README.md"]],
|
370
586
|
["create-hmac", nil, [canonical("MIT")]],
|
371
587
|
["create-hash", nil, [canonical("MIT")]],
|
372
|
-
["
|
588
|
+
["browserify-aes", "MIT", ["https://raw.githubusercontent.com/crypto-browserify/browserify-aes/master/LICENSE"]],
|
589
|
+
["ripemd160", nil, ["https://raw.githubusercontent.com/crypto-browserify/ripemd160/master/LICENSE"]],
|
373
590
|
["create-ecdh", nil, [canonical("MIT")]],
|
374
591
|
["elliptic", nil, ["README.md"]],
|
375
592
|
["hash.js", nil, ["README.md"]],
|
376
593
|
["adm-zip", nil, ["https://raw.githubusercontent.com/cthackers/adm-zip/master/MIT-LICENSE.txt"]],
|
377
594
|
["after", "MIT", nil],
|
378
595
|
["agent-base", nil, ["README.md"]],
|
596
|
+
["angular2-cookie", "MIT", ["https://raw.githubusercontent.com/salemdar/angular2-cookie/master/LICENSE"]],
|
379
597
|
["angular-embedly", "BSD-2-Clause", nil],
|
380
598
|
["angular-feature-flags", nil, ["https://mjt01.mit-license.org/"]],
|
381
599
|
["angular-restmod", "MIT", nil],
|
382
600
|
["angular-spinner", nil, [canonical("MIT")]],
|
601
|
+
["angular2-router-loader", "MIT", ["README.md"]],
|
383
602
|
["ansi", "MIT", ["https://raw.githubusercontent.com/TooTallNate/ansi.js/master/LICENSE"]],
|
384
603
|
["ansi-regex", nil, ["https://raw.githubusercontent.com/chalk/ansi-regex/master/license"]],
|
385
604
|
["ansi-styles", nil, [canonical("MIT")]],
|
386
|
-
["ansi_up", "MIT", ["
|
605
|
+
["ansi_up", "MIT", ["Readme.md"]],
|
387
606
|
["are-we-there-yet", nil, ["https://raw.githubusercontent.com/iarna/are-we-there-yet/master/LICENSE"]],
|
388
607
|
["arraybuffer.slice", "MIT", ["README.md"]],
|
389
608
|
["asn1", "MIT", nil],
|
@@ -437,18 +656,214 @@ module LicenseScout
|
|
437
656
|
["backo2", nil, ["https://raw.githubusercontent.com/mokesmokes/backo/master/LICENSE"]],
|
438
657
|
["balanced-match", nil, ["https://raw.githubusercontent.com/juliangruber/balanced-match/master/LICENSE.md"]],
|
439
658
|
["base64id", "MIT", ["https://raw.githubusercontent.com/faeldt/base64id/master/LICENSE"]],
|
440
|
-
["batch", nil, ["
|
659
|
+
["batch", nil, ["Readme.md"]],
|
441
660
|
["bcrypt-pbkdf", nil, [canonical("BSD-4-Clause")]],
|
442
661
|
["better-assert", "MIT", ["https://raw.githubusercontent.com/tj/better-assert/master/LICENSE"]],
|
443
662
|
["binary", nil, [canonical("MIT")]],
|
444
663
|
["bindings", nil, ["README.md"]],
|
445
664
|
["blob", "MIT", ["https://raw.githubusercontent.com/webmodules/blob/master/LICENSE"]],
|
446
|
-
["bluebird", nil, ["https://
|
665
|
+
["bluebird", nil, ["https://raw.githubusercontent.com/petkaantonov/bluebird/master/LICENSE"]],
|
447
666
|
["browserify-cipher", nil, [canonical("MIT")]],
|
448
667
|
["browserify-des", nil, [canonical("MIT")]],
|
449
668
|
["browserify-zlib", nil, ["https://raw.githubusercontent.com/devongovett/browserify-zlib/master/LICENSE"]],
|
450
669
|
["buffers", "MIT", [canonical("MIT")]],
|
451
670
|
["bufferutil", nil, [canonical("MIT")]],
|
671
|
+
["builtins", nil, ["https://raw.githubusercontent.com/juliangruber/builtins/master/License"]],
|
672
|
+
["cached-path-relative", "MIT", ["Readme.md"]],
|
673
|
+
# https://www.npmjs.com/package/callsite
|
674
|
+
["callsite", "MIT", [canonical("MIT")]],
|
675
|
+
["caseless", nil, ["https://raw.githubusercontent.com/request/caseless/master/LICENSE"]],
|
676
|
+
["chainsaw", nil, ["https://raw.githubusercontent.com/substack/node-chainsaw/master/LICENSE", canonical("MIT")]],
|
677
|
+
["chalk", nil, ["https://raw.githubusercontent.com/chalk/chalk/master/license"]],
|
678
|
+
["cli", nil, ["README.md"]],
|
679
|
+
["cloneextend", "MIT", [canonical("MIT")]],
|
680
|
+
["combined-stream", "MIT", nil],
|
681
|
+
["commander", nil, ["https://raw.githubusercontent.com/tj/commander.js/master/LICENSE"]],
|
682
|
+
["commondir", nil, ["https://raw.githubusercontent.com/substack/node-commondir/master/LICENSE"]],
|
683
|
+
["component-bind", "MIT", ["https://raw.githubusercontent.com/component/bind/master/LICENSE"]],
|
684
|
+
["component-emitter", "MIT", ["https://raw.githubusercontent.com/component/emitter/master/LICENSE"]],
|
685
|
+
["component-inherit", "MIT", ["https://raw.githubusercontent.com/component/inherit/master/LICENSE"]],
|
686
|
+
["constants-browserify", nil, ["README.md"]],
|
687
|
+
["cookie-signature", nil, ["Readme.md"]],
|
688
|
+
["core-util-is", nil, ["https://raw.githubusercontent.com/isaacs/core-util-is/master/LICENSE"]],
|
689
|
+
["ctype", "MIT", nil],
|
690
|
+
["custom-event", nil, [canonical("MIT")]],
|
691
|
+
["delayed-stream", "MIT", nil],
|
692
|
+
["des.js", nil, ["README.md"]],
|
693
|
+
["dom-serialize", nil, [canonical("MIT")]],
|
694
|
+
["domelementtype", "BSD-2-Clause", nil],
|
695
|
+
["domhandler", "BSD-2-Clause", nil],
|
696
|
+
["domutils", "BSD-2-Clause", nil],
|
697
|
+
["engine.io-parser", "MIT", nil],
|
698
|
+
["esprima-fb", nil, ["https://raw.githubusercontent.com/facebookarchive/esprima/fb-harmony/LICENSE.BSD"]],
|
699
|
+
["falafel", nil, [canonical("MIT")]],
|
700
|
+
["filename-regex", nil, ["https://raw.githubusercontent.com/regexhq/filename-regex/master/LICENSE"]],
|
701
|
+
["font-awesome", nil, ["http://scripts.sil.org/OFL", canonical("MIT")]],
|
702
|
+
["get-caller-file", nil, [canonical("ISC")]],
|
703
|
+
["get-stdin", nil, ["https://raw.githubusercontent.com/sindresorhus/get-stdin/master/license"]],
|
704
|
+
["has-ansi", nil, ["https://raw.githubusercontent.com/chalk/has-ansi/master/license"]],
|
705
|
+
["has-cors", nil, [canonical("MIT")]],
|
706
|
+
["hat", nil, [canonical("MIT")]],
|
707
|
+
["https-proxy-agent", nil, ["README.md"]],
|
708
|
+
["inherits", "ISC", nil],
|
709
|
+
["invariant", nil, [canonical("BSD-3-Clause")]],
|
710
|
+
["invert-kv", nil, ["https://raw.githubusercontent.com/sindresorhus/invert-kv/master/license"]],
|
711
|
+
["jasmine", nil, [canonical("MIT")]],
|
712
|
+
["jasmine-core", nil, ["https://raw.githubusercontent.com/jasmine/jasmine/master/MIT.LICENSE"]],
|
713
|
+
["json5", nil, [canonical("MIT")]],
|
714
|
+
["jsonify", nil, ["https://raw.githubusercontent.com/substack/jsonify/master/readme.markdown"]],
|
715
|
+
["keymaster", "MIT", nil],
|
716
|
+
["loose-envify", nil, [canonical("MIT")]],
|
717
|
+
["natives", nil, [canonical("ISC")]],
|
718
|
+
["ng2d3", "MIT", ["docs/license.md"]],
|
719
|
+
["object-component", "MIT", [canonical("MIT")]],
|
720
|
+
["options", "MIT", ["README.md"]],
|
721
|
+
["over", nil, ["README.md"]],
|
722
|
+
["parse-diff", "MIT", nil],
|
723
|
+
["parsejson", nil, ["https://raw.githubusercontent.com/get/parsejson/master/LICENSE"]],
|
724
|
+
["parseqs", nil, ["https://raw.githubusercontent.com/get/querystring/master/LICENSE"]],
|
725
|
+
["parseuri", nil, ["https://raw.githubusercontent.com/get/parseuri/master/LICENSE"]],
|
726
|
+
["regenerator-runtime", nil, ["https://raw.githubusercontent.com/facebook/regenerator/master/LICENSE"]],
|
727
|
+
["rx", nil, ["https://raw.githubusercontent.com/Reactive-Extensions/RxJS/master/license.txt"]],
|
728
|
+
["sass-graph", nil, [canonical("MIT")]],
|
729
|
+
["sauce-connect-launcher", "MIT", ["README.md"]],
|
730
|
+
["saucelabs", "MIT", ["README.md"]],
|
731
|
+
["slash", nil, ["https://raw.githubusercontent.com/sindresorhus/slash/master/license"]],
|
732
|
+
["socket.io-parser", nil, ["https://raw.githubusercontent.com/socketio/socket.io-parser/master/LICENSE"]],
|
733
|
+
["stable", nil, ["README.md"]],
|
734
|
+
["strip-ansi", nil, ["https://raw.githubusercontent.com/chalk/strip-ansi/master/license"]],
|
735
|
+
["stubby", nil, ["https://raw.githubusercontent.com/mrak/stubby4node/master/APACHE.LICENSE"]],
|
736
|
+
["supports-color", nil, ["https://raw.githubusercontent.com/chalk/supports-color/master/license"]],
|
737
|
+
["tmp", nil, ["https://raw.githubusercontent.com/raszi/node-tmp/master/LICENSE"]],
|
738
|
+
["umd", nil, ["https://raw.githubusercontent.com/ForbesLindesay/umd/master/LICENSE"]],
|
739
|
+
["underscore.string", nil, ["README.markdown"]],
|
740
|
+
["utf-8-validate", nil, [canonical("MIT")]],
|
741
|
+
["w3c-blob", nil, [canonical("MIT")]],
|
742
|
+
["wordwrap", nil, ["https://raw.githubusercontent.com/substack/node-wordwrap/master/LICENSE"]],
|
743
|
+
["ws", nil, ["README.md"]],
|
744
|
+
["delivery-web", "Chef-MLSA", [canonical("Chef-MLSA")]],
|
745
|
+
["visibility-web", "Chef-MLSA", [canonical("Chef-MLSA")]],
|
746
|
+
["compliance-ui-components", "Chef-MLSA", [canonical("Chef-MLSA")]],
|
747
|
+
["angular2-moment", nil, ["https://raw.githubusercontent.com/urish/angular2-moment/master/LICENSE"]],
|
748
|
+
["array-differ", nil, ["readme.md"]],
|
749
|
+
["babel-polyfill", nil, [canonical("MIT")]],
|
750
|
+
["boolbase", nil, ["https://raw.githubusercontent.com/fb55/boolbase/master/LICENSE"]],
|
751
|
+
["caller-path", nil, ["readme.md"]],
|
752
|
+
["callsites", nil, ["readme.md"]],
|
753
|
+
["capture-stack-trace", nil, ["readme.md"]],
|
754
|
+
["charenc", "MIT", nil],
|
755
|
+
["clipboard", nil, ["readme.md"]],
|
756
|
+
["closest", nil, ["README.md"]],
|
757
|
+
["coa", nil, [canonical("MIT")]],
|
758
|
+
["codelyzer", nil, ["README.md"]],
|
759
|
+
["color-convert", "MIT", nil],
|
760
|
+
["compression-webpack-plugin", nil, ["README.md"]],
|
761
|
+
["configstore", nil, ["readme.md"]],
|
762
|
+
["crypt", "MIT", nil],
|
763
|
+
["cssbeautify", nil, ["https://raw.githubusercontent.com/senchalabs/cssbeautify/master/README.md"]],
|
764
|
+
["csslint", nil, ["https://raw.githubusercontent.com/stubbornella/csslint/master/LICENSE"]],
|
765
|
+
["css-color-names", nil, ["README.md"]],
|
766
|
+
["css-loader", nil, ["README.md"]],
|
767
|
+
["css-selector-tokenizer", "MIT", ["README.md"]],
|
768
|
+
["delegate", "MIT", ["readme.md"]],
|
769
|
+
["enhanced-resolve", nil, ["https://raw.githubusercontent.com/webpack/enhanced-resolve/master/README.md"]],
|
770
|
+
["electron-releases", "MIT", ["readme.md"]],
|
771
|
+
["errno", nil, ["README.md"]],
|
772
|
+
["es6-promise-loader", nil, ["README.md"]],
|
773
|
+
["es6-promisify", nil, ["README.md"]],
|
774
|
+
["esrecurse", nil, ["https://raw.githubusercontent.com/estools/esrecurse/master/README.md"]],
|
775
|
+
["exit-hook", nil, ["readme.md"]],
|
776
|
+
["exports-loader", nil, ["README.md"]],
|
777
|
+
["expose-loader", nil, ["README.md"]],
|
778
|
+
["extract-text-webpack-plugin", nil, ["README.md"]],
|
779
|
+
["extract-zip", nil, [canonical("BSD-2-Clause")]],
|
780
|
+
["fastparse", nil, ["README.md"]],
|
781
|
+
["faye-websocket", "MIT", ["README.md"]],
|
782
|
+
["file-loader", nil, ["README.md"]],
|
783
|
+
["good-listener", nil, ["readme.md"]],
|
784
|
+
["html-comment-regex", nil, ["README.md"]],
|
785
|
+
["http-proxy-agent", nil, ["README.md"]],
|
786
|
+
["icss-replace-symbols", nil, ["README.md"]],
|
787
|
+
["imports-loader", nil, ["README.md"]],
|
788
|
+
["imurmurhash", nil, ["README.md"]],
|
789
|
+
["inquirer", nil, ["README.md"]],
|
790
|
+
["is-npm", nil, ["readme.md"]],
|
791
|
+
["is-path-cwd", nil, ["readme.md"]],
|
792
|
+
["is-path-in-cwd", nil, ["readme.md"]],
|
793
|
+
["is-path-inside", nil, ["readme.md"]],
|
794
|
+
["istanbul", nil, ["README.md"]],
|
795
|
+
["istanbul-instrumenter-loader", nil, ["README.md"]],
|
796
|
+
["karma-webpack", nil, ["README.md"]],
|
797
|
+
["lowercase-keys", nil, ["readme.md"]],
|
798
|
+
["macaddress", nil, [canonical("MIT")]],
|
799
|
+
["make-error", nil, ["README.md"]],
|
800
|
+
["matches-selector", nil, ["Readme.md"]],
|
801
|
+
["memory-fs", "MIT", ["README.md"]],
|
802
|
+
["mime", "MIT", nil],
|
803
|
+
["multipipe", nil, ["Readme.md"]],
|
804
|
+
["ncname", nil, ["readme.md"]],
|
805
|
+
["ng2-gravatar-directive", nil, ["README.md"]],
|
806
|
+
["ng2-pagination", nil, ["readme.md"]],
|
807
|
+
["node-libs-browser", nil, [canonical("MIT")]],
|
808
|
+
["nth-check", nil, ["README.md"]],
|
809
|
+
["parserlib", nil, ["https://raw.githubusercontent.com/CSSLint/parser-lib/master/LICENSE"]],
|
810
|
+
["phantomjs-polyfill", nil, [canonical("ISC")]],
|
811
|
+
["postcss-modules-extract-imports", nil, ["README.md"]],
|
812
|
+
["postcss-modules-scope", nil, ["README.md"]],
|
813
|
+
["postcss-modules-values", nil, ["README.md"]],
|
814
|
+
["progress", "MIT", nil],
|
815
|
+
["raw-loader", nil, ["README.md"]],
|
816
|
+
["readline2", nil, ["README.md"]],
|
817
|
+
["require-uncached", nil, ["readme.md"]],
|
818
|
+
["rework", "MIT", ["Readme.md"]],
|
819
|
+
["rework-visit", "MIT", ["Readme.md"]],
|
820
|
+
["ripemd160", "MIT", ["https://raw.githubusercontent.com/crypto-browserify/ripemd160/master/LICENSE"]],
|
821
|
+
["rx-lite", nil, ["readme.md"]],
|
822
|
+
["select", "MIT", ["readme.md"]],
|
823
|
+
["source-list-map", nil, ["README.md"]],
|
824
|
+
["source-map-loader", nil, ["README.md"]],
|
825
|
+
["source-map-resolve", "MIT", ["readme.md"]],
|
826
|
+
["source-map-url", "MIT", ["readme.md"]],
|
827
|
+
["stream-cache", "MIT", ["https://raw.githubusercontent.com/felixge/node-stream-cache/master/License"]],
|
828
|
+
["style-loader", nil, ["README.md"]],
|
829
|
+
["tapable", nil, [canonical("MIT")]],
|
830
|
+
["throttleit", nil, ["Readme.md"]],
|
831
|
+
["timed-out", nil, ["readme.md"]],
|
832
|
+
["tiny-emitter", nil, [canonical("MIT")]],
|
833
|
+
["tryit", nil, ["README.md"]],
|
834
|
+
["ts-helper", nil, [canonical("MIT")]],
|
835
|
+
["tsify", "MIT", ["README.md"]],
|
836
|
+
["tslint-loader", nil, ["README.md"]],
|
837
|
+
["tv4", "Public-Domain", ["README.md"]],
|
838
|
+
["uglify-js", "MIT", nil],
|
839
|
+
["uniqid", nil, ["Readme.md"]],
|
840
|
+
["uniqs", nil, ["README.md"]],
|
841
|
+
["update-notifier", nil, ["readme.md"]],
|
842
|
+
["url-loader", nil, ["README.md"]],
|
843
|
+
["utila", nil, ["https://raw.githubusercontent.com/AriaMinaei/utila/master/LICENSE"]],
|
844
|
+
["wallaby-webpack", nil, [canonical("MIT")]],
|
845
|
+
["watchpack", nil, ["https://raw.githubusercontent.com/webpack/watchpack/master/LICENSE"]],
|
846
|
+
["webpack-core", nil, ["README.md"]],
|
847
|
+
["webpack-dev-middleware", nil, [canonical("MIT")]],
|
848
|
+
["webpack-dev-server", nil, [canonical("MIT")]],
|
849
|
+
["webpack-sources", nil, [canonical("MIT")]],
|
850
|
+
["websocket-driver", nil, ["README.md"]],
|
851
|
+
["websocket-extensions", nil, ["README.md"]],
|
852
|
+
["xml-char-classes", nil, ["readme.md"]],
|
853
|
+
["zip-object", nil, [canonical("MIT")]],
|
854
|
+
["component-closest", nil, ["https://raw.githubusercontent.com/component/closest/master/README.md"]],
|
855
|
+
["component-matches-selector", nil, ["https://raw.githubusercontent.com/component/matches-selector/master/Readme.md"]],
|
856
|
+
["component-query", nil, ["https://raw.githubusercontent.com/component/query/master/Readme.md"]],
|
857
|
+
["webcomponents.js", "BSD-3-Clause", ["https://raw.githubusercontent.com/webcomponents/webcomponentsjs/master/LICENSE.md"]],
|
858
|
+
["web-animations-js", "Apache-2.0", ["https://raw.githubusercontent.com/web-animations/web-animations-js/dev/COPYING"]],
|
859
|
+
["electron-to-chromium", nil, [canonical("ISC")]],
|
860
|
+
["debug", "MIT", ["https://raw.githubusercontent.com/visionmedia/debug/master/LICENSE"]],
|
861
|
+
["performance-now", "MIT", ["https://raw.githubusercontent.com/braveg1rl/performance-now/master/license.txt"]],
|
862
|
+
["cli-table", "MIT", ["README.md"]],
|
863
|
+
["process", "MIT", ["https://raw.githubusercontent.com/defunctzombie/node-process/master/LICENSE"]],
|
864
|
+
["rrule", "BSD-3-Clause", ["https://raw.githubusercontent.com/jakubroztocil/rrule/master/LICENCE"]],
|
865
|
+
# jszip says it is dual licensed under MIT and GPLv3
|
866
|
+
["jszip", "MIT", ["https://raw.githubusercontent.com/Stuk/jszip/master/LICENSE.markdown"]],
|
452
867
|
].each do |override_data|
|
453
868
|
override_license "js_npm", override_data[0] do |version|
|
454
869
|
{}.tap do |d|
|
@@ -457,6 +872,125 @@ module LicenseScout
|
|
457
872
|
end
|
458
873
|
end
|
459
874
|
end
|
875
|
+
|
876
|
+
# go_godep
|
877
|
+
[
|
878
|
+
["github.com/agnivade/easy-scrypt", "MIT", ["https://raw.githubusercontent.com/agnivade/easy-scrypt/master/LICENSE.txt"]],
|
879
|
+
["github.com/antonholmquist/jason", "MIT", ["https://raw.githubusercontent.com/antonholmquist/jason/master/LICENSE"]],
|
880
|
+
["github.com/aws/aws-sdk-go", "Apache-2.0", ["https://raw.githubusercontent.com/aws/aws-sdk-go/master/LICENSE.txt"]],
|
881
|
+
["github.com/beevik/etree", "BSD-2-Clause", ["https://raw.githubusercontent.com/beevik/etree/master/LICENSE"]],
|
882
|
+
["github.com/blang/semver", "MIT", ["https://raw.githubusercontent.com/blang/semver/master/LICENSE"]],
|
883
|
+
["github.com/BurntSushi/toml", "WTFPL", ["https://raw.githubusercontent.com/BurntSushi/toml/master/COPYING"]],
|
884
|
+
["github.com/codegangsta/cli", "MIT", ["https://raw.githubusercontent.com/urfave/cli/master/LICENSE"]],
|
885
|
+
["github.com/codegangsta/inject", "MIT", ["https://raw.githubusercontent.com/codegangsta/inject/master/LICENSE"]],
|
886
|
+
["github.com/codeskyblue/go-sh", "Apache-2.0", ["https://raw.githubusercontent.com/codeskyblue/go-sh/master/LICENSE"]],
|
887
|
+
["github.com/coreos/go-oidc", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/go-oidc/master/LICENSE"]],
|
888
|
+
["github.com/coreos/go-oidc/http", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/go-oidc/master/LICENSE"]],
|
889
|
+
["github.com/coreos/go-oidc/jose", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/go-oidc/master/LICENSE"]],
|
890
|
+
["github.com/coreos/go-oidc/key", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/go-oidc/master/LICENSE"]],
|
891
|
+
["github.com/coreos/go-oidc/oauth2", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/go-oidc/master/LICENSE"]],
|
892
|
+
["github.com/coreos/go-oidc/oidc", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/go-oidc/master/LICENSE"]],
|
893
|
+
["github.com/coreos/go-systemd/journal", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/go-systemd/master/LICENSE"]],
|
894
|
+
["github.com/coreos/pkg", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/pkg/master/LICENSE"]],
|
895
|
+
["github.com/coreos/pkg/capnslog", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/pkg/master/LICENSE"]],
|
896
|
+
["github.com/coreos/pkg/health", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/pkg/master/LICENSE"]],
|
897
|
+
["github.com/coreos/pkg/httputil", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/pkg/master/LICENSE"]],
|
898
|
+
["github.com/coreos/pkg/timeutil", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/pkg/master/LICENSE"]],
|
899
|
+
["github.com/ctdk/chefcrypto", "Apache-2.0", ["https://raw.githubusercontent.com/ctdk/chefcrypto/master/LICENSE"]],
|
900
|
+
["github.com/ctdk/go-trie", "MIT", ["https://raw.githubusercontent.com/ctdk/go-trie/master/LICENSE"]],
|
901
|
+
["github.com/ctdk/goiardi", "Apache-2.0", ["https://raw.githubusercontent.com/ctdk/goiardi/master/LICENSE"]],
|
902
|
+
["github.com/dchest/siphash", "CC0-1.0", ["https://raw.githubusercontent.com/dchest/siphash/master/README.md"]],
|
903
|
+
["github.com/dgrijalva/jwt-go", "MIT", ["https://raw.githubusercontent.com/dgrijalva/jwt-go/master/LICENSE"]],
|
904
|
+
["github.com/fatih/structs", "MIT", ["https://raw.githubusercontent.com/fatih/structs/master/LICENSE"]],
|
905
|
+
["github.com/gin-gonic/gin", "MIT", ["https://raw.githubusercontent.com/gin-gonic/gin/master/LICENSE"]],
|
906
|
+
["github.com/gin-gonic/gin/binding", "MIT", ["https://raw.githubusercontent.com/gin-gonic/gin/master/LICENSE"]],
|
907
|
+
["github.com/gin-gonic/gin/render", "MIT", ["https://raw.githubusercontent.com/gin-gonic/gin/master/LICENSE"]],
|
908
|
+
["github.com/go-chef/chef", "Apache-2.0", ["https://raw.githubusercontent.com/go-chef/chef/master/LICENSE"]],
|
909
|
+
["github.com/go-ini/ini", "Apache-2.0", ["https://raw.githubusercontent.com/go-ini/ini/master/LICENSE"]],
|
910
|
+
["github.com/go-sql-driver/mysql", "MPL-2.0", ["https://raw.githubusercontent.com/go-sql-driver/mysql/master/LICENSE"]],
|
911
|
+
["github.com/golang/protobuf", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/protobuf/master/LICENSE"]],
|
912
|
+
["github.com/gorhill/cronexpr", "Apache-2.0", ["https://www.apache.org/licenses/LICENSE-2.0"]],
|
913
|
+
["github.com/gorilla/handlers", "BSD-2-Clause", ["https://raw.githubusercontent.com/gorilla/handlers/master/LICENSE"]],
|
914
|
+
["github.com/hashicorp/errwrap", "MPL-2.0", ["https://raw.githubusercontent.com/hashicorp/errwrap/master/LICENSE"]],
|
915
|
+
["github.com/hashicorp/go-cleanhttp", "MPL-2.0", ["https://raw.githubusercontent.com/hashicorp/go-cleanhttp/master/LICENSE"]],
|
916
|
+
["github.com/hashicorp/go-multierror", "MPL-2.0", ["https://raw.githubusercontent.com/hashicorp/go-multierror/master/LICENSE"]],
|
917
|
+
["github.com/hashicorp/go-rootcerts", "MPL-2.0", ["https://raw.githubusercontent.com/hashicorp/go-rootcerts/master/LICENSE"]],
|
918
|
+
["github.com/hashicorp/hcl", "MPL-2.0", ["https://raw.githubusercontent.com/hashicorp/hcl/master/LICENSE"]],
|
919
|
+
["github.com/hashicorp/vault", "MPL-2.0", ["https://raw.githubusercontent.com/hashicorp/vault/master/LICENSE"]],
|
920
|
+
["github.com/jessevdk/go-flags", "BSD-3-Clause", ["https://raw.githubusercontent.com/jessevdk/go-flags/master/LICENSE"]],
|
921
|
+
["github.com/jmespath/go-jmespath", "Apache-2.0", ["https://raw.githubusercontent.com/jmespath/go-jmespath/master/LICENSE"]],
|
922
|
+
["github.com/jonboulle/clockwork", "Apache-2.0", ["https://raw.githubusercontent.com/jonboulle/clockwork/master/LICENSE"]],
|
923
|
+
["github.com/lib/pq", "MIT", ["https://raw.githubusercontent.com/lib/pq/master/LICENSE.md"]],
|
924
|
+
["github.com/lib/pq/oid", "MIT", ["https://raw.githubusercontent.com/lib/pq/master/LICENSE.md"]],
|
925
|
+
["github.com/manucorporat/sse", "MIT", ["https://raw.githubusercontent.com/manucorporat/sse/master/LICENSE"]],
|
926
|
+
["github.com/mattn/go-colorable", "MIT", ["https://raw.githubusercontent.com/mattn/go-colorable/master/LICENSE"]],
|
927
|
+
["github.com/mattn/go-isatty", "MIT", ["https://raw.githubusercontent.com/mattn/go-isatty/master/LICENSE"]],
|
928
|
+
["github.com/mattn/go-sqlite3", "MIT", ["https://raw.githubusercontent.com/mattn/go-sqlite3/master/LICENSE"]],
|
929
|
+
["github.com/mitchellh/go-homedir", "MIT", ["https://raw.githubusercontent.com/mitchellh/go-homedir/master/LICENSE"]],
|
930
|
+
["github.com/mitchellh/mapstructure", "MIT", ["https://raw.githubusercontent.com/mitchellh/mapstructure/master/LICENSE"]],
|
931
|
+
["github.com/nu7hatch/gouuid", "MIT", ["https://raw.githubusercontent.com/nu7hatch/gouuid/master/COPYING"]],
|
932
|
+
["github.com/open-policy-agent/opa", "Apache-2.0", ["https://raw.githubusercontent.com/open-policy-agent/opa/master/LICENSE"]],
|
933
|
+
["github.com/patrickmn/go-cache", "MIT", ["https://raw.githubusercontent.com/patrickmn/go-cache/master/LICENSE"]],
|
934
|
+
["github.com/peterbourgon/mergemap", "BSD-2-Clause", ["https://raw.githubusercontent.com/peterbourgon/mergemap/master/LICENSE"]],
|
935
|
+
["github.com/philhofer/fwd", "MIT", ["https://raw.githubusercontent.com/philhofer/fwd/master/LICENSE.md"]],
|
936
|
+
["github.com/op/go-logging", "BSD-3-Clause", ["https://raw.githubusercontent.com/op/go-logging/master/LICENSE"]],
|
937
|
+
["github.com/pmylund/go-cache", "MIT", ["https://raw.githubusercontent.com/patrickmn/go-cache/master/LICENSE"]],
|
938
|
+
["github.com/sethgrid/pester", "MIT", ["https://raw.githubusercontent.com/sethgrid/pester/master/LICENSE.md"]],
|
939
|
+
["github.com/Sirupsen/logrus", "MIT", ["https://raw.githubusercontent.com/sirupsen/logrus/master/LICENSE"]],
|
940
|
+
["github.com/davecgh/go-spew", "ISC", ["https://raw.githubusercontent.com/davecgh/go-spew/master/LICENSE"]],
|
941
|
+
["github.com/gin-contrib/sse", "MIT", ["https://raw.githubusercontent.com/gin-contrib/sse/master/LICENSE"]],
|
942
|
+
["github.com/gocarina/gocsv", "MIT", ["https://raw.githubusercontent.com/gocarina/gocsv/master/LICENSE"]],
|
943
|
+
["github.com/pmezard/go-difflib", "BSD 3-clause", ["https://raw.githubusercontent.com/pmezard/go-difflib/master/LICENSE"]],
|
944
|
+
["github.com/stretchr/testify", "MIT", ["https://raw.githubusercontent.com/stretchr/testify/master/LICENSE"]],
|
945
|
+
["github.com/ugorji/go", "MIT", ["https://raw.githubusercontent.com/ugorji/go/master/LICENSE"]],
|
946
|
+
["github.com/tideland/golib", "BSD-3-Clause", ["https://raw.githubusercontent.com/tideland/golib/master/LICENSE"]],
|
947
|
+
["github.com/tinylib/msgp", "MIT", ["https://raw.githubusercontent.com/tinylib/msgp/master/LICENSE"]],
|
948
|
+
["golang.org/x/crypto", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/crypto/master/LICENSE"]],
|
949
|
+
["golang.org/x/crypto/pbkdf2", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/crypto/master/LICENSE"]],
|
950
|
+
["golang.org/x/crypto/scrypt", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/crypto/master/LICENSE"]],
|
951
|
+
["golang.org/x/crypto/ssh", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/crypto/master/LICENSE"]],
|
952
|
+
["golang.org/x/exp", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/exp/master/LICENSE"]],
|
953
|
+
["golang.org/x/net", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/net/master/LICENSE"]],
|
954
|
+
["golang.org/x/net/context", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/net/master/LICENSE"]],
|
955
|
+
["golang.org/x/net/netutil", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/net/master/LICENSE"]],
|
956
|
+
["golang.org/x/net/context", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/net/master/LICENSE"]],
|
957
|
+
["golang.org/x/sys", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/sys/master/LICENSE"]],
|
958
|
+
["golang.org/x/sys/unix", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/sys/master/LICENSE"]],
|
959
|
+
["gopkg.in/bluesuncorp/validator.v5", "MIT", ["https://raw.githubusercontent.com/go-playground/validator/v5/LICENSE"]],
|
960
|
+
["gopkg.in/gorp.v1", "MIT", ["https://raw.githubusercontent.com/go-gorp/gorp/v1.7.1/LICENSE"]],
|
961
|
+
["github.com/go-gorp/gorp", "MIT", ["https://raw.githubusercontent.com/go-gorp/gorp/master/LICENSE"]],
|
962
|
+
["gopkg.in/go-playground/validator.v8", "MIT", ["https://raw.githubusercontent.com/go-playground/validator/v8.18.1/LICENSE"]],
|
963
|
+
["gopkg.in/olivere/elastic.v3", "MIT", ["https://raw.githubusercontent.com/olivere/elastic/v3.0.68/LICENSE"]],
|
964
|
+
["gopkg.in/tylerb/graceful.v1", "MIT", ["https://raw.githubusercontent.com/tylerb/graceful/v1.2.13/LICENSE"]],
|
965
|
+
["gopkg.in/yaml.v2", "Apache-2.0", ["https://raw.githubusercontent.com/go-yaml/yaml/v2/LICENSE"]],
|
966
|
+
["gopkg.in/olivere/elastic.v5", "MIT", ["https://raw.githubusercontent.com/olivere/elastic/v5.0.41/LICENSE"]],
|
967
|
+
["github.com/pkg/errors", "BSD-2-Clause", ["https://raw.githubusercontent.com/pkg/errors/master/LICENSE"]],
|
968
|
+
["github.com/grpc-ecosystem/grpc-gateway", "BSD-3-Clause", ["https://raw.githubusercontent.com/grpc-ecosystem/grpc-gateway/master/LICENSE.txt"]],
|
969
|
+
["github.com/inconshreveable/mousetrap", "MIT", ["https://raw.githubusercontent.com/inconshreveable/mousetrap/master/LICENSE"]],
|
970
|
+
["github.com/spf13/cobra", "Apache-2.0", ["https://raw.githubusercontent.com/spf13/cobra/master/LICENSE.txt"]],
|
971
|
+
["github.com/spf13/pflag", "BSD-3-Clause", ["https://raw.githubusercontent.com/spf13/pflag/master/LICENSE"]],
|
972
|
+
["golang.org/x/text", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/net/master/LICENSE"]],
|
973
|
+
["google.golang.org/genproto", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/net/master/LICENSE"]],
|
974
|
+
["google.golang.org/grpc", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/net/master/LICENSE"]],
|
975
|
+
["github.com/schollz/closestmatch", "MIT", ["https://raw.githubusercontent.com/schollz/closestmatch/master/LICENSE"]],
|
976
|
+
["github.com/fsnotify/fsnotify", "BSD-3-Clause", ["https://raw.githubusercontent.com/fsnotify/fsnotify/master/LICENSE"]],
|
977
|
+
["github.com/magiconair/properties", "BSD-3-Clause", ["https://raw.githubusercontent.com/magiconair/properties/master/LICENSE"]],
|
978
|
+
["github.com/pelletier/go-toml", "MIT", ["https://raw.githubusercontent.com/pelletier/go-toml/master/LICENSE"]],
|
979
|
+
["github.com/sirupsen/logrus", "MIT", ["https://raw.githubusercontent.com/sirupsen/logrus/master/LICENSE"]],
|
980
|
+
["github.com/spf13/afero", "Apache-2.0", ["https://raw.githubusercontent.com/spf13/afero/master/LICENSE.txt"]],
|
981
|
+
["github.com/spf13/cast", "MIT", ["https://raw.githubusercontent.com/spf13/cast/master/LICENSE"]],
|
982
|
+
["github.com/spf13/jwalterweatherman", "MIT", ["https://raw.githubusercontent.com/spf13/jWalterWeatherman/master/LICENSE"]],
|
983
|
+
["github.com/spf13/viper", "MIT", ["https://raw.githubusercontent.com/spf13/viper/master/LICENSE"]],
|
984
|
+
["github.com/satori/go.uuid", "MIT", ["https://raw.githubusercontent.com/satori/go.uuid/master/LICENSE"]],
|
985
|
+
["github.com/teambition/rrule-go", "MIT", ["https://raw.githubusercontent.com/teambition/rrule-go/master/LICENSE"]]
|
986
|
+
].each do |override_data|
|
987
|
+
override_license "go", override_data[0] do |version|
|
988
|
+
{}.tap do |d|
|
989
|
+
d[:license] = override_data[1] if override_data[1]
|
990
|
+
d[:license_files] = override_data[2] if override_data[2]
|
991
|
+
end
|
992
|
+
end
|
993
|
+
end
|
460
994
|
end
|
461
995
|
|
462
996
|
end
|