license_scout 1.3.2 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +195 -0
  3. data/bin/license_scout +3 -59
  4. data/bin/mix_lock_json +0 -0
  5. data/bin/rebar_lock_json +0 -0
  6. data/lib/license_scout/cli.rb +99 -0
  7. data/lib/license_scout/collector.rb +25 -77
  8. data/lib/license_scout/config.rb +94 -0
  9. data/lib/license_scout/data/dependeny_manifest_v2_schema.json +62 -0
  10. data/lib/license_scout/data/exceptions.json +306 -0
  11. data/lib/license_scout/data/licenses.json +4653 -0
  12. data/lib/license_scout/dependency.rb +79 -7
  13. data/lib/license_scout/dependency_manager/base.rb +74 -42
  14. data/lib/license_scout/dependency_manager/berkshelf.rb +25 -50
  15. data/lib/license_scout/dependency_manager/bundler/_bundler_script.rb +1 -1
  16. data/lib/license_scout/dependency_manager/bundler.rb +47 -69
  17. data/lib/license_scout/dependency_manager/cpanm.rb +62 -112
  18. data/lib/license_scout/dependency_manager/dep.rb +29 -36
  19. data/lib/license_scout/dependency_manager/glide.rb +25 -36
  20. data/lib/license_scout/dependency_manager/godep.rb +27 -26
  21. data/lib/license_scout/dependency_manager/habitat.rb +126 -0
  22. data/lib/license_scout/dependency_manager/mix.rb +105 -0
  23. data/lib/license_scout/dependency_manager/npm.rb +30 -86
  24. data/lib/license_scout/dependency_manager/rebar.rb +26 -45
  25. data/lib/license_scout/dependency_manager.rb +19 -5
  26. data/lib/license_scout/exceptions.rb +2 -43
  27. data/lib/license_scout/license.rb +126 -0
  28. data/lib/license_scout/{license_file_analyzer.rb → log.rb} +4 -6
  29. data/lib/license_scout/reporter.rb +149 -55
  30. data/lib/license_scout/spdx.rb +123 -0
  31. data/lib/license_scout/version.rb +1 -1
  32. data/lib/license_scout.rb +2 -0
  33. data/native_parsers/mix_lock_json/README.md +21 -0
  34. data/native_parsers/mix_lock_json/lib/mix_lock_json.ex +20 -0
  35. data/native_parsers/mix_lock_json/mix.exs +31 -0
  36. data/native_parsers/mix_lock_json/mix.lock +3 -0
  37. data/{erl_src → native_parsers}/rebar_lock_json/README.md +0 -0
  38. data/{erl_src → native_parsers}/rebar_lock_json/rebar.config +0 -0
  39. data/{erl_src → native_parsers}/rebar_lock_json/rebar.lock +2 -2
  40. data/{erl_src → native_parsers}/rebar_lock_json/src/rebar_lock_json.app.src +0 -0
  41. data/{erl_src → native_parsers}/rebar_lock_json/src/rebar_lock_json.erl +0 -0
  42. metadata +144 -67
  43. data/lib/license_scout/canonical_licenses/BSD-2-Clause.txt +0 -19
  44. data/lib/license_scout/canonical_licenses/BSD-3-Clause.txt +0 -27
  45. data/lib/license_scout/canonical_licenses/BSD-4-Clause.txt +0 -31
  46. data/lib/license_scout/canonical_licenses/Chef-MLSA.txt +0 -5
  47. data/lib/license_scout/canonical_licenses/ISC.txt +0 -14
  48. data/lib/license_scout/canonical_licenses/MIT.txt +0 -20
  49. data/lib/license_scout/dependency_manager/bundler/LICENSE.md +0 -23
  50. data/lib/license_scout/dependency_manager/json/README.md +0 -392
  51. data/lib/license_scout/dependency_manager/manual.rb +0 -67
  52. data/lib/license_scout/license_file_analyzer/any_matcher.rb +0 -37
  53. data/lib/license_scout/license_file_analyzer/definitions.rb +0 -219
  54. data/lib/license_scout/license_file_analyzer/header_matcher.rb +0 -34
  55. data/lib/license_scout/license_file_analyzer/matcher.rb +0 -46
  56. data/lib/license_scout/license_file_analyzer/template.rb +0 -45
  57. data/lib/license_scout/license_file_analyzer/templates/Apache2-short.txt +0 -11
  58. data/lib/license_scout/license_file_analyzer/templates/Apache2.txt +0 -170
  59. data/lib/license_scout/license_file_analyzer/templates/BSD-2-Clause-bullets.txt +0 -18
  60. data/lib/license_scout/license_file_analyzer/templates/BSD-2-Clause.txt +0 -19
  61. data/lib/license_scout/license_file_analyzer/templates/BSD-3-Clause-alt-format.txt +0 -24
  62. data/lib/license_scout/license_file_analyzer/templates/BSD-3-Clause.txt +0 -21
  63. data/lib/license_scout/license_file_analyzer/templates/BSD.txt +0 -24
  64. data/lib/license_scout/license_file_analyzer/templates/Chef-MLSA.txt +0 -5
  65. data/lib/license_scout/license_file_analyzer/templates/EPLICENSE.txt +0 -286
  66. data/lib/license_scout/license_file_analyzer/templates/GPL-2.0.txt +0 -339
  67. data/lib/license_scout/license_file_analyzer/templates/GPL-3.0.txt +0 -674
  68. data/lib/license_scout/license_file_analyzer/templates/ISC.txt +0 -2
  69. data/lib/license_scout/license_file_analyzer/templates/LGPL-3.0.txt +0 -165
  70. data/lib/license_scout/license_file_analyzer/templates/MIT.txt +0 -9
  71. data/lib/license_scout/license_file_analyzer/templates/MPL2.txt +0 -373
  72. data/lib/license_scout/license_file_analyzer/templates/Python-2.0.txt +0 -47
  73. data/lib/license_scout/license_file_analyzer/templates/Ruby.txt +0 -52
  74. data/lib/license_scout/license_file_analyzer/text.rb +0 -46
  75. data/lib/license_scout/net_fetcher.rb +0 -106
  76. data/lib/license_scout/options.rb +0 -47
  77. data/lib/license_scout/overrides.rb +0 -1113
@@ -1,1113 +0,0 @@
1
- #
2
- # Copyright:: Copyright 2016-2020, Chef Software Inc.
3
- # License:: Apache License, Version 2.0
4
- #
5
- # Licensed under the Apache License, Version 2.0 (the "License");
6
- # you may not use this file except in compliance with the License.
7
- # You may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing, software
12
- # distributed under the License is distributed on an "AS IS" BASIS,
13
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- # See the License for the specific language governing permissions and
15
- # limitations under the License.
16
- #
17
-
18
- require "license_scout/net_fetcher"
19
-
20
- require "pathname" unless defined?(Pathname)
21
-
22
- module LicenseScout
23
- class Overrides
24
-
25
- class OverrideLicenseSet
26
-
27
- attr_reader :license_locations
28
-
29
- def initialize(license_locations)
30
- @license_locations = license_locations || []
31
- end
32
-
33
- def empty?
34
- license_locations.empty?
35
- end
36
-
37
- def resolve_locations(dependency_root_dir)
38
- license_locations.map do |license_location|
39
- if NetFetcher.remote?(license_location)
40
- NetFetcher.cache(license_location)
41
- else
42
- normalize_and_verify_path(license_location, dependency_root_dir)
43
- end
44
- end
45
- end
46
-
47
- def normalize_and_verify_path(license_location, dependency_root_dir)
48
- full_path = File.expand_path(license_location, dependency_root_dir)
49
- if File.exist?(full_path)
50
- full_path
51
- else
52
- raise Exceptions::InvalidOverride, "Provided license file path '#{license_location}' can not be found under detected dependency path '#{dependency_root_dir}'."
53
- end
54
- end
55
-
56
- end
57
-
58
- attr_reader :override_rules
59
-
60
- def initialize(exclude_default: false, &rules)
61
- @override_rules = {}
62
- instance_eval(&rules) if block_given?
63
-
64
- default_overrides unless exclude_default
65
- end
66
-
67
- def override_license(dependency_manager, dependency_name, &rule)
68
- override_rules[dependency_manager] ||= {}
69
- override_rules[dependency_manager][dependency_name] = rule
70
- end
71
-
72
- def license_for(dependency_manager, dependency_name, dependency_version)
73
- license_data = license_data_for(dependency_manager, dependency_name, dependency_version)
74
- license_data && license_data[:license]
75
- end
76
-
77
- def license_files_for(dependency_manager, dependency_name, dependency_version)
78
- license_data = license_data_for(dependency_manager, dependency_name, dependency_version)
79
- OverrideLicenseSet.new(license_data && license_data[:license_files])
80
- end
81
-
82
- def have_override_for?(dependency_manager, dependency_name, dependency_version)
83
- override_rules.key?(dependency_manager) && override_rules[dependency_manager].key?(dependency_name)
84
- end
85
-
86
- private
87
-
88
- def license_data_for(dependency_manager, dependency_name, dependency_version)
89
- return nil unless have_override_for?(dependency_manager, dependency_name, dependency_version)
90
-
91
- override_rules[dependency_manager][dependency_name].call(dependency_version)
92
- end
93
-
94
- def canonical(shortname)
95
- File.expand_path("../canonical_licenses/#{shortname}.txt", __FILE__)
96
- end
97
-
98
- def default_overrides
99
- # AWS Ruby SDK
100
- aws_sdk_gems = %w{
101
- aws-eventstream
102
- aws-partitions
103
- aws-sdk
104
- aws-sdk-acm
105
- aws-sdk-acmpca
106
- aws-sdk-alexaforbusiness
107
- aws-sdk-amplify
108
- aws-sdk-apigateway
109
- aws-sdk-apigatewaymanagementapi
110
- aws-sdk-apigatewayv2
111
- aws-sdk-applicationautoscaling
112
- aws-sdk-applicationdiscoveryservice
113
- aws-sdk-appmesh
114
- aws-sdk-appstream
115
- aws-sdk-appsync
116
- aws-sdk-athena
117
- aws-sdk-autoscaling
118
- aws-sdk-autoscalingplans
119
- aws-sdk-backup
120
- aws-sdk-batch
121
- aws-sdk-budgets
122
- aws-sdk-chime
123
- aws-sdk-cloud9
124
- aws-sdk-clouddirectory
125
- aws-sdk-cloudformation
126
- aws-sdk-cloudfront
127
- aws-sdk-cloudhsm
128
- aws-sdk-cloudhsmv2
129
- aws-sdk-cloudsearch
130
- aws-sdk-cloudsearchdomain
131
- aws-sdk-cloudtrail
132
- aws-sdk-cloudwatch
133
- aws-sdk-cloudwatchevents
134
- aws-sdk-cloudwatchlogs
135
- aws-sdk-codebuild
136
- aws-sdk-codecommit
137
- aws-sdk-codedeploy
138
- aws-sdk-codepipeline
139
- aws-sdk-codestar
140
- aws-sdk-cognitoidentity
141
- aws-sdk-cognitoidentityprovider
142
- aws-sdk-cognitosync
143
- aws-sdk-comprehend
144
- aws-sdk-comprehendmedical
145
- aws-sdk-configservice
146
- aws-sdk-connect
147
- aws-sdk-core
148
- aws-sdk-costandusagereportservice
149
- aws-sdk-costexplorer
150
- aws-sdk-databasemigrationservice
151
- aws-sdk-datapipeline
152
- aws-sdk-datasync
153
- aws-sdk-dax
154
- aws-sdk-devicefarm
155
- aws-sdk-directconnect
156
- aws-sdk-directoryservice
157
- aws-sdk-dlm
158
- aws-sdk-docdb
159
- aws-sdk-dynamodb
160
- aws-sdk-dynamodbstreams
161
- aws-sdk-ec2
162
- aws-sdk-ecr
163
- aws-sdk-ecs
164
- aws-sdk-efs
165
- aws-sdk-eks
166
- aws-sdk-elasticache
167
- aws-sdk-elasticbeanstalk
168
- aws-sdk-elasticloadbalancing
169
- aws-sdk-elasticloadbalancingv2
170
- aws-sdk-elasticsearchservice
171
- aws-sdk-elastictranscoder
172
- aws-sdk-emr
173
- aws-sdk-firehose
174
- aws-sdk-fms
175
- aws-sdk-fsx
176
- aws-sdk-gamelift
177
- aws-sdk-glacier
178
- aws-sdk-globalaccelerator
179
- aws-sdk-glue
180
- aws-sdk-greengrass
181
- aws-sdk-guardduty
182
- aws-sdk-health
183
- aws-sdk-iam
184
- aws-sdk-importexport
185
- aws-sdk-inspector
186
- aws-sdk-iot
187
- aws-sdk-iot1clickdevicesservice
188
- aws-sdk-iot1clickprojects
189
- aws-sdk-iotanalytics
190
- aws-sdk-iotdataplane
191
- aws-sdk-iotjobsdataplane
192
- aws-sdk-kafka
193
- aws-sdk-kinesis
194
- aws-sdk-kinesisanalytics
195
- aws-sdk-kinesisanalyticsv2
196
- aws-sdk-kinesisvideo
197
- aws-sdk-kinesisvideoarchivedmedia
198
- aws-sdk-kinesisvideomedia
199
- aws-sdk-kms
200
- aws-sdk-lambda
201
- aws-sdk-lambdapreview
202
- aws-sdk-lex
203
- aws-sdk-lexmodelbuildingservice
204
- aws-sdk-lexruntimeservice
205
- aws-sdk-licensemanager
206
- aws-sdk-lightsail
207
- aws-sdk-machinelearning
208
- aws-sdk-macie
209
- aws-sdk-marketplacecommerceanalytics
210
- aws-sdk-marketplaceentitlementservice
211
- aws-sdk-marketplacemetering
212
- aws-sdk-mediaconnect
213
- aws-sdk-mediaconvert
214
- aws-sdk-medialive
215
- aws-sdk-mediapackage
216
- aws-sdk-mediastore
217
- aws-sdk-mediastoredata
218
- aws-sdk-mediatailor
219
- aws-sdk-migrationhub
220
- aws-sdk-mobile
221
- aws-sdk-mq
222
- aws-sdk-mturk
223
- aws-sdk-neptune
224
- aws-sdk-opsworks
225
- aws-sdk-opsworkscm
226
- aws-sdk-organizations
227
- aws-sdk-pi
228
- aws-sdk-pinpoint
229
- aws-sdk-pinpointemail
230
- aws-sdk-pinpointsmsvoice
231
- aws-sdk-polly
232
- aws-sdk-pricing
233
- aws-sdk-quicksight
234
- aws-sdk-ram
235
- aws-sdk-rds
236
- aws-sdk-rdsdataservice
237
- aws-sdk-redshift
238
- aws-sdk-rekognition
239
- aws-sdk-resourcegroups
240
- aws-sdk-resourcegroupstaggingapi
241
- aws-sdk-resources
242
- aws-sdk-robomaker
243
- aws-sdk-route53
244
- aws-sdk-route53domains
245
- aws-sdk-route53resolver
246
- aws-sdk-s3
247
- aws-sdk-s3control
248
- aws-sdk-sagemaker
249
- aws-sdk-sagemakerruntime
250
- aws-sdk-secretsmanager
251
- aws-sdk-securityhub
252
- aws-sdk-serverlessapplicationrepository
253
- aws-sdk-servicecatalog
254
- aws-sdk-servicediscovery
255
- aws-sdk-ses
256
- aws-sdk-shield
257
- aws-sdk-signer
258
- aws-sdk-simpledb
259
- aws-sdk-sfn
260
- aws-sdk-sms
261
- aws-sdk-snowball
262
- aws-sdk-sns
263
- aws-sdk-sqs
264
- aws-sdk-ssm
265
- aws-sdk-states
266
- aws-sdk-storagegateway
267
- aws-sdk-support
268
- aws-sdk-swf
269
- aws-sdk-textract
270
- aws-sdk-translate
271
- aws-sdk-transcribeservice
272
- aws-sdk-transcribestreamingservice
273
- aws-sdk-transfer
274
- aws-sdk-waf
275
- aws-sdk-wafregional
276
- aws-sdk-workdocs
277
- aws-sdk-worklink
278
- aws-sdk-workmail
279
- aws-sdk-workspaces
280
- aws-sdk-xray
281
- aws-sigv2
282
- aws-sigv4
283
- }.map { |aws_gem| [ aws_gem, nil, ["https://raw.githubusercontent.com/aws/aws-sdk-ruby/master/LICENSE.txt"] ] }
284
-
285
- # Default overrides for ruby_bundler dependency manager.
286
- other_gems = [
287
- ["transit-ruby", "Apache-2.0", ["LICENSE"]],
288
- ["binding_of_caller", "MIT", nil],
289
- ["bunny", "MIT", nil],
290
- ["chef-provisioning-aws", "Apache-2.0", ["LICENSE"]],
291
- ["chef-provisioning", "Apache-2.0", ["LICENSE"]],
292
- ["chef-rewind", "MIT", nil],
293
- ["chef-web-core", "Apache-2.0", nil],
294
- ["chef", "Apache-2.0", ["LICENSE"]],
295
- ["cheffish", "Apache-2.0", ["LICENSE"]],
296
- ["coderay", nil, ["README_INDEX.rdoc"]],
297
- ["debug_inspector", "MIT", ["README.md"]],
298
- ["em-http-request", "MIT", nil],
299
- ["equatable", "MIT", ["LICENSE.txt"]],
300
- ["erubis", "MIT", nil],
301
- ["formatador", "MIT", ["LICENSE.md"]],
302
- ["hana", "MIT", ["README.md"]],
303
- ["highline", "Ruby", ["LICENSE"]],
304
- ["httpclient", "Ruby", ["README.md"]],
305
- ["inifile", "MIT", ["README.md"]],
306
- ["ipaddress", "MIT", nil],
307
- ["jsonschema", "MIT", ["README.rdoc"]],
308
- ["knife-opc", "Apache-2.0", nil],
309
- ["little-plugger", "MIT", ["README.rdoc"]],
310
- ["logging", "MIT", ["README.md"]],
311
- ["lumberjack", "MIT", ["MIT_LICENSE.txt"]],
312
- ["m", "MIT", ["LICENSE"]],
313
- ["method_source", "MIT", nil],
314
- ["mixlib-authentication", "Apache-2.0", ["LICENSE"]],
315
- ["mixlib-cli", "Apache-2.0", ["LICENSE"]],
316
- ["mixlib-log", "Apache-2.0", ["LICENSE"]],
317
- ["mixlib-shellout", "Apache-2.0", ["LICENSE"]],
318
- ["moneta", "MIT", nil],
319
- ["mustermann", "MIT", ["LICENSE"]],
320
- ["mustermann-grape", "MIT", nil],
321
- ["net-http-persistent", "MIT", ["README.rdoc"]],
322
- ["net-http-pipeline", "MIT", ["README.txt"]],
323
- ["net-telnet", "Ruby", nil],
324
- ["netrc", "MIT", nil],
325
- ["oc-chef-pedant", "Apache-2.0", nil],
326
- ["ohai", "Apache-2.0", ["LICENSE"]],
327
- ["plist", "MIT", nil],
328
- ["proxifier", "MIT", nil],
329
- ["pry-remote", "MIT", nil],
330
- ["pry-stack_explorer", "MIT", nil],
331
- ["pry", "MIT", nil],
332
- ["puma", "BSD-3-Clause", nil],
333
- ["rack-test", "MIT", nil],
334
- ["rake", "MIT", nil],
335
- ["rb-inotify", "MIT", ["README.md"]],
336
- ["reel", "MIT", nil],
337
- ["rework-visit", "MIT", ["Readme.md"]],
338
- ["rework", "MIT", ["Readme.md"]],
339
- ["rspec", "MIT", nil],
340
- ["sequel", "MIT", nil],
341
- ["source-map-resolve", "MIT", ["LICENSE"]],
342
- ["source-map-url", "MIT", ["LICENSE"]],
343
- ["spork", "MIT", nil],
344
- ["syslog-logger", "MIT", ["README.rdoc"]],
345
- ["systemu", "BSD-2-Clause", nil],
346
- ["timeliness", "MIT", ["LICENSE"]],
347
- ["timers", "MIT", ["README.md"]],
348
- ["ubuntu_ami", "Apache-2.0", ["LICENSE"]],
349
- ["unicode_utils", "BSD-2-Clause", ["LICENSE.txt"]],
350
- ["unicorn", "Ruby", ["LICENSE"]],
351
- ["uuidtools", "Apache-2.0", nil],
352
- ["websocket", "MIT", ["README.md"]],
353
- ["winrm-fs", "Apache-2.0", nil],
354
- ["wisper", "MIT", ["README.md"]],
355
- ["yajl-ruby", "MIT", nil],
356
- # Overrides that require file fetching from internet
357
- ["amqp", "Ruby", ["https://raw.githubusercontent.com/ruby-amqp/amqp/master/README.md"]],
358
- ["aws-sigv4", "MIT", ["https://raw.githubusercontent.com/cmdrkeene/aws4/master/readme.md"]],
359
- ["bigdecimal", "BSD-2-Clause", ["https://raw.githubusercontent.com/ruby/bigdecimal/v1.3.5/LICENSE.txt"]],
360
- ["blankslate", "MIT", ["https://raw.githubusercontent.com/masover/blankslate/master/MIT-LICENSE"]],
361
- ["codecov", "MIT", ["https://raw.githubusercontent.com/codecov/codecov-ruby/master/LICENSE.txt"]],
362
- ["citrus", "MIT", ["https://raw.githubusercontent.com/mjackson/citrus/master/README.md"]],
363
- ["coffee-script-source", nil, ["https://raw.githubusercontent.com/jessedoyle/coffee-script-source/master/LICENSE"]],
364
- ["compass", "MIT", ["https://raw.githubusercontent.com/Compass/compass/stable/LICENSE.markdown"]],
365
- ["cucumber-wire", nil, ["https://raw.githubusercontent.com/cucumber/cucumber-ruby-wire/master/LICENSE"]],
366
- ["date", "BSD-2-Clause", ["https://raw.githubusercontent.com/ruby/date/master/README.md"]],
367
- ["dep_selector", nil, ["https://raw.githubusercontent.com/chef/dep-selector/master/LICENSE"]],
368
- ["enumerable-lazy", "MIT", ["https://raw.githubusercontent.com/yhara/enumerable-lazy/master/README.md"]],
369
- ["fast_xs", "MIT", ["https://raw.githubusercontent.com/brianmario/fast_xs/master/LICENSE"]],
370
- ["fuzzyurl", nil, ["https://raw.githubusercontent.com/gamache/fuzzyurl/master/LICENSE.txt"]],
371
- ["github_changelog_generator", nil, ["https://raw.githubusercontent.com/skywinder/github-changelog-generator/master/LICENSE"]],
372
- ["google-cloud-spanner", "Apache-2.0", ["https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-ruby/master/LICENSE"]],
373
- ["google-gax", "BSD-3-Clause", ["https://raw.githubusercontent.com/googleapis/gax-ruby/master/LICENSE"]],
374
- ["google-protobuf", nil, ["https://raw.githubusercontent.com/google/protobuf/master/LICENSE"]],
375
- ["googleapis-common-protos-types", "Apache-2.0", ["https://raw.githubusercontent.com/googleapis/api-common-protos/master/LICENSE"]],
376
- ["googleapis-common-protos", "Apache-2.0", ["https://raw.githubusercontent.com/googleapis/googleapis/master/LICENSE"]],
377
- ["grpc-google-iam-v1", "Apache-2.0", ["https://raw.githubusercontent.com/googleapis/googleapis/master/LICENSE"]],
378
- ["grpc", "Apache-2.0", ["https://raw.githubusercontent.com/grpc/grpc/master/LICENSE"]],
379
- ["get_process_mem", "MIT", ["https://raw.githubusercontent.com/schneems/get_process_mem/master/README.md"]],
380
- ["hoe", "MIT", ["https://raw.githubusercontent.com/seattlerb/hoe/master/README.rdoc"]],
381
- ["html-proofer", "MIT", ["https://raw.githubusercontent.com/gjtorikian/html-proofer/main/LICENSE.txt"]],
382
- ["http-accept", "MIT", ["https://raw.githubusercontent.com/socketry/http-accept/master/README.md"]],
383
- ["http_parser.rb", nil, ["https://raw.githubusercontent.com/tmm1/http_parser.rb/master/LICENSE-MIT"]],
384
- ["inspec-msccm", nil, [canonical("Chef-MLSA")]],
385
- ["inspec-scap", nil, [canonical("Chef-MLSA")]],
386
- ["interception", "MIT", ["https://raw.githubusercontent.com/ConradIrwin/interception/master/LICENSE.MIT"]],
387
- ["io-wait", "BSD-2-Clause", ["https://raw.githubusercontent.com/ruby/io-wait/master/COPYING"]],
388
- ["jaro_winkler", "MIT", ["https://raw.githubusercontent.com/tonytonyjan/jaro_winkler/master/LICENSE.txt"]],
389
- ["json_pure", nil, ["https://raw.githubusercontent.com/flori/json/master/README.md"]],
390
- ["jwt", nil, ["https://raw.githubusercontent.com/jwt/ruby-jwt/master/LICENSE"]],
391
- ["libv8", "MIT", ["https://raw.githubusercontent.com/rubyjs/libv8/master/README.md"]],
392
- ["lockfile", "Ruby", ["https://rubygems.org/gems/lockfile"]],
393
- ["minitar", "Ruby", ["https://raw.githubusercontent.com/atoulme/minitar/master/README"]],
394
- ["minitest", nil, ["https://raw.githubusercontent.com/seattlerb/minitest/master/README.rdoc"]],
395
- ["minitest-sprint", "MIT", ["https://raw.githubusercontent.com/seattlerb/minitest-sprint/master/README.rdoc"]],
396
- ["mocha", "MIT", ["https://raw.githubusercontent.com/freerange/mocha/master/MIT-LICENSE.md"]],
397
- ["multipart-post", "MIT", ["https://raw.githubusercontent.com/socketry/multipart-post/main/README.md"]],
398
- ["net-http-spy", "Public-Domain", ["https://raw.githubusercontent.com/martinbtt/net-http-spy/master/readme.markdown"]],
399
- ["net-protocol", "BSD-2-Clause", ["https://raw.githubusercontent.com/ruby/net-protocol/master/LICENSE.txt"]],
400
- ["nio4r", "MIT", ["https://raw.githubusercontent.com/socketry/nio4r/master/README.md"]],
401
- ["omniauth-chef", nil, ["https://raw.githubusercontent.com/chef/omniauth-chef/master/README.md"]],
402
- ["options", "Ruby", ["https://rubygems.org/gems/options"]],
403
- ["os", "MIT", ["https://raw.githubusercontent.com/rdp/os/master/LICENSE"]],
404
- ["overcommit", nil, ["https://raw.githubusercontent.com/brigade/overcommit/master/MIT-LICENSE"]],
405
- ["parser", "MIT", ["https://raw.githubusercontent.com/whitequark/parser/v2.7.2.0/LICENSE.txt"]],
406
- ["parslet", "MIT", ["https://raw.githubusercontent.com/kschiess/parslet/master/LICENSE"]],
407
- ["path_expander", "MIT", ["https://raw.githubusercontent.com/seattlerb/path_expander/master/README.rdoc"]],
408
- ["pbkdf2", "MIT", ["https://raw.githubusercontent.com/emerose/pbkdf2-ruby/master/LICENSE.TXT"]],
409
- ["rack-accept", "MIT", ["https://raw.githubusercontent.com/mjackson/rack-accept/master/README.md"]],
410
- ["rails-deprecated_sanitizer", nil, ["https://raw.githubusercontent.com/rails/rails-deprecated_sanitizer/master/LICENSE"]],
411
- ["rails-html-sanitizer", nil, ["https://raw.githubusercontent.com/rails/rails-html-sanitizer/master/MIT-LICENSE"]],
412
- ["rails", nil, ["https://raw.githubusercontent.com/rails/rails/master/README.md"]],
413
- ["railties", nil, ["https://raw.githubusercontent.com/rails/rails/master/railties/MIT-LICENSE"]],
414
- ["rchardet", "LGPL", ["https://raw.githubusercontent.com/jmhodges/rchardet/master/LGPL-LICENSE.txt"]],
415
- ["ref", "MIT", ["https://raw.githubusercontent.com/ruby-concurrency/ref/master/MIT_LICENSE"]],
416
- ["rdoc", "Ruby", ["https://raw.githubusercontent.com/ruby/rdoc/master/LICENSE.rdoc"]],
417
- ["rest-client", "MIT", ["https://raw.githubusercontent.com/rest-client/rest-client/master/LICENSE"]],
418
- ["rly", "MIT", ["https://raw.githubusercontent.com/farcaller/rly/master/LICENSE.txt"]],
419
- ["rspec-rerun", nil, ["https://raw.githubusercontent.com/dblock/rspec-rerun/master/LICENSE.md"]],
420
- ["ruby2_keywords", "BSD-2-Clause", ["https://raw.githubusercontent.com/ruby/ruby2_keywords/master/LICENSE"]],
421
- ["rubyzip", nil, ["https://raw.githubusercontent.com/rubyzip/rubyzip/master/README.md"]],
422
- ["simplecov_json_formatter", "MIT", ["https://raw.githubusercontent.com/codeclimate-community/simplecov_json_formatter/master/LICENSE"]],
423
- ["sfl", "Ruby", ["https://raw.githubusercontent.com/ujihisa/spawn-for-legacy/master/LICENCE.md"]],
424
- ["slack-notifier", "MIT", ["https://raw.githubusercontent.com/stevenosloan/slack-notifier/master/LICENSE"]],
425
- ["sslshake", "MPL-2.0", ["https://raw.githubusercontent.com/arlimus/sslshake/master/README.md"]],
426
- ["sprockets", "MIT", ["https://raw.githubusercontent.com/rails/sprockets/master/MIT-LICENSE"]],
427
- ["sqlite3-ruby", "BSD-3", ["https://raw.githubusercontent.com/sparklemotion/sqlite3-ruby/master/LICENSE"]],
428
- ["strscan", "BSD-2-Clause", ["https://raw.githubusercontent.com/ruby/strscan/master/LICENSE.txt"]],
429
- ["structured_warnings", "MIT", ["https://raw.githubusercontent.com/schmidt/structured_warnings/master/LICENSE.txt"]],
430
- ["therubyracer", "MIT", ["https://raw.githubusercontent.com/rubyjs/therubyracer/master/README.md"]],
431
- ["thin", "BSD-2-Clause", ["https://raw.githubusercontent.com/macournoyer/thin/master/README.md"]],
432
- ["time", "BSD-2-Clause", ["https://raw.githubusercontent.com/ruby/time/master/LICENSE.txt"]],
433
- ["timeout", "BSD-2-Clause", ["https://raw.githubusercontent.com/ruby/timeout/master/LICENSE.txt"]],
434
- ["unicorn-rails", "MIT", ["https://raw.githubusercontent.com/samuelkadolph/unicorn-rails/master/LICENSE"]],
435
- ["uri_template", "MIT", ["https://raw.githubusercontent.com/hannesg/uri_template/master/uri_template.gemspec"]],
436
- ["url", "MIT", ["https://raw.githubusercontent.com/tal/URL/master/LICENSE"]],
437
- ["websocket-driver", nil, ["https://raw.githubusercontent.com/faye/websocket-driver-ruby/master/LICENSE.md"]],
438
- ["websocket-extensions", nil, ["https://raw.githubusercontent.com/faye/websocket-extensions-ruby/master/LICENSE.md"]],
439
- ["win32-api", "Artistic-2.0", ["https://raw.githubusercontent.com/cosmo0920/win32-api/master/README.md"]],
440
- ["win32-dir", "Artistic-2.0", ["https://raw.githubusercontent.com/chef/win32-dir/ffi/README.md"]],
441
- ["win32-event", "Artistic-2.0", ["https://raw.githubusercontent.com/chef/win32-event/ffi/README"]],
442
- ["win32-eventlog", "Artistic-2.0", ["https://raw.githubusercontent.com/chef/win32-eventlog/ffi/README"]],
443
- ["win32-ipc", "Artistic-2.0", ["https://raw.githubusercontent.com/chef/win32-ipc/ffi/README.md"]],
444
- ["win32-mmap", "Artistic-2.0", ["https://raw.githubusercontent.com/chef/win32-mmap/ffi/README.md"]],
445
- ["win32-mutex", "Artistic-2.0", ["https://raw.githubusercontent.com/chef/win32-mutex/ffi/README.md"]],
446
- ["win32-process", "Artistic-2.0", ["https://raw.githubusercontent.com/chef/win32-process/ffi/README.md"]],
447
- ["win32-service", "Artistic-2.0", ["https://raw.githubusercontent.com/chef/win32-service/ffi/README.md"]],
448
- ["win32-taskscheduler", "Artistic-2.0", ["https://raw.githubusercontent.com/chef/win32-taskscheduler/ole/README.md"]],
449
- ["windows-api", "Artistic-2.0", ["https://raw.githubusercontent.com/cosmo0920/windows-api/master/README"]],
450
- ["word-salad", "MIT", ["https://raw.githubusercontent.com/alexvollmer/word_salad/master/README.txt"]],
451
- ["xml-simple", "MIT", ["https://raw.githubusercontent.com/maik/xml-simple/master/LICENSE"]],
452
- ["zonefile", "MIT", ["https://raw.githubusercontent.com/boesemar/zonefile/master/LICENSE"]],
453
- ["sync", "BSD-2-Clause", ["https://raw.githubusercontent.com/ruby/sync/master/LICENSE.txt"]],
454
- ["crack", "MIT", ["https://github.com/jnunemaker/crack/blob/master/LICENSE"]],
455
- ]
456
- (aws_sdk_gems + other_gems).each do |override_data|
457
- override_license "ruby_bundler", override_data[0] do |version|
458
- {}.tap do |d|
459
- d[:license] = override_data[1] if override_data[1]
460
- d[:license_files] = override_data[2] if override_data[2]
461
- end
462
- end
463
- end
464
-
465
- # chef_berkshelf
466
- [
467
- ["apt", nil, ["https://raw.githubusercontent.com/chef-cookbooks/apt/master/LICENSE"]],
468
- ["chef-ha-drbd", nil, ["https://raw.githubusercontent.com/chef/chef-server/master/LICENSE"]],
469
- ["private-chef", nil, ["https://raw.githubusercontent.com/chef/chef-server/master/LICENSE"]],
470
- ["chef-sugar", nil, ["https://raw.githubusercontent.com/chef/chef-sugar/master/LICENSE"]],
471
- ["openssl", nil, ["https://raw.githubusercontent.com/chef-cookbooks/openssl/master/LICENSE"]],
472
- ["runit", nil, ["https://raw.githubusercontent.com/chef-cookbooks/runit/master/LICENSE"]],
473
- ["yum", nil, ["https://raw.githubusercontent.com/chef-cookbooks/yum/master/LICENSE"]],
474
- ["compat_resource", nil, ["https://raw.githubusercontent.com/chef-cookbooks/compat_resource/master/LICENSE"]],
475
- ["yum-epel", nil, ["https://raw.githubusercontent.com/chef-cookbooks/yum-epel/master/LICENSE"]],
476
- ].each do |override_data|
477
- override_license "chef_berkshelf", override_data[0] do |version|
478
- {}.tap do |d|
479
- d[:license] = override_data[1] if override_data[1]
480
- d[:license_files] = override_data[2] if override_data[2]
481
- end
482
- end
483
- end
484
-
485
- # Most of the overrides for perl_cpan are pointing to the README files
486
- # inside the modules we download to inspect for licensing information.
487
- [
488
- ["sqitch", "MIT", ["https://raw.githubusercontent.com/sqitchers/sqitch/develop/LICENSE.md"]],
489
- ["sqitch", "MIT", ["https://raw.githubusercontent.com/theory/sqitch/master/README.md"]],
490
- ["Scalar-List-Utils", nil, ["README"]],
491
- ["perl", nil, ["README"]],
492
- ["IO", nil, ["README"]],
493
- ["ExtUtils-MakeMaker", "Perl-5", ["http://www.perl.com/perl/misc/Artistic.html"]],
494
- ["PathTools", "Perl-5", ["lib/File/Spec.pm"]],
495
- ["Exporter", nil, ["README"]],
496
- ["Carp", nil, ["README"]],
497
- ["lib", nil, ["Artistic"]],
498
- ["Pod-Escapes", "Perl-5", ["lib/Pod/Escapes.pm"]],
499
- ["Pod-Usage", nil, ["README"]],
500
- ["base", "Perl-5", ["http://www.perl.com/perl/misc/Artistic.html"]],
501
- ["Encode", nil, ["AUTHORS"]],
502
- ["Moo", nil, ["README"]],
503
- ["Sub-Quote", nil, ["README"]],
504
- ["Role-Tiny", nil, ["README"]],
505
- ["Try-Tiny", nil, ["LICENCE"]],
506
- ["Module-Metadata", nil, ["LICENCE"]],
507
- ["constant", nil, ["README"]],
508
- ["Module-Runtime", nil, ["README"]],
509
- ["ExtUtils-Install", nil, ["README"]],
510
- ["File-Path", nil, ["README"]],
511
- ["Getopt-Long", "Perl-5", ["README"]],
512
- ["ExtUtils-ParseXS", "Perl-5", ["META.json"]],
513
- ["version", nil, ["README"]],
514
- ["Data-Dumper", "Perl-5", ["Dumper.pm"]],
515
- ["Test-Harness", nil, ["README"]],
516
- ["Text-ParseWords", nil, ["README"]],
517
- ["Devel-GlobalDestruction", nil, ["README"]],
518
- ["XSLoader", nil, ["README"]],
519
- ["IPC-Cmd", nil, ["README"]],
520
- ["Pod-Parser", "Perl-5", ["README"]],
521
- ["Config-GitLike", nil, ["lib/Config/GitLike.pm"]],
522
- ["Test-Exception", nil, ["lib/Test/Exception.pm"]],
523
- ["MooX-Types-MooseLike", nil, ["README"]],
524
- ["String-ShellQuote", "Perl-5", ["README"]],
525
- ["Time-HiRes", nil, ["README"]],
526
- ["Test", "Perl-5", ["README"]],
527
- ["parent", nil, ["lib/parent.pm"]],
528
- ["MIME-Base64", nil, ["README"]],
529
- ["Sub-Identify", nil, ["lib/Sub/Identify.pm"]],
530
- ["namespace-autoclean", nil, ["README"]],
531
- ["B-Hooks-EndOfScope", nil, ["README"]],
532
- ["namespace-clean", nil, ["lib/namespace/clean.pm"]],
533
- ["Test-Deep", nil, ["lib/Test/Deep.pm"]],
534
- ["IO-Pager", "Perl-5", ["README"]],
535
- ["libintl-perl", "GPL-3.0", ["COPYING"]],
536
- ["Storable", "Perl-5", ["README"]],
537
- ["Test-Warnings", "Artistic-1.0", ["LICENCE"]],
538
- ["Test-Dir", nil, ["README"]],
539
- ["Digest-SHA", nil, ["README"]],
540
- ["Test-File-Contents", nil, ["README"]],
541
- ["Digest-MD5", nil, ["README"]],
542
- ["Algorithm-Diff", "Perl-5", ["lib/Algorithm/Diff.pm"]],
543
- ["Encode-Locale", nil, ["README"]],
544
- ["Hash-Merge", nil, ["README.md"]],
545
- ["Clone", nil, ["README"]],
546
- ["Clone-Choose", nil, ["README.md"]],
547
- ["URI-db", nil, ["README"]],
548
- ["URI-Nested", nil, ["README.md"]],
549
- ["Test-utf8", nil, ["README"]],
550
- ["Class-Singleton", "Perl-5", ["README"]],
551
- ["Devel-PPPort", "Perl-5", ["Makefile.PL"]],
552
- ["Digest-SHA1", nil, ["README"]],
553
- ["JSON-PP", nil, ["README"]],
554
- ["MRO-Compat", nil, ["README"]],
555
- ["MouseX-NativeTraits", "Artistic-1.0", ["lib/MouseX/NativeTraits.pm"]],
556
- ["MouseX-Types", "Artistic-1.0", ["lib/MouseX/Types.pm"]],
557
- ["MouseX-Types-Path-Class", "Artistic-1.0", ["lib/MouseX/Types/Path/Class.pm"]],
558
- ["Test-UseAllModules", nil, ["README"]],
559
- ["Variable-Magic", nil, ["README"]],
560
- ["Class-Data-Inheritable", nil, ["https://raw.githubusercontent.com/tmtmtmtm/class-data-inheritable/master/README"]],
561
- ["File-ShareDir", "Perl-5", ["lib/File/ShareDir.pm"]],
562
- ["TermReadKey", "nil", ["README"]],
563
- ].each do |override_data|
564
- override_license "perl_cpanm", override_data[0] do |version|
565
- {}.tap do |d|
566
- d[:license] = override_data[1] if override_data[1]
567
- d[:license_files] = override_data[2] if override_data[2]
568
- end
569
- end
570
- end
571
-
572
- # erlang_rebar
573
- [
574
- ["sync", "MIT", ["https://raw.githubusercontent.com/rustyio/sync/11df81d196eaab2d84caa3fbe8def5d476ef79d8/src/sync.erl"]],
575
- ["rebar_vsn_plugin", "Apache-2.0", ["https://raw.githubusercontent.com/erlware/rebar_vsn_plugin/master/src/rebar_vsn_plugin.erl"]],
576
- ["edown", "Erlang-Public", ["https://raw.githubusercontent.com/seth/edown/master/NOTICE"]],
577
- ["bcrypt", "Multiple", ["https://raw.githubusercontent.com/chef/erlang-bcrypt/master/LICENSE"]],
578
- ["amqp_client", "MPL-2.0", ["https://raw.githubusercontent.com/seth/amqp_client/7622ad8093a41b7288a1aa44dd16d3e92ce8f833/src/amqp_connection.erl"]],
579
- ["erlsom", "LGPL-3.0", ["https://raw.githubusercontent.com/willemdj/erlsom/c5ca9fca1257f563d78b048e35ac60832ec80584/COPYING", "https://raw.githubusercontent.com/willemdj/erlsom/c5ca9fca1257f563d78b048e35ac60832ec80584/COPYING.LESSER"]],
580
- ["gen_server2", "Public-Domain", ["https://raw.githubusercontent.com/mdaguete/gen_server2/master/README.md"]],
581
- ["opscoderl_folsom", "Apache-2.0", ["https://raw.githubusercontent.com/chef/opscoderl_folsom/master/README.md"]],
582
- ["quickrand", "BSD-2-Clause", ["https://raw.githubusercontent.com/okeuday/quickrand/master/README.markdown"]],
583
- ["rabbit_common", "MPL-2.0", ["https://raw.githubusercontent.com/muxspace/rabbit_common/master/include/rabbit_msg_store.hrl"]],
584
- ["uuid", "BSD-2-Clause", ["https://raw.githubusercontent.com/okeuday/uuid/master/README.markdown"]],
585
- ["ibrowse", "BSD-2-Clause", nil],
586
- ["eunit_formatters", "Apache-2.0", ["https://raw.githubusercontent.com/seancribbs/eunit_formatters/master/README.md"]],
587
- ["erlware_commons", "MIT", ["https://raw.githubusercontent.com/erlware/erlware_commons/master/COPYING"]],
588
- ["erlcloud", "BSD-2-Clause", ["https://raw.githubusercontent.com/erlcloud/erlcloud/master/COPYRIGHT"]],
589
- ["lhttpc", "BSD-3-Clause", ["https://raw.githubusercontent.com/erlcloud/lhttpc/master/LICENCE"]],
590
- ["getopt", "MIT", nil],
591
- ["relx", "Apache-2.0", ["https://raw.githubusercontent.com/erlware/relx/master/LICENSE.md"]],
592
- ].each do |override_data|
593
- override_license "erlang_rebar", override_data[0] do |version|
594
- {}.tap do |d|
595
- d[:license] = override_data[1] if override_data[1]
596
- d[:license_files] = override_data[2] if override_data[2]
597
- end
598
- end
599
- end
600
-
601
- # js_npm
602
- [
603
- ["ignore", "MIT", ["https://raw.githubusercontent.com/kaelzhang/node-ignore/master/LICENSE-MIT"]],
604
- ["hock", "MIT", nil],
605
- ["known-css-properties", nil, [canonical("MIT")]],
606
- ["buffer-indexof", "MIT", nil],
607
- ["stdout-stream", "MIT", nil],
608
- ["thunky", "MIT", [canonical("MIT")]],
609
- ["core-object", nil, [canonical("MIT")]],
610
- ["css-parse", nil, [canonical("MIT")]],
611
- ["denodeify", nil, [canonical("MIT")]],
612
- ["detect-node", nil, [canonical("MIT")]],
613
- ["ember-cli-normalize-entity-name", nil, [canonical("MIT")]],
614
- ["ember-cli-string-utils", nil, [canonical("MIT")]],
615
- ["ensure-posix-path", nil, [canonical("MIT")]],
616
- ["handle-thing", nil, [canonical("MIT")]],
617
- ["hash-base", nil, [canonical("MIT")]],
618
- ["heimdalljs", nil, [canonical("MIT")]],
619
- ["hmac-drbg", nil, [canonical("MIT")]],
620
- ["hpack.js", nil, [canonical("MIT")]],
621
- ["http-deceiver", nil, [canonical("MIT")]],
622
- ["icss-utils", nil, [canonical("MIT")]],
623
- ["inflection", nil, [canonical("MIT")]],
624
- ["ip", nil, [canonical("MIT")]],
625
- ["karma-source-map-support", nil, [canonical("MIT")]],
626
- ["loader-runner", nil, [canonical("MIT")]],
627
- ["magic-string", nil, [canonical("MIT")]],
628
- ["matcher-collection", nil, [canonical("MIT")]],
629
- ["minimalistic-crypto-utils", nil, [canonical("MIT")]],
630
- ["node-modules-path", nil, [canonical("MIT")]],
631
- ["obuf", nil, [canonical("MIT")]],
632
- ["rx-lite-aggregates", nil, [canonical("MIT")]],
633
- ["script-loader", nil, [canonical("MIT")]],
634
- ["select-hose", nil, [canonical("MIT")]],
635
- ["selfsigned", nil, [canonical("MIT")]],
636
- ["silent-error", nil, [canonical("MIT")]],
637
- ["spdy", nil, [canonical("MIT")]],
638
- ["spdy-transport", nil, [canonical("MIT")]],
639
- ["vlq", nil, [canonical("MIT")]],
640
- ["wbuf", nil, [canonical("MIT")]],
641
- ["copy-to-clipboard", nil, [canonical("MIT")]],
642
- ["toggle-selection", nil, [canonical("MIT")]],
643
- ["isarray", nil, [canonical("MIT")]],
644
- ["array-filter", nil, [canonical("MIT")]],
645
- ["cssauron", nil, [canonical("MIT")]],
646
- ["path-parse", nil, [canonical("MIT")]],
647
- ["semver-dsl", nil, [canonical("MIT")]],
648
- ["chokidar", nil, ["README.md"]],
649
- ["set-immediate-shim", "MIT", ["https://raw.githubusercontent.com/sindresorhus/set-immediate-shim/master/license"]],
650
- ["process-nextick-args", nil, [canonical("MIT")]],
651
- ["buffer-shims", nil, [canonical("MIT")]],
652
- ["brace-expansion", nil, ["README.md"]],
653
- ["verror", "MIT", ["https://raw.githubusercontent.com/joyent/node-verror/master/LICENSE"]],
654
- # From the json-schema readme:
655
- # Code is licensed under the AFL or BSD license as part of the
656
- # Persevere project which is administered under the Dojo foundation,
657
- # and all contributions require a Dojo CLA.
658
- ["json-schema", "BSD", ["https://raw.githubusercontent.com/dojo/dojo/master/LICENSE"]],
659
- ["tweetnacl", "BSD", ["https://raw.githubusercontent.com/dchest/tweetnacl-js/master/LICENSE"]],
660
- ["assert-plus", "MIT", ["README.md"]],
661
- ["sntp", "BSD-3-Clause", nil],
662
- ["node-uuid", "MIT", nil],
663
- ["ms", "MIT", nil],
664
- ["jsonpointer", nil, ["https://raw.githubusercontent.com/janl/node-jsonpointer/master/LICENSE.md"]],
665
- ["has-color", nil, ["https://raw.githubusercontent.com/chalk/supports-color/master/license"]],
666
- ["generate-function", nil, ["https://raw.githubusercontent.com/mafintosh/generate-function/master/LICENSE"]],
667
- ["extsprintf", "MIT", nil],
668
- ["dashdash", nil, ["https://raw.githubusercontent.com/trentm/node-dashdash/master/LICENSE.txt"]],
669
- # The link here is what's included in the readme
670
- ["async-each", nil, ["https://raw.githubusercontent.com/paulmillr/mit/master/README.md"]],
671
- # README on https://www.npmjs.com/package/indexof just says "MIT"
672
- ["indexof", "MIT", [canonical("MIT")]],
673
- ["querystring", "MIT", nil],
674
- ["timers-browserify", "MIT", nil],
675
- ["shell-quote", nil, ["https://raw.githubusercontent.com/substack/node-shell-quote/master/LICENSE"]],
676
- ["querystring-es3", "MIT", nil],
677
- ["xtend", "MIT", nil],
678
- ["source-map", nil, ["https://raw.githubusercontent.com/mozilla/source-map/master/LICENSE"]],
679
- ["randombytes", nil, [canonical("MIT")]],
680
- ["public-encrypt", nil, [canonical("MIT")]],
681
- ["parse-asn1", nil, [canonical("ISC")]],
682
- ["evp_bytestokey", nil, [canonical("MIT")]],
683
- ["cipher-base", nil, [canonical("MIT")]],
684
- ["asn1.js", nil, ["README.md"]],
685
- ["minimalistic-assert", nil, [canonical("ISC")]],
686
- ["bn.js", nil, ["README.md"]],
687
- ["diffie-hellman", nil, [canonical("MIT")]],
688
- ["miller-rabin", nil, ["README.md"]],
689
- ["brorand", nil, ["README.md"]],
690
- ["create-hmac", nil, [canonical("MIT")]],
691
- ["create-hash", nil, [canonical("MIT")]],
692
- ["browserify-aes", "MIT", ["https://raw.githubusercontent.com/crypto-browserify/browserify-aes/master/LICENSE"]],
693
- ["ripemd160", nil, ["https://raw.githubusercontent.com/crypto-browserify/ripemd160/master/LICENSE"]],
694
- ["create-ecdh", nil, [canonical("MIT")]],
695
- ["elliptic", nil, ["README.md"]],
696
- ["hash.js", nil, ["README.md"]],
697
- ["adm-zip", nil, ["https://raw.githubusercontent.com/cthackers/adm-zip/master/MIT-LICENSE.txt"]],
698
- ["after", "MIT", nil],
699
- ["agent-base", nil, ["README.md"]],
700
- ["angular2-cookie", "MIT", ["https://raw.githubusercontent.com/salemdar/angular2-cookie/master/LICENSE"]],
701
- ["angular-embedly", "BSD-2-Clause", nil],
702
- ["angular-feature-flags", nil, ["https://mjt01.mit-license.org/"]],
703
- ["angular-restmod", "MIT", nil],
704
- ["angular-spinner", nil, [canonical("MIT")]],
705
- ["angular2-router-loader", "MIT", ["README.md"]],
706
- ["ansi", "MIT", ["https://raw.githubusercontent.com/TooTallNate/ansi.js/master/LICENSE"]],
707
- ["ansi-regex", nil, ["https://raw.githubusercontent.com/chalk/ansi-regex/master/license"]],
708
- ["ansi-styles", nil, [canonical("MIT")]],
709
- ["ansi_up", "MIT", ["Readme.md"]],
710
- ["are-we-there-yet", nil, ["https://raw.githubusercontent.com/iarna/are-we-there-yet/master/LICENSE"]],
711
- ["arraybuffer.slice", "MIT", ["README.md"]],
712
- ["asn1", "MIT", nil],
713
- ["async-foreach", "MIT", nil],
714
- ["aws-sign2", "Apache-2.0", nil],
715
- ["babel", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
716
- ["babel-code-frame", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
717
- ["babel-core", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
718
- ["babel-generator", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
719
- ["babel-helper-call-delegate", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
720
- ["babel-helper-define-map", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
721
- ["babel-helper-function-name", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
722
- ["babel-helper-get-function-arity", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
723
- ["babel-helper-hoist-variables", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
724
- ["babel-helper-optimise-call-expression", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
725
- ["babel-helper-regex", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
726
- ["babel-helper-replace-supers", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
727
- ["babel-helpers", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
728
- ["babel-messages", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
729
- ["babel-plugin-check-es2015-constants", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
730
- ["babel-plugin-syntax-async-functions", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
731
- ["babel-plugin-transform-es2015-arrow-functions", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
732
- ["babel-plugin-transform-es2015-block-scoped-functions", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
733
- ["babel-plugin-transform-es2015-block-scoping", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
734
- ["babel-plugin-transform-es2015-classes", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
735
- ["babel-plugin-transform-es2015-computed-properties", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
736
- ["babel-plugin-transform-es2015-destructuring", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
737
- ["babel-plugin-transform-es2015-duplicate-keys", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
738
- ["babel-plugin-transform-es2015-for-of", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
739
- ["babel-plugin-transform-es2015-function-name", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
740
- ["babel-plugin-transform-es2015-literals", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
741
- ["babel-plugin-transform-es2015-modules-amd", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
742
- ["babel-plugin-transform-es2015-modules-commonjs", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
743
- ["babel-plugin-transform-es2015-modules-systemjs", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
744
- ["babel-plugin-transform-es2015-modules-umd", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
745
- ["babel-plugin-transform-es2015-object-super", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
746
- ["babel-plugin-transform-es2015-parameters", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
747
- ["babel-plugin-transform-es2015-shorthand-properties", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
748
- ["babel-plugin-transform-es2015-spread", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
749
- ["babel-plugin-transform-es2015-sticky-regex", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
750
- ["babel-plugin-transform-es2015-template-literals", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
751
- ["babel-plugin-transform-es2015-typeof-symbol", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
752
- ["babel-plugin-transform-es2015-unicode-regex", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
753
- ["babel-plugin-transform-strict-mode", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
754
- ["babel-preset-es2015", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
755
- ["babel-register", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
756
- ["babel-runtime", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
757
- ["babel-template", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
758
- ["babel-traverse", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
759
- ["babel-types", nil, ["https://raw.githubusercontent.com/babel/babel/master/LICENSE"]],
760
- ["backo2", nil, ["https://raw.githubusercontent.com/mokesmokes/backo/master/LICENSE"]],
761
- ["balanced-match", nil, ["https://raw.githubusercontent.com/juliangruber/balanced-match/master/LICENSE.md"]],
762
- ["base64id", "MIT", ["https://raw.githubusercontent.com/faeldt/base64id/master/LICENSE"]],
763
- ["batch", nil, ["Readme.md"]],
764
- ["bcrypt-pbkdf", nil, [canonical("BSD-4-Clause")]],
765
- ["better-assert", "MIT", ["https://raw.githubusercontent.com/tj/better-assert/master/LICENSE"]],
766
- ["binary", nil, [canonical("MIT")]],
767
- ["bindings", nil, ["README.md"]],
768
- ["blob", "MIT", ["https://raw.githubusercontent.com/webmodules/blob/master/LICENSE"]],
769
- ["bluebird", nil, ["https://raw.githubusercontent.com/petkaantonov/bluebird/master/LICENSE"]],
770
- ["browserify-cipher", nil, [canonical("MIT")]],
771
- ["browserify-des", nil, [canonical("MIT")]],
772
- ["browserify-zlib", nil, ["https://raw.githubusercontent.com/devongovett/browserify-zlib/master/LICENSE"]],
773
- ["buffers", "MIT", [canonical("MIT")]],
774
- ["bufferutil", nil, [canonical("MIT")]],
775
- ["builtins", nil, ["https://raw.githubusercontent.com/juliangruber/builtins/master/License"]],
776
- ["cached-path-relative", "MIT", ["Readme.md"]],
777
- # https://www.npmjs.com/package/callsite
778
- ["callsite", "MIT", [canonical("MIT")]],
779
- ["caseless", nil, ["https://raw.githubusercontent.com/request/caseless/master/LICENSE"]],
780
- ["chainsaw", nil, ["https://raw.githubusercontent.com/substack/node-chainsaw/master/LICENSE", canonical("MIT")]],
781
- ["chalk", nil, ["https://raw.githubusercontent.com/chalk/chalk/master/license"]],
782
- ["cli", nil, ["README.md"]],
783
- ["cloneextend", "MIT", [canonical("MIT")]],
784
- ["combined-stream", "MIT", nil],
785
- ["commander", nil, ["https://raw.githubusercontent.com/tj/commander.js/master/LICENSE"]],
786
- ["commondir", nil, ["https://raw.githubusercontent.com/substack/node-commondir/master/LICENSE"]],
787
- ["component-bind", "MIT", ["https://raw.githubusercontent.com/component/bind/master/LICENSE"]],
788
- ["component-emitter", "MIT", ["https://raw.githubusercontent.com/component/emitter/master/LICENSE"]],
789
- ["component-inherit", "MIT", ["https://raw.githubusercontent.com/component/inherit/master/LICENSE"]],
790
- ["constants-browserify", nil, ["README.md"]],
791
- ["cookie-signature", nil, ["Readme.md"]],
792
- ["core-util-is", nil, ["https://raw.githubusercontent.com/isaacs/core-util-is/master/LICENSE"]],
793
- ["ctype", "MIT", nil],
794
- ["custom-event", nil, [canonical("MIT")]],
795
- ["delayed-stream", "MIT", nil],
796
- ["des.js", nil, ["README.md"]],
797
- ["dom-serialize", nil, [canonical("MIT")]],
798
- ["domelementtype", "BSD-2-Clause", nil],
799
- ["domhandler", "BSD-2-Clause", nil],
800
- ["domutils", "BSD-2-Clause", nil],
801
- ["engine.io-parser", "MIT", nil],
802
- ["esprima-fb", nil, ["https://raw.githubusercontent.com/facebookarchive/esprima/fb-harmony/LICENSE.BSD"]],
803
- ["falafel", nil, [canonical("MIT")]],
804
- ["filename-regex", nil, ["https://raw.githubusercontent.com/regexhq/filename-regex/master/LICENSE"]],
805
- ["font-awesome", nil, ["http://scripts.sil.org/OFL", canonical("MIT")]],
806
- ["get-caller-file", nil, [canonical("ISC")]],
807
- ["get-stdin", nil, ["https://raw.githubusercontent.com/sindresorhus/get-stdin/master/license"]],
808
- ["has-ansi", nil, ["https://raw.githubusercontent.com/chalk/has-ansi/master/license"]],
809
- ["has-cors", nil, [canonical("MIT")]],
810
- ["hat", nil, [canonical("MIT")]],
811
- ["https-proxy-agent", nil, ["README.md"]],
812
- ["inherits", "ISC", nil],
813
- ["invariant", nil, [canonical("BSD-3-Clause")]],
814
- ["invert-kv", nil, ["https://raw.githubusercontent.com/sindresorhus/invert-kv/master/license"]],
815
- ["jasmine", nil, [canonical("MIT")]],
816
- ["jasmine-core", nil, ["https://raw.githubusercontent.com/jasmine/jasmine/master/MIT.LICENSE"]],
817
- ["json5", nil, [canonical("MIT")]],
818
- ["jsonify", nil, ["https://raw.githubusercontent.com/substack/jsonify/master/readme.markdown"]],
819
- ["keymaster", "MIT", nil],
820
- ["loose-envify", nil, [canonical("MIT")]],
821
- ["natives", nil, [canonical("ISC")]],
822
- ["ng2d3", "MIT", ["docs/license.md"]],
823
- ["object-component", "MIT", [canonical("MIT")]],
824
- ["options", "MIT", ["README.md"]],
825
- ["over", nil, ["README.md"]],
826
- ["parse-diff", "MIT", nil],
827
- ["parsejson", nil, ["https://raw.githubusercontent.com/get/parsejson/master/LICENSE"]],
828
- ["parseqs", nil, ["https://raw.githubusercontent.com/get/querystring/master/LICENSE"]],
829
- ["parseuri", nil, ["https://raw.githubusercontent.com/get/parseuri/master/LICENSE"]],
830
- ["regenerator-runtime", nil, ["https://raw.githubusercontent.com/facebook/regenerator/master/LICENSE"]],
831
- ["rx", nil, ["https://raw.githubusercontent.com/Reactive-Extensions/RxJS/master/license.txt"]],
832
- ["sass-graph", nil, [canonical("MIT")]],
833
- ["sauce-connect-launcher", "MIT", ["README.md"]],
834
- ["saucelabs", "MIT", ["README.md"]],
835
- ["slash", nil, ["https://raw.githubusercontent.com/sindresorhus/slash/master/license"]],
836
- ["socket.io-parser", nil, ["https://raw.githubusercontent.com/socketio/socket.io-parser/master/LICENSE"]],
837
- ["stable", nil, ["README.md"]],
838
- ["strip-ansi", nil, ["https://raw.githubusercontent.com/chalk/strip-ansi/master/license"]],
839
- ["stubby", nil, ["https://raw.githubusercontent.com/mrak/stubby4node/master/APACHE.LICENSE"]],
840
- ["supports-color", nil, ["https://raw.githubusercontent.com/chalk/supports-color/master/license"]],
841
- ["tmp", nil, ["https://raw.githubusercontent.com/raszi/node-tmp/master/LICENSE"]],
842
- ["umd", nil, ["https://raw.githubusercontent.com/ForbesLindesay/umd/master/LICENSE"]],
843
- ["underscore.string", nil, ["README.markdown"]],
844
- ["utf-8-validate", nil, [canonical("MIT")]],
845
- ["w3c-blob", nil, [canonical("MIT")]],
846
- ["wordwrap", nil, ["https://raw.githubusercontent.com/substack/node-wordwrap/master/LICENSE"]],
847
- ["ws", nil, ["README.md"]],
848
- ["delivery-web", "Chef-MLSA", [canonical("Chef-MLSA")]],
849
- ["visibility-web", "Chef-MLSA", [canonical("Chef-MLSA")]],
850
- ["compliance-ui-components", "Chef-MLSA", [canonical("Chef-MLSA")]],
851
- ["angular2-moment", nil, ["https://raw.githubusercontent.com/urish/angular2-moment/master/LICENSE"]],
852
- ["array-differ", nil, ["readme.md"]],
853
- ["babel-polyfill", nil, [canonical("MIT")]],
854
- ["boolbase", nil, ["https://raw.githubusercontent.com/fb55/boolbase/master/LICENSE"]],
855
- ["caller-path", nil, ["readme.md"]],
856
- ["callsites", nil, ["readme.md"]],
857
- ["capture-stack-trace", nil, ["readme.md"]],
858
- ["charenc", "MIT", nil],
859
- ["clipboard", nil, ["readme.md"]],
860
- ["closest", nil, ["README.md"]],
861
- ["coa", nil, [canonical("MIT")]],
862
- ["codelyzer", nil, ["README.md"]],
863
- ["color-convert", "MIT", nil],
864
- ["compression-webpack-plugin", nil, ["README.md"]],
865
- ["configstore", nil, ["readme.md"]],
866
- ["crypt", "MIT", nil],
867
- ["cssbeautify", nil, ["https://raw.githubusercontent.com/senchalabs/cssbeautify/master/README.md"]],
868
- ["csslint", nil, ["https://raw.githubusercontent.com/stubbornella/csslint/master/LICENSE"]],
869
- ["css-color-names", nil, ["README.md"]],
870
- ["css-loader", nil, ["README.md"]],
871
- ["css-selector-tokenizer", "MIT", ["README.md"]],
872
- ["delegate", "MIT", ["readme.md"]],
873
- ["enhanced-resolve", nil, ["https://raw.githubusercontent.com/webpack/enhanced-resolve/master/README.md"]],
874
- ["electron-releases", "MIT", ["readme.md"]],
875
- ["errno", nil, ["README.md"]],
876
- ["es6-promise-loader", nil, ["README.md"]],
877
- ["es6-promisify", nil, ["README.md"]],
878
- ["esrecurse", nil, ["https://raw.githubusercontent.com/estools/esrecurse/master/README.md"]],
879
- ["exit-hook", nil, ["readme.md"]],
880
- ["exports-loader", nil, ["README.md"]],
881
- ["expose-loader", nil, ["README.md"]],
882
- ["extract-text-webpack-plugin", nil, ["README.md"]],
883
- ["extract-zip", nil, [canonical("BSD-2-Clause")]],
884
- ["fastparse", nil, ["README.md"]],
885
- ["faye-websocket", "MIT", ["README.md"]],
886
- ["file-loader", nil, ["README.md"]],
887
- ["good-listener", nil, ["readme.md"]],
888
- ["html-comment-regex", nil, ["README.md"]],
889
- ["http-proxy-agent", nil, ["README.md"]],
890
- ["icss-replace-symbols", nil, ["README.md"]],
891
- ["imports-loader", nil, ["README.md"]],
892
- ["imurmurhash", nil, ["README.md"]],
893
- ["inquirer", nil, ["README.md"]],
894
- ["is-npm", nil, ["readme.md"]],
895
- ["is-path-cwd", nil, ["readme.md"]],
896
- ["is-path-in-cwd", nil, ["readme.md"]],
897
- ["is-path-inside", nil, ["readme.md"]],
898
- ["istanbul", nil, ["README.md"]],
899
- ["istanbul-instrumenter-loader", nil, ["README.md"]],
900
- ["karma-webpack", nil, ["README.md"]],
901
- ["lowercase-keys", nil, ["readme.md"]],
902
- ["macaddress", nil, [canonical("MIT")]],
903
- ["make-error", nil, ["README.md"]],
904
- ["matches-selector", nil, ["Readme.md"]],
905
- ["math-random", nil, [canonical("MIT")]],
906
- ["memory-fs", "MIT", ["README.md"]],
907
- ["mime", "MIT", nil],
908
- ["multipipe", nil, ["Readme.md"]],
909
- ["ncname", nil, ["readme.md"]],
910
- ["ng2-gravatar-directive", nil, ["README.md"]],
911
- ["ng2-pagination", nil, ["readme.md"]],
912
- ["node-libs-browser", nil, [canonical("MIT")]],
913
- ["nth-check", nil, ["README.md"]],
914
- ["parserlib", nil, ["https://raw.githubusercontent.com/CSSLint/parser-lib/master/LICENSE"]],
915
- ["phantomjs-polyfill", nil, [canonical("ISC")]],
916
- ["postcss-modules-extract-imports", nil, ["README.md"]],
917
- ["postcss-modules-scope", nil, ["README.md"]],
918
- ["postcss-modules-values", nil, ["README.md"]],
919
- ["progress", "MIT", nil],
920
- ["raw-loader", nil, ["README.md"]],
921
- ["readline2", nil, ["README.md"]],
922
- ["require-uncached", nil, ["readme.md"]],
923
- ["rework", "MIT", ["Readme.md"]],
924
- ["rework-visit", "MIT", ["Readme.md"]],
925
- ["ripemd160", "MIT", ["https://raw.githubusercontent.com/crypto-browserify/ripemd160/master/LICENSE"]],
926
- ["rx-lite", nil, ["readme.md"]],
927
- ["select", "MIT", ["readme.md"]],
928
- ["source-list-map", nil, ["README.md"]],
929
- ["source-map-loader", nil, ["README.md"]],
930
- ["source-map-resolve", "MIT", ["readme.md"]],
931
- ["source-map-url", "MIT", ["readme.md"]],
932
- ["stream-cache", "MIT", ["https://raw.githubusercontent.com/felixge/node-stream-cache/master/License"]],
933
- ["style-loader", nil, ["README.md"]],
934
- ["tapable", nil, [canonical("MIT")]],
935
- ["throttleit", nil, ["Readme.md"]],
936
- ["timed-out", nil, ["readme.md"]],
937
- ["tiny-emitter", nil, [canonical("MIT")]],
938
- ["tryit", nil, ["README.md"]],
939
- ["ts-helper", nil, [canonical("MIT")]],
940
- ["tsify", "MIT", ["README.md"]],
941
- ["tslint-loader", nil, ["README.md"]],
942
- ["tv4", "Public-Domain", ["README.md"]],
943
- ["uglify-js", "MIT", nil],
944
- ["uniqid", nil, ["Readme.md"]],
945
- ["uniqs", nil, ["README.md"]],
946
- ["update-notifier", nil, ["readme.md"]],
947
- ["url-loader", nil, ["README.md"]],
948
- ["utila", nil, ["https://raw.githubusercontent.com/AriaMinaei/utila/master/LICENSE"]],
949
- ["wallaby-webpack", nil, [canonical("MIT")]],
950
- ["watchpack", nil, ["https://raw.githubusercontent.com/webpack/watchpack/master/LICENSE"]],
951
- ["webpack-core", nil, ["README.md"]],
952
- ["webpack-dev-middleware", nil, [canonical("MIT")]],
953
- ["webpack-dev-server", nil, [canonical("MIT")]],
954
- ["webpack-sources", nil, [canonical("MIT")]],
955
- ["websocket-driver", nil, ["README.md"]],
956
- ["websocket-extensions", nil, ["README.md"]],
957
- ["xml-char-classes", nil, ["readme.md"]],
958
- ["zip-object", nil, [canonical("MIT")]],
959
- ["component-closest", nil, ["https://raw.githubusercontent.com/component/closest/master/README.md"]],
960
- ["component-matches-selector", nil, ["https://raw.githubusercontent.com/component/matches-selector/master/Readme.md"]],
961
- ["component-query", nil, ["https://raw.githubusercontent.com/component/query/master/Readme.md"]],
962
- ["webcomponents.js", "BSD-3-Clause", ["https://raw.githubusercontent.com/webcomponents/webcomponentsjs/master/LICENSE.md"]],
963
- ["web-animations-js", "Apache-2.0", ["https://raw.githubusercontent.com/web-animations/web-animations-js/dev/COPYING"]],
964
- ["electron-to-chromium", nil, [canonical("ISC")]],
965
- ["debug", "MIT", ["https://raw.githubusercontent.com/visionmedia/debug/master/LICENSE"]],
966
- ["performance-now", "MIT", ["https://raw.githubusercontent.com/braveg1rl/performance-now/master/license.txt"]],
967
- ["cli-table", "MIT", ["README.md"]],
968
- ["process", "MIT", ["https://raw.githubusercontent.com/defunctzombie/node-process/master/LICENSE"]],
969
- ["rrule", "BSD-3-Clause", ["https://raw.githubusercontent.com/jakubroztocil/rrule/master/LICENCE"]],
970
- # jszip says it is dual licensed under MIT and GPLv3
971
- ["jszip", "MIT", ["https://raw.githubusercontent.com/Stuk/jszip/master/LICENSE.markdown"]],
972
- ["buffer-from", "MIT", ["https://raw.githubusercontent.com/LinusU/buffer-from/master/LICENSE"]],
973
- ["buffer-alloc", nil, [canonical("MIT")]],
974
- ["buffer-alloc-unsafe", nil, [canonical("MIT")]],
975
- ["buffer-fill", nil, [canonical("MIT")]],
976
- ["ipaddr.js", "MIT", ["https://raw.githubusercontent.com/whitequark/ipaddr.js/master/LICENSE"]],
977
- ["psl", "MIT", ["https://raw.githubusercontent.com/wrangr/psl/master/README.md"]],
978
- ["is-my-ip-valid", "MIT", ["https://raw.githubusercontent.com/LinusU/is-my-ip-valid/master/LICENSE"]],
979
- ["minipass", "ISC", ["https://raw.githubusercontent.com/isaacs/minipass/master/LICENSE"]],
980
- ["npm-bundled", "ISC", ["https://raw.githubusercontent.com/npm/npm-bundled/master/LICENSE"]],
981
- ["needle", "MIT", ["https://raw.githubusercontent.com/tomas/needle/master/license.txt"]],
982
- ["uri-js", "BSD-2-Clause", ["https://raw.githubusercontent.com/garycourt/uri-js/master/README.md"]],
983
- ].each do |override_data|
984
- override_license "js_npm", override_data[0] do |version|
985
- {}.tap do |d|
986
- d[:license] = override_data[1] if override_data[1]
987
- d[:license_files] = override_data[2] if override_data[2]
988
- end
989
- end
990
- end
991
-
992
- # go_godep
993
- [
994
- ["github.com/agnivade/easy-scrypt", "MIT", ["https://raw.githubusercontent.com/agnivade/easy-scrypt/master/LICENSE.txt"]],
995
- ["github.com/antonholmquist/jason", "MIT", ["https://raw.githubusercontent.com/antonholmquist/jason/master/LICENSE"]],
996
- ["github.com/aws/aws-sdk-go", "Apache-2.0", ["https://raw.githubusercontent.com/aws/aws-sdk-go/master/LICENSE.txt"]],
997
- ["github.com/beevik/etree", "BSD-2-Clause", ["https://raw.githubusercontent.com/beevik/etree/master/LICENSE"]],
998
- ["github.com/blang/semver", "MIT", ["https://raw.githubusercontent.com/blang/semver/master/LICENSE"]],
999
- ["github.com/BurntSushi/toml", "WTFPL", ["https://raw.githubusercontent.com/BurntSushi/toml/master/COPYING"]],
1000
- ["github.com/codegangsta/cli", "MIT", ["https://raw.githubusercontent.com/urfave/cli/master/LICENSE"]],
1001
- ["github.com/codegangsta/inject", "MIT", ["https://raw.githubusercontent.com/codegangsta/inject/master/LICENSE"]],
1002
- ["github.com/codeskyblue/go-sh", "Apache-2.0", ["https://raw.githubusercontent.com/codeskyblue/go-sh/master/LICENSE"]],
1003
- ["github.com/coreos/go-oidc", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/go-oidc/master/LICENSE"]],
1004
- ["github.com/coreos/go-oidc/http", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/go-oidc/master/LICENSE"]],
1005
- ["github.com/coreos/go-oidc/jose", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/go-oidc/master/LICENSE"]],
1006
- ["github.com/coreos/go-oidc/key", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/go-oidc/master/LICENSE"]],
1007
- ["github.com/coreos/go-oidc/oauth2", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/go-oidc/master/LICENSE"]],
1008
- ["github.com/coreos/go-oidc/oidc", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/go-oidc/master/LICENSE"]],
1009
- ["github.com/coreos/go-systemd/journal", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/go-systemd/master/LICENSE"]],
1010
- ["github.com/coreos/pkg", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/pkg/master/LICENSE"]],
1011
- ["github.com/coreos/pkg/capnslog", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/pkg/master/LICENSE"]],
1012
- ["github.com/coreos/pkg/health", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/pkg/master/LICENSE"]],
1013
- ["github.com/coreos/pkg/httputil", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/pkg/master/LICENSE"]],
1014
- ["github.com/coreos/pkg/timeutil", "Apache-2.0", ["https://raw.githubusercontent.com/coreos/pkg/master/LICENSE"]],
1015
- ["github.com/ctdk/chefcrypto", "Apache-2.0", ["https://raw.githubusercontent.com/ctdk/chefcrypto/master/LICENSE"]],
1016
- ["github.com/ctdk/go-trie", "MIT", ["https://raw.githubusercontent.com/ctdk/go-trie/master/LICENSE"]],
1017
- ["github.com/ctdk/goiardi", "Apache-2.0", ["https://raw.githubusercontent.com/ctdk/goiardi/master/LICENSE"]],
1018
- ["github.com/dchest/siphash", "CC0-1.0", ["https://raw.githubusercontent.com/dchest/siphash/master/README.md"]],
1019
- ["github.com/dgrijalva/jwt-go", "MIT", ["https://raw.githubusercontent.com/dgrijalva/jwt-go/master/LICENSE"]],
1020
- ["github.com/fatih/structs", "MIT", ["https://raw.githubusercontent.com/fatih/structs/master/LICENSE"]],
1021
- ["github.com/gin-gonic/gin", "MIT", ["https://raw.githubusercontent.com/gin-gonic/gin/master/LICENSE"]],
1022
- ["github.com/gin-gonic/gin/binding", "MIT", ["https://raw.githubusercontent.com/gin-gonic/gin/master/LICENSE"]],
1023
- ["github.com/gin-gonic/gin/render", "MIT", ["https://raw.githubusercontent.com/gin-gonic/gin/master/LICENSE"]],
1024
- ["github.com/go-chef/chef", "Apache-2.0", ["https://raw.githubusercontent.com/go-chef/chef/master/LICENSE"]],
1025
- ["github.com/go-ini/ini", "Apache-2.0", ["https://raw.githubusercontent.com/go-ini/ini/master/LICENSE"]],
1026
- ["github.com/go-sql-driver/mysql", "MPL-2.0", ["https://raw.githubusercontent.com/go-sql-driver/mysql/master/LICENSE"]],
1027
- ["github.com/golang/protobuf", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/protobuf/master/LICENSE"]],
1028
- ["github.com/gorhill/cronexpr", "Apache-2.0", ["https://www.apache.org/licenses/LICENSE-2.0"]],
1029
- ["github.com/gorilla/handlers", "BSD-2-Clause", ["https://raw.githubusercontent.com/gorilla/handlers/master/LICENSE"]],
1030
- ["github.com/hashicorp/errwrap", "MPL-2.0", ["https://raw.githubusercontent.com/hashicorp/errwrap/master/LICENSE"]],
1031
- ["github.com/hashicorp/go-cleanhttp", "MPL-2.0", ["https://raw.githubusercontent.com/hashicorp/go-cleanhttp/master/LICENSE"]],
1032
- ["github.com/hashicorp/go-multierror", "MPL-2.0", ["https://raw.githubusercontent.com/hashicorp/go-multierror/master/LICENSE"]],
1033
- ["github.com/hashicorp/go-rootcerts", "MPL-2.0", ["https://raw.githubusercontent.com/hashicorp/go-rootcerts/master/LICENSE"]],
1034
- ["github.com/hashicorp/hcl", "MPL-2.0", ["https://raw.githubusercontent.com/hashicorp/hcl/master/LICENSE"]],
1035
- ["github.com/hashicorp/vault", "MPL-2.0", ["https://raw.githubusercontent.com/hashicorp/vault/master/LICENSE"]],
1036
- ["github.com/jessevdk/go-flags", "BSD-3-Clause", ["https://raw.githubusercontent.com/jessevdk/go-flags/master/LICENSE"]],
1037
- ["github.com/jmespath/go-jmespath", "Apache-2.0", ["https://raw.githubusercontent.com/jmespath/go-jmespath/master/LICENSE"]],
1038
- ["github.com/jonboulle/clockwork", "Apache-2.0", ["https://raw.githubusercontent.com/jonboulle/clockwork/master/LICENSE"]],
1039
- ["github.com/lib/pq", "MIT", ["https://raw.githubusercontent.com/lib/pq/master/LICENSE.md"]],
1040
- ["github.com/lib/pq/oid", "MIT", ["https://raw.githubusercontent.com/lib/pq/master/LICENSE.md"]],
1041
- ["github.com/manucorporat/sse", "MIT", ["https://raw.githubusercontent.com/manucorporat/sse/master/LICENSE"]],
1042
- ["github.com/mattn/go-colorable", "MIT", ["https://raw.githubusercontent.com/mattn/go-colorable/master/LICENSE"]],
1043
- ["github.com/mattn/go-isatty", "MIT", ["https://raw.githubusercontent.com/mattn/go-isatty/master/LICENSE"]],
1044
- ["github.com/mattn/go-sqlite3", "MIT", ["https://raw.githubusercontent.com/mattn/go-sqlite3/master/LICENSE"]],
1045
- ["github.com/mitchellh/go-homedir", "MIT", ["https://raw.githubusercontent.com/mitchellh/go-homedir/master/LICENSE"]],
1046
- ["github.com/mitchellh/mapstructure", "MIT", ["https://raw.githubusercontent.com/mitchellh/mapstructure/master/LICENSE"]],
1047
- ["github.com/nu7hatch/gouuid", "MIT", ["https://raw.githubusercontent.com/nu7hatch/gouuid/master/COPYING"]],
1048
- ["github.com/open-policy-agent/opa", "Apache-2.0", ["https://raw.githubusercontent.com/open-policy-agent/opa/master/LICENSE"]],
1049
- ["github.com/patrickmn/go-cache", "MIT", ["https://raw.githubusercontent.com/patrickmn/go-cache/master/LICENSE"]],
1050
- ["github.com/peterbourgon/mergemap", "BSD-2-Clause", ["https://raw.githubusercontent.com/peterbourgon/mergemap/master/LICENSE"]],
1051
- ["github.com/philhofer/fwd", "MIT", ["https://raw.githubusercontent.com/philhofer/fwd/master/LICENSE.md"]],
1052
- ["github.com/op/go-logging", "BSD-3-Clause", ["https://raw.githubusercontent.com/op/go-logging/master/LICENSE"]],
1053
- ["github.com/pmylund/go-cache", "MIT", ["https://raw.githubusercontent.com/patrickmn/go-cache/master/LICENSE"]],
1054
- ["github.com/sethgrid/pester", "MIT", ["https://raw.githubusercontent.com/sethgrid/pester/master/LICENSE.md"]],
1055
- ["github.com/Sirupsen/logrus", "MIT", ["https://raw.githubusercontent.com/sirupsen/logrus/master/LICENSE"]],
1056
- ["github.com/davecgh/go-spew", "ISC", ["https://raw.githubusercontent.com/davecgh/go-spew/master/LICENSE"]],
1057
- ["github.com/gin-contrib/sse", "MIT", ["https://raw.githubusercontent.com/gin-contrib/sse/master/LICENSE"]],
1058
- ["github.com/gocarina/gocsv", "MIT", ["https://raw.githubusercontent.com/gocarina/gocsv/master/LICENSE"]],
1059
- ["github.com/pmezard/go-difflib", "BSD 3-clause", ["https://raw.githubusercontent.com/pmezard/go-difflib/master/LICENSE"]],
1060
- ["github.com/stretchr/testify", "MIT", ["https://raw.githubusercontent.com/stretchr/testify/master/LICENSE"]],
1061
- ["github.com/ugorji/go", "MIT", ["https://raw.githubusercontent.com/ugorji/go/master/LICENSE"]],
1062
- ["github.com/tideland/golib", "BSD-3-Clause", ["https://raw.githubusercontent.com/tideland/golib/master/LICENSE"]],
1063
- ["github.com/tinylib/msgp", "MIT", ["https://raw.githubusercontent.com/tinylib/msgp/master/LICENSE"]],
1064
- ["golang.org/x/crypto", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/crypto/master/LICENSE"]],
1065
- ["golang.org/x/crypto/pbkdf2", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/crypto/master/LICENSE"]],
1066
- ["golang.org/x/crypto/scrypt", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/crypto/master/LICENSE"]],
1067
- ["golang.org/x/crypto/ssh", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/crypto/master/LICENSE"]],
1068
- ["golang.org/x/exp", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/exp/master/LICENSE"]],
1069
- ["golang.org/x/net", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/net/master/LICENSE"]],
1070
- ["golang.org/x/net/context", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/net/master/LICENSE"]],
1071
- ["golang.org/x/net/netutil", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/net/master/LICENSE"]],
1072
- ["golang.org/x/net/context", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/net/master/LICENSE"]],
1073
- ["golang.org/x/sys", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/sys/master/LICENSE"]],
1074
- ["golang.org/x/sys/unix", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/sys/master/LICENSE"]],
1075
- ["gopkg.in/bluesuncorp/validator.v5", "MIT", ["https://raw.githubusercontent.com/go-playground/validator/v5/LICENSE"]],
1076
- ["gopkg.in/gorp.v1", "MIT", ["https://raw.githubusercontent.com/go-gorp/gorp/v1.7.1/LICENSE"]],
1077
- ["github.com/go-gorp/gorp", "MIT", ["https://raw.githubusercontent.com/go-gorp/gorp/master/LICENSE"]],
1078
- ["gopkg.in/go-playground/validator.v8", "MIT", ["https://raw.githubusercontent.com/go-playground/validator/v8.18.1/LICENSE"]],
1079
- ["gopkg.in/olivere/elastic.v3", "MIT", ["https://raw.githubusercontent.com/olivere/elastic/v3.0.68/LICENSE"]],
1080
- ["gopkg.in/tylerb/graceful.v1", "MIT", ["https://raw.githubusercontent.com/tylerb/graceful/v1.2.13/LICENSE"]],
1081
- ["gopkg.in/yaml.v2", "Apache-2.0", ["https://raw.githubusercontent.com/go-yaml/yaml/v2/LICENSE"]],
1082
- ["gopkg.in/olivere/elastic.v5", "MIT", ["https://raw.githubusercontent.com/olivere/elastic/v5.0.41/LICENSE"]],
1083
- ["github.com/pkg/errors", "BSD-2-Clause", ["https://raw.githubusercontent.com/pkg/errors/master/LICENSE"]],
1084
- ["github.com/grpc-ecosystem/grpc-gateway", "BSD-3-Clause", ["https://raw.githubusercontent.com/grpc-ecosystem/grpc-gateway/master/LICENSE.txt"]],
1085
- ["github.com/inconshreveable/mousetrap", "MIT", ["https://raw.githubusercontent.com/inconshreveable/mousetrap/master/LICENSE"]],
1086
- ["github.com/spf13/cobra", "Apache-2.0", ["https://raw.githubusercontent.com/spf13/cobra/master/LICENSE.txt"]],
1087
- ["github.com/spf13/pflag", "BSD-3-Clause", ["https://raw.githubusercontent.com/spf13/pflag/master/LICENSE"]],
1088
- ["golang.org/x/text", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/net/master/LICENSE"]],
1089
- ["google.golang.org/genproto", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/net/master/LICENSE"]],
1090
- ["google.golang.org/grpc", "BSD-3-Clause", ["https://raw.githubusercontent.com/golang/net/master/LICENSE"]],
1091
- ["github.com/schollz/closestmatch", "MIT", ["https://raw.githubusercontent.com/schollz/closestmatch/master/LICENSE"]],
1092
- ["github.com/fsnotify/fsnotify", "BSD-3-Clause", ["https://raw.githubusercontent.com/fsnotify/fsnotify/master/LICENSE"]],
1093
- ["github.com/magiconair/properties", "BSD-3-Clause", ["https://raw.githubusercontent.com/magiconair/properties/master/LICENSE"]],
1094
- ["github.com/pelletier/go-toml", "MIT", ["https://raw.githubusercontent.com/pelletier/go-toml/master/LICENSE"]],
1095
- ["github.com/sirupsen/logrus", "MIT", ["https://raw.githubusercontent.com/sirupsen/logrus/master/LICENSE"]],
1096
- ["github.com/spf13/afero", "Apache-2.0", ["https://raw.githubusercontent.com/spf13/afero/master/LICENSE.txt"]],
1097
- ["github.com/spf13/cast", "MIT", ["https://raw.githubusercontent.com/spf13/cast/master/LICENSE"]],
1098
- ["github.com/spf13/jwalterweatherman", "MIT", ["https://raw.githubusercontent.com/spf13/jWalterWeatherman/master/LICENSE"]],
1099
- ["github.com/spf13/viper", "MIT", ["https://raw.githubusercontent.com/spf13/viper/master/LICENSE"]],
1100
- ["github.com/satori/go.uuid", "MIT", ["https://raw.githubusercontent.com/satori/go.uuid/master/LICENSE"]],
1101
- ["github.com/teambition/rrule-go", "MIT", ["https://raw.githubusercontent.com/teambition/rrule-go/master/LICENSE"]],
1102
- ].each do |override_data|
1103
- override_license "go", override_data[0] do |version|
1104
- {}.tap do |d|
1105
- d[:license] = override_data[1] if override_data[1]
1106
- d[:license_files] = override_data[2] if override_data[2]
1107
- end
1108
- end
1109
- end
1110
- end
1111
-
1112
- end
1113
- end