@cyclonedx/cyclonedx-library 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist.node/models/component.js +2 -0
- package/dist.node/models/component.js.map +1 -1
- package/dist.node/models/index.js +1 -0
- package/dist.node/models/index.js.map +1 -1
- package/dist.node/models/property.js +37 -0
- package/dist.node/models/property.js.map +1 -0
- package/dist.node/serialize/json/normalize.js +21 -1
- package/dist.node/serialize/json/normalize.js.map +1 -1
- package/dist.node/serialize/xml/normalize.js +31 -2
- package/dist.node/serialize/xml/normalize.js.map +1 -1
- package/dist.web/lib.dev.js +102 -4
- package/dist.web/lib.dev.js.map +1 -1
- package/dist.web/lib.js +1 -1
- package/package.json +2 -2
- package/res/README.md +1 -1
- package/res/bom-1.4.SNAPSHOT.schema.json +1 -1
- package/res/bom-1.4.SNAPSHOT.xsd +12 -2
- package/res/spdx.SNAPSHOT.schema.json +487 -482
- package/res/spdx.SNAPSHOT.xsd +1069 -1044
- package/src/models/component.ts +5 -1
- package/src/models/index.ts +1 -0
- package/src/models/property.ts +42 -0
- package/src/serialize/json/normalize.ts +24 -0
- package/src/serialize/json/types.ts +6 -0
- package/src/serialize/xml/normalize.ts +34 -1
package/dist.web/lib.dev.js
CHANGED
|
@@ -878,6 +878,7 @@ const bomRef_1 = __webpack_require__(/*! ./bomRef */ "./src/models/bomRef.ts");
|
|
|
878
878
|
const hash_1 = __webpack_require__(/*! ./hash */ "./src/models/hash.ts");
|
|
879
879
|
const externalReference_1 = __webpack_require__(/*! ./externalReference */ "./src/models/externalReference.ts");
|
|
880
880
|
const license_1 = __webpack_require__(/*! ./license */ "./src/models/license.ts");
|
|
881
|
+
const property_1 = __webpack_require__(/*! ./property */ "./src/models/property.ts");
|
|
881
882
|
const sortableSet_1 = __webpack_require__(/*! ../helpers/sortableSet */ "./src/helpers/sortableSet.ts");
|
|
882
883
|
const tree_1 = __webpack_require__(/*! ../helpers/tree */ "./src/helpers/tree.ts");
|
|
883
884
|
class Component {
|
|
@@ -903,6 +904,7 @@ class Component {
|
|
|
903
904
|
this.dependencies = op.dependencies ?? new bomRef_1.BomRefRepository();
|
|
904
905
|
this.components = op.components ?? new ComponentRepository();
|
|
905
906
|
this.cpe = op.cpe;
|
|
907
|
+
this.properties = op.properties ?? new property_1.PropertyRepository();
|
|
906
908
|
}
|
|
907
909
|
get bomRef() {
|
|
908
910
|
return __classPrivateFieldGet(this, _Component_bomRef, "f");
|
|
@@ -1095,6 +1097,7 @@ __exportStar(__webpack_require__(/*! ./license */ "./src/models/license.ts"), ex
|
|
|
1095
1097
|
__exportStar(__webpack_require__(/*! ./metadata */ "./src/models/metadata.ts"), exports);
|
|
1096
1098
|
__exportStar(__webpack_require__(/*! ./organizationalContact */ "./src/models/organizationalContact.ts"), exports);
|
|
1097
1099
|
__exportStar(__webpack_require__(/*! ./organizationalEntity */ "./src/models/organizationalEntity.ts"), exports);
|
|
1100
|
+
__exportStar(__webpack_require__(/*! ./property */ "./src/models/property.ts"), exports);
|
|
1098
1101
|
__exportStar(__webpack_require__(/*! ./swid */ "./src/models/swid.ts"), exports);
|
|
1099
1102
|
__exportStar(__webpack_require__(/*! ./tool */ "./src/models/tool.ts"), exports);
|
|
1100
1103
|
|
|
@@ -1350,6 +1353,52 @@ class OrganizationalEntity {
|
|
|
1350
1353
|
exports.OrganizationalEntity = OrganizationalEntity;
|
|
1351
1354
|
|
|
1352
1355
|
|
|
1356
|
+
/***/ }),
|
|
1357
|
+
|
|
1358
|
+
/***/ "./src/models/property.ts":
|
|
1359
|
+
/*!********************************!*\
|
|
1360
|
+
!*** ./src/models/property.ts ***!
|
|
1361
|
+
\********************************/
|
|
1362
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
1363
|
+
|
|
1364
|
+
|
|
1365
|
+
/*!
|
|
1366
|
+
This file is part of CycloneDX JavaScript Library.
|
|
1367
|
+
|
|
1368
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
1369
|
+
you may not use this file except in compliance with the License.
|
|
1370
|
+
You may obtain a copy of the License at
|
|
1371
|
+
|
|
1372
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
1373
|
+
|
|
1374
|
+
Unless required by applicable law or agreed to in writing, software
|
|
1375
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
1376
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1377
|
+
See the License for the specific language governing permissions and
|
|
1378
|
+
limitations under the License.
|
|
1379
|
+
|
|
1380
|
+
SPDX-License-Identifier: Apache-2.0
|
|
1381
|
+
Copyright (c) OWASP Foundation. All Rights Reserved.
|
|
1382
|
+
*/
|
|
1383
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
1384
|
+
exports.PropertyRepository = exports.Property = void 0;
|
|
1385
|
+
const sortableSet_1 = __webpack_require__(/*! ../helpers/sortableSet */ "./src/helpers/sortableSet.ts");
|
|
1386
|
+
class Property {
|
|
1387
|
+
constructor(name, value) {
|
|
1388
|
+
this.name = name;
|
|
1389
|
+
this.value = value;
|
|
1390
|
+
}
|
|
1391
|
+
compare(other) {
|
|
1392
|
+
return this.name.localeCompare(other.name) ||
|
|
1393
|
+
this.value.localeCompare(other.value);
|
|
1394
|
+
}
|
|
1395
|
+
}
|
|
1396
|
+
exports.Property = Property;
|
|
1397
|
+
class PropertyRepository extends sortableSet_1.SortableSet {
|
|
1398
|
+
}
|
|
1399
|
+
exports.PropertyRepository = PropertyRepository;
|
|
1400
|
+
|
|
1401
|
+
|
|
1353
1402
|
/***/ }),
|
|
1354
1403
|
|
|
1355
1404
|
/***/ "./src/models/swid.ts":
|
|
@@ -1841,7 +1890,7 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|
|
1841
1890
|
};
|
|
1842
1891
|
var _Factory_spec, _LicenseNormalizer_instances, _LicenseNormalizer_normalizeNamedLicense, _LicenseNormalizer_normalizeSpdxLicense, _LicenseNormalizer_normalizeLicenseExpression, _DependencyGraphNormalizer_instances, _DependencyGraphNormalizer_normalizeDependency;
|
|
1843
1892
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
1844
|
-
exports.DependencyGraphNormalizer = exports.AttachmentNormalizer = exports.ExternalReferenceNormalizer = exports.SWIDNormalizer = exports.LicenseNormalizer = exports.ComponentNormalizer = exports.OrganizationalEntityNormalizer = exports.OrganizationalContactNormalizer = exports.HashNormalizer = exports.ToolNormalizer = exports.MetadataNormalizer = exports.BomNormalizer = exports.Factory = void 0;
|
|
1893
|
+
exports.DependencyGraphNormalizer = exports.PropertyNormalizer = exports.AttachmentNormalizer = exports.ExternalReferenceNormalizer = exports.SWIDNormalizer = exports.LicenseNormalizer = exports.ComponentNormalizer = exports.OrganizationalEntityNormalizer = exports.OrganizationalContactNormalizer = exports.HashNormalizer = exports.ToolNormalizer = exports.MetadataNormalizer = exports.BomNormalizer = exports.Factory = void 0;
|
|
1845
1894
|
const notUndefined_1 = __webpack_require__(/*! ../../helpers/notUndefined */ "./src/helpers/notUndefined.ts");
|
|
1846
1895
|
const Models = __importStar(__webpack_require__(/*! ../../models */ "./src/models/index.ts"));
|
|
1847
1896
|
const spec_1 = __webpack_require__(/*! ../../spec */ "./src/spec.ts");
|
|
@@ -1888,6 +1937,9 @@ class Factory {
|
|
|
1888
1937
|
makeForAttachment() {
|
|
1889
1938
|
return new AttachmentNormalizer(this);
|
|
1890
1939
|
}
|
|
1940
|
+
makeForProperty() {
|
|
1941
|
+
return new PropertyNormalizer(this);
|
|
1942
|
+
}
|
|
1891
1943
|
makeForDependencyGraph() {
|
|
1892
1944
|
return new DependencyGraphNormalizer(this);
|
|
1893
1945
|
}
|
|
@@ -2058,6 +2110,9 @@ class ComponentNormalizer extends Base {
|
|
|
2058
2110
|
: undefined,
|
|
2059
2111
|
components: data.components.size > 0
|
|
2060
2112
|
? this.normalizeRepository(data.components, options)
|
|
2113
|
+
: undefined,
|
|
2114
|
+
properties: data.properties.size > 0
|
|
2115
|
+
? this._factory.makeForProperty().normalizeRepository(data.properties, options)
|
|
2061
2116
|
: undefined
|
|
2062
2117
|
}
|
|
2063
2118
|
: undefined;
|
|
@@ -2164,6 +2219,20 @@ class AttachmentNormalizer extends Base {
|
|
|
2164
2219
|
}
|
|
2165
2220
|
}
|
|
2166
2221
|
exports.AttachmentNormalizer = AttachmentNormalizer;
|
|
2222
|
+
class PropertyNormalizer extends Base {
|
|
2223
|
+
normalize(data, options) {
|
|
2224
|
+
return {
|
|
2225
|
+
name: data.name,
|
|
2226
|
+
value: data.value
|
|
2227
|
+
};
|
|
2228
|
+
}
|
|
2229
|
+
normalizeRepository(data, options) {
|
|
2230
|
+
return (options.sortLists ?? false
|
|
2231
|
+
? data.sorted()
|
|
2232
|
+
: Array.from(data)).map(p => this.normalize(p, options));
|
|
2233
|
+
}
|
|
2234
|
+
}
|
|
2235
|
+
exports.PropertyNormalizer = PropertyNormalizer;
|
|
2167
2236
|
class DependencyGraphNormalizer extends Base {
|
|
2168
2237
|
constructor() {
|
|
2169
2238
|
super(...arguments);
|
|
@@ -2476,7 +2545,7 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|
|
2476
2545
|
};
|
|
2477
2546
|
var _Factory_spec, _LicenseNormalizer_instances, _LicenseNormalizer_normalizeNamedLicense, _LicenseNormalizer_normalizeSpdxLicense, _LicenseNormalizer_normalizeLicenseExpression, _DependencyGraphNormalizer_instances, _DependencyGraphNormalizer_normalizeDependency;
|
|
2478
2547
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
2479
|
-
exports.DependencyGraphNormalizer = exports.AttachmentNormalizer = exports.ExternalReferenceNormalizer = exports.SWIDNormalizer = exports.LicenseNormalizer = exports.ComponentNormalizer = exports.OrganizationalEntityNormalizer = exports.OrganizationalContactNormalizer = exports.HashNormalizer = exports.ToolNormalizer = exports.MetadataNormalizer = exports.BomNormalizer = exports.Factory = void 0;
|
|
2548
|
+
exports.DependencyGraphNormalizer = exports.PropertyNormalizer = exports.AttachmentNormalizer = exports.ExternalReferenceNormalizer = exports.SWIDNormalizer = exports.LicenseNormalizer = exports.ComponentNormalizer = exports.OrganizationalEntityNormalizer = exports.OrganizationalContactNormalizer = exports.HashNormalizer = exports.ToolNormalizer = exports.MetadataNormalizer = exports.BomNormalizer = exports.Factory = void 0;
|
|
2480
2549
|
const notUndefined_1 = __webpack_require__(/*! ../../helpers/notUndefined */ "./src/helpers/notUndefined.ts");
|
|
2481
2550
|
const Models = __importStar(__webpack_require__(/*! ../../models */ "./src/models/index.ts"));
|
|
2482
2551
|
const spec_1 = __webpack_require__(/*! ../../spec */ "./src/spec.ts");
|
|
@@ -2523,6 +2592,9 @@ class Factory {
|
|
|
2523
2592
|
makeForAttachment() {
|
|
2524
2593
|
return new AttachmentNormalizer(this);
|
|
2525
2594
|
}
|
|
2595
|
+
makeForProperty() {
|
|
2596
|
+
return new PropertyNormalizer(this);
|
|
2597
|
+
}
|
|
2526
2598
|
makeForDependencyGraph() {
|
|
2527
2599
|
return new DependencyGraphNormalizer(this);
|
|
2528
2600
|
}
|
|
@@ -2751,6 +2823,13 @@ class ComponentNormalizer extends Base {
|
|
|
2751
2823
|
children: this.normalizeRepository(data.components, options, 'component')
|
|
2752
2824
|
}
|
|
2753
2825
|
: undefined;
|
|
2826
|
+
const properties = data.properties.size > 0
|
|
2827
|
+
? {
|
|
2828
|
+
type: 'element',
|
|
2829
|
+
name: 'properties',
|
|
2830
|
+
children: this._factory.makeForProperty().normalizeRepository(data.properties, options, 'property')
|
|
2831
|
+
}
|
|
2832
|
+
: undefined;
|
|
2754
2833
|
return {
|
|
2755
2834
|
type: 'element',
|
|
2756
2835
|
name: elementName,
|
|
@@ -2774,7 +2853,8 @@ class ComponentNormalizer extends Base {
|
|
|
2774
2853
|
makeOptionalTextElement(data.purl, 'purl'),
|
|
2775
2854
|
swid,
|
|
2776
2855
|
extRefs,
|
|
2777
|
-
components
|
|
2856
|
+
components,
|
|
2857
|
+
properties
|
|
2778
2858
|
].filter(notUndefined_1.isNotUndefined)
|
|
2779
2859
|
};
|
|
2780
2860
|
}
|
|
@@ -2908,6 +2988,24 @@ class AttachmentNormalizer extends Base {
|
|
|
2908
2988
|
}
|
|
2909
2989
|
}
|
|
2910
2990
|
exports.AttachmentNormalizer = AttachmentNormalizer;
|
|
2991
|
+
class PropertyNormalizer extends Base {
|
|
2992
|
+
normalize(data, options, elementName) {
|
|
2993
|
+
return {
|
|
2994
|
+
type: 'element',
|
|
2995
|
+
name: elementName,
|
|
2996
|
+
attributes: {
|
|
2997
|
+
name: data.name
|
|
2998
|
+
},
|
|
2999
|
+
children: data.value
|
|
3000
|
+
};
|
|
3001
|
+
}
|
|
3002
|
+
normalizeRepository(data, options, elementName) {
|
|
3003
|
+
return (options.sortLists ?? false
|
|
3004
|
+
? data.sorted()
|
|
3005
|
+
: Array.from(data)).map(p => this.normalize(p, options, elementName));
|
|
3006
|
+
}
|
|
3007
|
+
}
|
|
3008
|
+
exports.PropertyNormalizer = PropertyNormalizer;
|
|
2911
3009
|
class DependencyGraphNormalizer extends Base {
|
|
2912
3010
|
constructor() {
|
|
2913
3011
|
super(...arguments);
|
|
@@ -3686,7 +3784,7 @@ module.exports = __WEBPACK_EXTERNAL_MODULE_packageurl_js__;
|
|
|
3686
3784
|
\***************************************/
|
|
3687
3785
|
/***/ ((module) => {
|
|
3688
3786
|
|
|
3689
|
-
module.exports = JSON.parse('{"$schema":"http://json-schema.org/draft-07/schema#","$id":"http://cyclonedx.org/schema/spdx.schema.json","$comment":"v1.0-3.
|
|
3787
|
+
module.exports = JSON.parse('{"$schema":"http://json-schema.org/draft-07/schema#","$id":"http://cyclonedx.org/schema/spdx.schema.json","$comment":"v1.0-3.17","type":"string","enum":["CC-BY-NC-ND-2.0","SGI-B-2.0","LPPL-1.3c","NIST-PD-fallback","libtiff","XSkat","PDDL-1.0","KiCad-libraries-exception","CC-BY-NC-SA-1.0","GFDL-1.1-no-invariants-only","Xerox","LPPL-1.1","VOSTROM","UCL-1.0","ADSL","OSL-2.0","AAL","FDK-AAC","W3C-20150513","AFL-1.1","W3C","Sleepycat","CECILL-1.1","mpich2","SISSL","NLOD-1.0","ANTLR-PD","GPL-3.0-only","gnuplot","NLOD-2.0","BSD-3-Clause-Open-MPI","LiLiQ-P-1.1","BSD-3-Clause-Clear","FSFUL","CC-BY-NC-SA-2.0-UK","CERN-OHL-S-2.0","Spencer-94","CERN-OHL-1.2","GFDL-1.1-or-later","AGPL-1.0-or-later","Wsuipa","AML","BSD-2-Clause","DSDP","CC-BY-2.5","MIT-CMU","Beerware","Sendmail","TU-Berlin-1.0","CNRI-Jython","mplus","CPOL-1.02","BSD-3-Clause-No-Nuclear-License-2014","ISC","CC-BY-SA-4.0","Eurosym","LGPL-3.0-only","OLDAP-1.3","GFDL-1.1-invariants-or-later","Glulxe","SimPL-2.0","CDLA-Permissive-2.0","GPL-2.0-with-font-exception","OGL-UK-2.0","CC-BY-SA-3.0-DE","CC-BY-ND-1.0","GFDL-1.1","CC-BY-4.0","OpenSSL","TU-Berlin-2.0","DOC","GFDL-1.2-no-invariants-or-later","QPL-1.0","OLDAP-2.8","OML","OLDAP-2.7","NIST-PD","Bitstream-Vera","GFDL-1.2-or-later","OFL-1.1-RFN","Bahyph","Barr","COIL-1.0","GFDL-1.3","CECILL-B","JPNIC","Zed","ICU","CC-BY-NC-SA-2.5","CC-BY-ND-3.0-DE","bzip2-1.0.5","SPL-1.0","YPL-1.0","OSET-PL-2.1","Noweb","RPSL-1.0","BSD-3-Clause-LBNL","CDLA-Sharing-1.0","CECILL-1.0","AMPAS","APAFML","CC-BY-ND-3.0","D-FSL-1.0","CC-BY-NC-3.0","libpng-2.0","PolyForm-Noncommercial-1.0.0","dvipdfm","GFDL-1.3-or-later","OGTSL","NPL-1.1","GPL-3.0","CERN-OHL-P-2.0","BlueOak-1.0.0","AGPL-3.0-or-later","blessing","ImageMagick","APSL-2.0","MIT-advertising","curl","CC0-1.0","Zimbra-1.4","SSPL-1.0","psutils","CC-BY-SA-2.0-UK","PSF-2.0","Net-SNMP","NAIST-2003","GFDL-1.2-invariants-or-later","SGI-B-1.0","NBPL-1.0","GFDL-1.2-invariants-only","W3C-19980720","OFL-1.0-no-RFN","NetCDF","TMate","NOSL","CNRI-Python-GPL-Compatible","BSD-1-Clause","CC-BY-NC-SA-3.0-DE","BSD-3-Clause-Modification","GLWTPL","GFDL-1.3-only","OLDAP-2.2","CC-BY-ND-4.0","CC-BY-NC-ND-3.0-DE","EUPL-1.0","Linux-OpenIB","LGPL-2.0-or-later","OSL-1.1","Spencer-86","LGPL-2.0","CC-PDDC","CC-BY-NC-ND-3.0","CDL-1.0","Elastic-2.0","CC-BY-2.0","BSD-3-Clause-No-Military-License","IJG","LPPL-1.3a","SAX-PD","BitTorrent-1.0","OLDAP-2.0","Giftware","C-UDA-1.0","LGPL-2.0+","Rdisc","GPL-2.0-with-classpath-exception","CC-BY-3.0-US","CDDL-1.0","Xnet","CPL-1.0","LGPL-3.0-or-later","NASA-1.3","BUSL-1.1","etalab-2.0","MIT-open-group","OLDAP-1.4","GFDL-1.1-invariants-only","RPL-1.1","CC-BY-NC-ND-2.5","FSFULLR","Saxpath","NTP-0","SISSL-1.2","GPL-3.0-or-later","Apache-1.1","CC-BY-SA-2.1-JP","AGPL-3.0-only","GPL-2.0-with-autoconf-exception","Artistic-2.0","App-s2p","Unicode-DFS-2015","diffmark","SNIA","CC-BY-SA-2.5","Linux-man-pages-copyleft","HPND-sell-variant","ZPL-2.1","BSD-4-Clause-UC","LAL-1.2","AGPL-1.0-only","MIT-enna","Condor-1.1","Naumen","GFDL-1.3-no-invariants-or-later","RPL-1.5","PolyForm-Small-Business-1.0.0","EFL-1.0","MirOS","CC-BY-2.5-AU","Afmparse","MPL-2.0-no-copyleft-exception","LiLiQ-Rplus-1.1","AFL-1.2","OSL-1.0","GPL-1.0-only","APSL-1.0","OGL-Canada-2.0","CPAL-1.0","Latex2e","Zend-2.0","Unlicense","xpp","CC-BY-NC-1.0","GPL-3.0-with-autoconf-exception","CC-BY-NC-SA-3.0","TCP-wrappers","SCEA","SSH-short","CC-BY-3.0-NL","SchemeReport","CC-BY-3.0","MPL-2.0","Unicode-TOU","CC-BY-NC-ND-1.0","Entessa","BSD-3-Clause-No-Nuclear-License","SWL","GFDL-1.2-no-invariants-only","Parity-7.0.0","OLDAP-2.2.1","SGI-B-1.1","FTL","OLDAP-2.4","CC-BY-NC-4.0","bzip2-1.0.6","copyleft-next-0.3.0","MakeIndex","NRL","GFDL-1.3-invariants-or-later","CC-BY-NC-2.0","SugarCRM-1.1.3","AFL-2.1","GPL-2.0-only","GFDL-1.3-invariants-only","TORQUE-1.1","Ruby","X11","Borceux","Libpng","X11-distribute-modifications-variant","Frameworx-1.0","NCGL-UK-2.0","CECILL-2.1","CC-BY-3.0-AT","CNRI-Python","NCSA","gSOAP-1.3b","EUPL-1.1","AMDPLPA","Imlib2","CDDL-1.1","WTFPL","LPL-1.0","EPL-1.0","BSD-3-Clause-Attribution","OSL-3.0","RHeCos-1.1","PHP-3.0","BSD-Protection","CC-BY-NC-3.0-DE","APL-1.0","EUDatagrid","GPL-1.0","SHL-0.5","CC-BY-SA-2.0","CC-BY-SA-3.0-AT","CC-BY-NC-SA-3.0-IGO","Adobe-2006","Newsletr","Nunit","Multics","OGL-UK-1.0","Vim","eCos-2.0","Zimbra-1.3","eGenix","IBM-pibs","BitTorrent-1.1","OFL-1.1-no-RFN","psfrag","CC-BY-ND-2.0","SHL-0.51","FreeBSD-DOC","Python-2.0","Mup","BSD-4-Clause-Shortened","CC-BY-NC-SA-4.0","HPND","OLDAP-2.6","MPL-1.1","GPL-2.0-with-GCC-exception","HaskellReport","ECL-1.0","LGPL-2.1-or-later","OFL-1.0","APSL-1.1","MITNFA","CECILL-2.0","Crossword","Aladdin","Baekmuk","XFree86-1.1","GPL-1.0-or-later","CERN-OHL-W-2.0","CC-BY-SA-1.0","NTP","PHP-3.01","OCLC-2.0","CC-BY-3.0-DE","CC-BY-NC-2.5","Zlib","CATOSL-1.1","LGPL-3.0+","CAL-1.0","NPL-1.0","SMLNJ","GPL-2.0+","OLDAP-2.5","JasPer-2.0","GPL-2.0-or-later","BSD-2-Clause-Patent","MS-RL","CUA-OPL-1.0","IPA","NLPL","O-UDA-1.0","MIT-Modern-Variant","OLDAP-1.2","BSD-2-Clause-FreeBSD","Info-ZIP","CC-BY-NC-SA-2.0-FR","0BSD","Unicode-DFS-2016","OFL-1.0-RFN","Intel","AFL-2.0","GL2PS","TAPR-OHL-1.0","Apache-1.0","MTLL","Motosoto","RSA-MD","Community-Spec-1.0","ODC-By-1.0","zlib-acknowledgement","DL-DE-BY-2.0","VSL-1.0","LiLiQ-R-1.1","OPL-1.0","GPL-3.0+","MulanPSL-2.0","APSL-1.2","OGDL-Taiwan-1.0","RSCPL","OGC-1.0","EFL-2.0","CAL-1.0-Combined-Work-Exception","MS-PL","Plexus","Sendmail-8.23","Cube","JSON","EUPL-1.2","Adobe-Glyph","FreeImage","Watcom-1.0","Jam","Hippocratic-2.1","OLDAP-2.0.1","CC-BY-NC-SA-2.0","Nokia","OCCT-PL","ErlPL-1.1","TOSL","OSL-2.1","ClArtistic","xinetd","GPL-3.0-with-GCC-exception","ODbL-1.0","MIT","LGPL-2.1+","LGPL-2.1-only","CrystalStacker","ECL-2.0","LPPL-1.0","iMatix","CC-BY-NC-ND-3.0-IGO","BSD-Source-Code","Parity-6.0.0","TCL","Arphic-1999","CC-BY-SA-3.0","Caldera","AGPL-1.0","IPL-1.0","LAL-1.3","EPICS","NGPL","DRL-1.0","BSD-2-Clause-NetBSD","ZPL-1.1","GD","LPPL-1.2","Dotseqn","Spencer-99","OLDAP-2.3","YPL-1.1","Fair","Qhull","GFDL-1.1-no-invariants-or-later","CECILL-C","MulanPSL-1.0","OLDAP-1.1","OLDAP-2.1","LPL-1.02","UPL-1.0","Abstyles","ZPL-2.0","MIT-0","LGPL-2.0-only","GFDL-1.3-no-invariants-only","AGPL-3.0","EPL-2.0","AFL-3.0","CDLA-Permissive-1.0","Artistic-1.0","CC-BY-NC-ND-4.0","HTMLTIDY","Glide","FSFAP","LGPLLR","OGL-UK-3.0","GFDL-1.2","SSH-OpenSSH","GFDL-1.1-only","MIT-feh","MPL-1.0","PostgreSQL","OLDAP-2.2.2","SMPPL","OFL-1.1","Leptonica","CERN-OHL-1.1","BSD-3-Clause-No-Nuclear-Warranty","CC-BY-ND-2.5","CC-BY-1.0","GFDL-1.2-only","OPUBL-1.0","libselinux-1.0","BSD-3-Clause","ANTLR-PD-fallback","copyleft-next-0.3.1","GPL-1.0+","wxWindows","LGPL-3.0","LGPL-2.1","StandardML-NJ","BSD-4-Clause","GPL-2.0-with-bison-exception","Apache-2.0","Artistic-1.0-cl8","GPL-2.0","Intel-ACPI","BSL-1.0","Artistic-1.0-Perl","BSD-2-Clause-Views","Interbase-1.0","NPOSL-3.0","FLTK-exception","Bootloader-exception","WxWindows-exception-3.1","Linux-syscall-note","Qt-LGPL-exception-1.1","LLVM-exception","PS-or-PDF-font-exception-20170817","GCC-exception-3.1","Autoconf-exception-3.0","LGPL-3.0-linking-exception","GCC-exception-2.0","Bison-exception-2.2","openvpn-openssl-exception","Libtool-exception","Autoconf-exception-2.0","GPL-3.0-linking-source-exception","GPL-CC-1.0","OCaml-LGPL-linking-exception","Universal-FOSS-exception-1.0","i2p-gpl-java-exception","CLISP-exception-2.0","OCCT-exception-1.0","Qwt-exception-1.0","gnu-javamail-exception","u-boot-exception-2.0","freertos-exception-2.0","Qt-GPL-exception-1.0","OpenJDK-assembly-exception-1.0","SHL-2.1","mif-exception","Fawkes-Runtime-exception","Swift-exception","GPL-3.0-linking-exception","SHL-2.0","Classpath-exception-2.0","LZMA-exception","Font-exception-2.0","Nokia-Qt-exception-1.1","DigiRule-FOSS-exception","eCos-exception-2.0","389-exception"]}');
|
|
3690
3788
|
|
|
3691
3789
|
/***/ })
|
|
3692
3790
|
|