@oslo-flanders/core 0.0.4-alpha.0 → 0.0.6-alpha.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/LICENSE +21 -0
- package/README.md +75 -75
- package/index.d.ts +22 -20
- package/index.js +38 -36
- package/lib/ServiceIdentifier.d.ts +7 -7
- package/lib/ServiceIdentifier.js +14 -14
- package/lib/enums/PropertyTypes.d.ts +5 -5
- package/lib/enums/PropertyTypes.js +9 -9
- package/lib/enums/Scope.d.ts +6 -6
- package/lib/enums/Scope.js +10 -10
- package/lib/interfaces/AppRunner.d.ts +19 -19
- package/lib/interfaces/AppRunner.js +26 -26
- package/lib/interfaces/IConfiguration.d.ts +7 -7
- package/lib/interfaces/IConfiguration.js +2 -2
- package/lib/interfaces/IOutputHandler.d.ts +7 -7
- package/lib/interfaces/IOutputHandler.js +2 -2
- package/lib/interfaces/IService.d.ts +11 -11
- package/lib/interfaces/IService.js +2 -2
- package/lib/logging/LogLevel.d.ts +5 -5
- package/lib/logging/LogLevel.js +4 -4
- package/lib/logging/LogUtil.d.ts +4 -4
- package/lib/logging/LogUtil.js +16 -16
- package/lib/logging/Logger.d.ts +20 -20
- package/lib/logging/Logger.js +35 -35
- package/lib/logging/LoggerFactory.d.ts +11 -11
- package/lib/logging/LoggerFactory.js +2 -2
- package/lib/logging/VoidLogger.d.ts +7 -7
- package/lib/logging/VoidLogger.js +27 -27
- package/lib/logging/VoidLoggerFactory.d.ts +9 -9
- package/lib/logging/VoidLoggerFactory.js +16 -16
- package/lib/logging/WinstonLogger.d.ts +8 -8
- package/lib/logging/WinstonLogger.js +30 -30
- package/lib/logging/WinstonLoggerFactory.d.ts +10 -10
- package/lib/logging/WinstonLoggerFactory.js +23 -23
- package/lib/store/QuadStore.d.ts +165 -180
- package/lib/store/QuadStore.js +305 -329
- package/lib/utils/fetchFileOrUrl.d.ts +2 -2
- package/lib/utils/fetchFileOrUrl.js +22 -22
- package/lib/utils/namespaces.d.ts +24 -24
- package/lib/utils/namespaces.js +34 -35
- package/lib/utils/storeUtils.d.ts +8 -0
- package/lib/utils/storeUtils.js +85 -0
- package/lib/utils/uniqueId.d.ts +1 -1
- package/lib/utils/uniqueId.js +13 -13
- package/package.json +11 -3
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
export declare function fetchFileOrUrl(file: string): Promise<Buffer>;
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
export declare function fetchFileOrUrl(file: string): Promise<Buffer>;
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.fetchFileOrUrl = void 0;
|
|
7
|
-
const fs_1 = require("fs");
|
|
8
|
-
const promises_1 = require("fs/promises");
|
|
9
|
-
const node_fetch_1 = __importDefault(require("node-fetch"));
|
|
10
|
-
async function fetchFileOrUrl(file) {
|
|
11
|
-
if (file.startsWith('http://') || file.startsWith('https://')) {
|
|
12
|
-
return (await (0, node_fetch_1.default)(file)).buffer();
|
|
13
|
-
}
|
|
14
|
-
if (file.startsWith('file://')) {
|
|
15
|
-
file = file.slice(7);
|
|
16
|
-
}
|
|
17
|
-
if (!(0, fs_1.existsSync)(file) || !(await (0, promises_1.stat)(file)).isFile()) {
|
|
18
|
-
throw new Error(`Path does not refer to a valid file: ${file}`);
|
|
19
|
-
}
|
|
20
|
-
return (0, promises_1.readFile)(file);
|
|
21
|
-
}
|
|
22
|
-
exports.fetchFileOrUrl = fetchFileOrUrl;
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.fetchFileOrUrl = void 0;
|
|
7
|
+
const fs_1 = require("fs");
|
|
8
|
+
const promises_1 = require("fs/promises");
|
|
9
|
+
const node_fetch_1 = __importDefault(require("node-fetch"));
|
|
10
|
+
async function fetchFileOrUrl(file) {
|
|
11
|
+
if (file.startsWith('http://') || file.startsWith('https://')) {
|
|
12
|
+
return (await (0, node_fetch_1.default)(file)).buffer();
|
|
13
|
+
}
|
|
14
|
+
if (file.startsWith('file://')) {
|
|
15
|
+
file = file.slice(7);
|
|
16
|
+
}
|
|
17
|
+
if (!(0, fs_1.existsSync)(file) || !(await (0, promises_1.stat)(file)).isFile()) {
|
|
18
|
+
throw new Error(`Path does not refer to a valid file: ${file}`);
|
|
19
|
+
}
|
|
20
|
+
return (0, promises_1.readFile)(file);
|
|
21
|
+
}
|
|
22
|
+
exports.fetchFileOrUrl = fetchFileOrUrl;
|
|
23
23
|
//# sourceMappingURL=fetchFileOrUrl.js.map
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
declare enum Prefixes {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
export
|
|
21
|
-
[T in keyof typeof Prefixes]: Function;
|
|
22
|
-
};
|
|
23
|
-
export declare const ns: Namespace;
|
|
24
|
-
export {};
|
|
1
|
+
declare enum Prefixes {
|
|
2
|
+
adms = "http://www.w3.org/ns/adms#",
|
|
3
|
+
dcat = "http://www.w3.org/ns/dcat#",
|
|
4
|
+
dcterms = "http://purl.org/dc/terms/",
|
|
5
|
+
foaf = "http://xmlns.com/foaf/0.1/",
|
|
6
|
+
owl = "http://www.w3.org/2002/07/owl#",
|
|
7
|
+
vlaanderen = "https://data.vlaanderen.be/ns/",
|
|
8
|
+
void = "http://rdfs.org/ns/void#",
|
|
9
|
+
rdf = "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
|
|
10
|
+
rdfs = "http://www.w3.org/2000/01/rdf-schema#",
|
|
11
|
+
qb = "http://purl.org/linked-data/cube#",
|
|
12
|
+
skos = "http://www.w3.org/2004/02/skos/core#",
|
|
13
|
+
xsd = "http://www.w3.org/2001/XMLSchema#",
|
|
14
|
+
person = "http://www.w3.org/ns/person#",
|
|
15
|
+
vann = "http://purl.org/vocab/vann/",
|
|
16
|
+
shacl = "http://w3.org/ns/shacl#",
|
|
17
|
+
prov = "http://www.w3.org/ns/prov#",
|
|
18
|
+
oslo = "https://implementatie.data.vlaanderen.be/ns/oslo-toolchain#"
|
|
19
|
+
}
|
|
20
|
+
export type Namespace = {
|
|
21
|
+
[T in keyof typeof Prefixes]: Function;
|
|
22
|
+
};
|
|
23
|
+
export declare const ns: Namespace;
|
|
24
|
+
export {};
|
package/lib/utils/namespaces.js
CHANGED
|
@@ -1,36 +1,35 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ns = void 0;
|
|
4
|
-
const rdf_data_factory_1 = require("rdf-data-factory");
|
|
5
|
-
const factory = new rdf_data_factory_1.DataFactory();
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
Prefixes["
|
|
10
|
-
Prefixes["
|
|
11
|
-
Prefixes["
|
|
12
|
-
Prefixes["
|
|
13
|
-
Prefixes["
|
|
14
|
-
Prefixes["
|
|
15
|
-
Prefixes["
|
|
16
|
-
Prefixes["
|
|
17
|
-
Prefixes["
|
|
18
|
-
Prefixes["
|
|
19
|
-
Prefixes["
|
|
20
|
-
Prefixes["
|
|
21
|
-
Prefixes["
|
|
22
|
-
Prefixes["
|
|
23
|
-
Prefixes["
|
|
24
|
-
Prefixes["
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
const
|
|
28
|
-
const
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
exports.ns = vocab();
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ns = void 0;
|
|
4
|
+
const rdf_data_factory_1 = require("rdf-data-factory");
|
|
5
|
+
const factory = new rdf_data_factory_1.DataFactory();
|
|
6
|
+
var Prefixes;
|
|
7
|
+
(function (Prefixes) {
|
|
8
|
+
Prefixes["adms"] = "http://www.w3.org/ns/adms#";
|
|
9
|
+
Prefixes["dcat"] = "http://www.w3.org/ns/dcat#";
|
|
10
|
+
Prefixes["dcterms"] = "http://purl.org/dc/terms/";
|
|
11
|
+
Prefixes["foaf"] = "http://xmlns.com/foaf/0.1/";
|
|
12
|
+
Prefixes["owl"] = "http://www.w3.org/2002/07/owl#";
|
|
13
|
+
Prefixes["vlaanderen"] = "https://data.vlaanderen.be/ns/";
|
|
14
|
+
Prefixes["void"] = "http://rdfs.org/ns/void#";
|
|
15
|
+
Prefixes["rdf"] = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
|
|
16
|
+
Prefixes["rdfs"] = "http://www.w3.org/2000/01/rdf-schema#";
|
|
17
|
+
Prefixes["qb"] = "http://purl.org/linked-data/cube#";
|
|
18
|
+
Prefixes["skos"] = "http://www.w3.org/2004/02/skos/core#";
|
|
19
|
+
Prefixes["xsd"] = "http://www.w3.org/2001/XMLSchema#";
|
|
20
|
+
Prefixes["person"] = "http://www.w3.org/ns/person#";
|
|
21
|
+
Prefixes["vann"] = "http://purl.org/vocab/vann/";
|
|
22
|
+
Prefixes["shacl"] = "http://w3.org/ns/shacl#";
|
|
23
|
+
Prefixes["prov"] = "http://www.w3.org/ns/prov#";
|
|
24
|
+
Prefixes["oslo"] = "https://implementatie.data.vlaanderen.be/ns/oslo-toolchain#";
|
|
25
|
+
})(Prefixes || (Prefixes = {}));
|
|
26
|
+
const vocab = () => {
|
|
27
|
+
const namespaces = {};
|
|
28
|
+
for (const prefix in Prefixes) {
|
|
29
|
+
const expansion = Prefixes[prefix];
|
|
30
|
+
namespaces[prefix] = (localName = '') => factory.namedNode(expansion + localName);
|
|
31
|
+
}
|
|
32
|
+
return namespaces;
|
|
33
|
+
};
|
|
34
|
+
exports.ns = vocab();
|
|
36
35
|
//# sourceMappingURL=namespaces.js.map
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type * as RDF from '@rdfjs/types';
|
|
2
|
+
import type { QuadStore } from '@oslo-core/store/QuadStore';
|
|
3
|
+
export declare function getApplicationProfileLabel(subject: RDF.Term, store: QuadStore, language?: string | null): RDF.Literal | undefined;
|
|
4
|
+
export declare function getVocabularyLabel(subject: RDF.Term, store: QuadStore, language?: string | null): RDF.Literal | undefined;
|
|
5
|
+
export declare function getApplicationProfileDefinition(subject: RDF.Term, store: QuadStore, language?: string | null): RDF.Literal | undefined;
|
|
6
|
+
export declare function getVocabularyDefinition(subject: RDF.Term, store: QuadStore, language?: string | null): RDF.Literal | undefined;
|
|
7
|
+
export declare function getApplicationProfileUsageNote(subject: RDF.Term, store: QuadStore, language?: string | null): RDF.Literal | undefined;
|
|
8
|
+
export declare function getVocabularyUsageNote(subject: RDF.Term, store: QuadStore, language?: string | null): RDF.Literal | undefined;
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getVocabularyUsageNote = exports.getApplicationProfileUsageNote = exports.getVocabularyDefinition = exports.getApplicationProfileDefinition = exports.getVocabularyLabel = exports.getApplicationProfileLabel = void 0;
|
|
4
|
+
const namespaces_1 = require("@oslo-core/utils/namespaces");
|
|
5
|
+
function getApplicationProfileLabel(subject, store, language = null) {
|
|
6
|
+
var _a, _b, _c;
|
|
7
|
+
const labels = store.getLabels(subject);
|
|
8
|
+
if (labels.some(x => x.predicate.equals(namespaces_1.ns.oslo('apLabel')))) {
|
|
9
|
+
return (_a = labels
|
|
10
|
+
.find(x => x.predicate.equals(namespaces_1.ns.oslo('apLabel')) &&
|
|
11
|
+
x.object.language === (language || ''))) === null || _a === void 0 ? void 0 : _a.object;
|
|
12
|
+
}
|
|
13
|
+
if (labels.some(x => x.predicate.equals(namespaces_1.ns.oslo('vocLabel')))) {
|
|
14
|
+
return (_b = labels.find(x => x.predicate.equals(namespaces_1.ns.oslo('vocLabel')) &&
|
|
15
|
+
x.object.language === (language || ''))) === null || _b === void 0 ? void 0 : _b.object;
|
|
16
|
+
}
|
|
17
|
+
return (_c = labels.find(x => x.predicate.equals(namespaces_1.ns.oslo('diagramLabel')))) === null || _c === void 0 ? void 0 : _c.object;
|
|
18
|
+
}
|
|
19
|
+
exports.getApplicationProfileLabel = getApplicationProfileLabel;
|
|
20
|
+
function getVocabularyLabel(subject, store, language = null) {
|
|
21
|
+
var _a, _b;
|
|
22
|
+
const labels = store.getLabels(subject);
|
|
23
|
+
if (labels.some(x => x.predicate.equals(namespaces_1.ns.oslo('vocLabel')))) {
|
|
24
|
+
return (_a = labels
|
|
25
|
+
.find(x => x.predicate.equals(namespaces_1.ns.oslo('vocLabel')) &&
|
|
26
|
+
x.object.language === (language || ''))) === null || _a === void 0 ? void 0 : _a.object;
|
|
27
|
+
}
|
|
28
|
+
return (_b = labels.find(x => x.predicate.equals(namespaces_1.ns.oslo('diagramLabel')))) === null || _b === void 0 ? void 0 : _b.object;
|
|
29
|
+
}
|
|
30
|
+
exports.getVocabularyLabel = getVocabularyLabel;
|
|
31
|
+
function getApplicationProfileDefinition(subject, store, language = null) {
|
|
32
|
+
var _a, _b;
|
|
33
|
+
const definitions = store.getDefinitions(subject);
|
|
34
|
+
if (definitions.some(x => x.predicate.equals(namespaces_1.ns.oslo('apDefinition')))) {
|
|
35
|
+
return (_a = definitions
|
|
36
|
+
.find(x => x.predicate.equals(namespaces_1.ns.oslo('apDefinition')) &&
|
|
37
|
+
x.object.language === (language || ''))) === null || _a === void 0 ? void 0 : _a.object;
|
|
38
|
+
}
|
|
39
|
+
if (definitions.some(x => x.predicate.equals(namespaces_1.ns.oslo('vocDefinition')))) {
|
|
40
|
+
return (_b = definitions
|
|
41
|
+
.find(x => x.predicate.equals(namespaces_1.ns.oslo('vocDefinition')) &&
|
|
42
|
+
x.object.language === (language || ''))) === null || _b === void 0 ? void 0 : _b.object;
|
|
43
|
+
}
|
|
44
|
+
return undefined;
|
|
45
|
+
}
|
|
46
|
+
exports.getApplicationProfileDefinition = getApplicationProfileDefinition;
|
|
47
|
+
function getVocabularyDefinition(subject, store, language = null) {
|
|
48
|
+
var _a;
|
|
49
|
+
const definitions = store.getDefinitions(subject);
|
|
50
|
+
if (definitions.some(x => x.predicate.equals(namespaces_1.ns.oslo('vocDefinition')))) {
|
|
51
|
+
return (_a = definitions
|
|
52
|
+
.find(x => x.predicate.equals(namespaces_1.ns.oslo('vocDefinition')) &&
|
|
53
|
+
x.object.language === (language || ''))) === null || _a === void 0 ? void 0 : _a.object;
|
|
54
|
+
}
|
|
55
|
+
return undefined;
|
|
56
|
+
}
|
|
57
|
+
exports.getVocabularyDefinition = getVocabularyDefinition;
|
|
58
|
+
function getApplicationProfileUsageNote(subject, store, language = null) {
|
|
59
|
+
var _a, _b;
|
|
60
|
+
const usageNotes = store.getUsageNotes(subject);
|
|
61
|
+
if (usageNotes.some(x => x.predicate.equals(namespaces_1.ns.oslo('apUsageNote')))) {
|
|
62
|
+
return (_a = usageNotes
|
|
63
|
+
.find(x => x.predicate.equals(namespaces_1.ns.oslo('apUsageNote')) &&
|
|
64
|
+
x.object.language === (language || ''))) === null || _a === void 0 ? void 0 : _a.object;
|
|
65
|
+
}
|
|
66
|
+
if (usageNotes.some(x => x.predicate.equals(namespaces_1.ns.oslo('vocUsageNote')))) {
|
|
67
|
+
return (_b = usageNotes
|
|
68
|
+
.find(x => x.predicate.equals(namespaces_1.ns.oslo('vocUsageNote')) &&
|
|
69
|
+
x.object.language === (language || ''))) === null || _b === void 0 ? void 0 : _b.object;
|
|
70
|
+
}
|
|
71
|
+
return undefined;
|
|
72
|
+
}
|
|
73
|
+
exports.getApplicationProfileUsageNote = getApplicationProfileUsageNote;
|
|
74
|
+
function getVocabularyUsageNote(subject, store, language = null) {
|
|
75
|
+
var _a;
|
|
76
|
+
const usageNotes = store.getUsageNotes(subject);
|
|
77
|
+
if (usageNotes.some(x => x.predicate.equals(namespaces_1.ns.oslo('vocUsageNote')))) {
|
|
78
|
+
return (_a = usageNotes
|
|
79
|
+
.find(x => x.predicate.equals(namespaces_1.ns.oslo('vocUsageNote')) &&
|
|
80
|
+
x.object.language === (language || ''))) === null || _a === void 0 ? void 0 : _a.object;
|
|
81
|
+
}
|
|
82
|
+
return undefined;
|
|
83
|
+
}
|
|
84
|
+
exports.getVocabularyUsageNote = getVocabularyUsageNote;
|
|
85
|
+
//# sourceMappingURL=storeUtils.js.map
|
package/lib/utils/uniqueId.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function uniqueId(guid: string, label: string, id: number): string;
|
|
1
|
+
export declare function uniqueId(guid: string, label: string, id: number): string;
|
package/lib/utils/uniqueId.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.uniqueId = void 0;
|
|
4
|
-
const crypto_js_1 = require("crypto-js");
|
|
5
|
-
function uniqueId(guid, label, id) {
|
|
6
|
-
const object = {
|
|
7
|
-
guid,
|
|
8
|
-
label,
|
|
9
|
-
id,
|
|
10
|
-
};
|
|
11
|
-
return (0, crypto_js_1.SHA256)(JSON.stringify(object)).toString();
|
|
12
|
-
}
|
|
13
|
-
exports.uniqueId = uniqueId;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.uniqueId = void 0;
|
|
4
|
+
const crypto_js_1 = require("crypto-js");
|
|
5
|
+
function uniqueId(guid, label, id) {
|
|
6
|
+
const object = {
|
|
7
|
+
guid,
|
|
8
|
+
label,
|
|
9
|
+
id,
|
|
10
|
+
};
|
|
11
|
+
return (0, crypto_js_1.SHA256)(JSON.stringify(object)).toString();
|
|
12
|
+
}
|
|
13
|
+
exports.uniqueId = uniqueId;
|
|
14
14
|
//# sourceMappingURL=uniqueId.js.map
|
package/package.json
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oslo-flanders/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6-alpha.0",
|
|
4
4
|
"description": "Core interfaces and utilities",
|
|
5
5
|
"author": "Digitaal Vlaanderen <https://data.vlaanderen.be/id/organisatie/OVO002949>",
|
|
6
6
|
"homepage": "https://github.com/informatievlaanderen/OSLO-UML-Transformer/tree/main/packages/oslo-core#readme",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "index.js",
|
|
9
|
+
"_moduleAliases": {
|
|
10
|
+
"@oslo-core": "./lib"
|
|
11
|
+
},
|
|
9
12
|
"directories": {
|
|
10
13
|
"lib": "lib"
|
|
11
14
|
},
|
|
@@ -38,7 +41,10 @@
|
|
|
38
41
|
"test/data/*",
|
|
39
42
|
"lib/utils/namespaces.ts"
|
|
40
43
|
],
|
|
41
|
-
"testEnvironment": "node"
|
|
44
|
+
"testEnvironment": "node",
|
|
45
|
+
"moduleNameMapper": {
|
|
46
|
+
"^@oslo-core/(.*)$": "<rootDir>/lib/$1"
|
|
47
|
+
}
|
|
42
48
|
},
|
|
43
49
|
"scripts": {
|
|
44
50
|
"build": "npm run build:ts",
|
|
@@ -51,6 +57,7 @@
|
|
|
51
57
|
"dependencies": {
|
|
52
58
|
"crypto-js": "^4.1.1",
|
|
53
59
|
"inversify": "^6.0.1",
|
|
60
|
+
"module-alias": "^2.2.3",
|
|
54
61
|
"n3": "^1.16.2",
|
|
55
62
|
"node-fetch": "^2.6.7",
|
|
56
63
|
"rdf-data-factory": "^1.1.1",
|
|
@@ -63,9 +70,10 @@
|
|
|
63
70
|
"devDependencies": {
|
|
64
71
|
"@rdfjs/types": "^1.1.0",
|
|
65
72
|
"@types/crypto-js": "^4.1.1",
|
|
73
|
+
"@types/n3": "^1.10.4",
|
|
66
74
|
"@types/node-fetch": "^2.6.2",
|
|
67
75
|
"@types/streamify-string": "^1.0.0",
|
|
68
76
|
"@types/tmp": "^0.2.3"
|
|
69
77
|
},
|
|
70
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "e562cdd74bed9ae1d9a867a981b2b8a5c6492f1b"
|
|
71
79
|
}
|