@oslo-flanders/core 0.0.12-alpha.0 → 0.0.13-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/README.md +1 -1
- package/index.d.ts +20 -21
- package/index.js +20 -26
- package/lib/interfaces/AppRunner.d.ts +2 -2
- package/lib/interfaces/AppRunner.js +2 -2
- package/lib/interfaces/IConfiguration.d.ts +1 -1
- package/lib/interfaces/IOutputHandler.d.ts +1 -1
- package/lib/interfaces/IService.d.ts +2 -2
- package/lib/logging/LogUtil.d.ts +2 -2
- package/lib/logging/LogUtil.js +2 -2
- package/lib/logging/Logger.d.ts +1 -1
- package/lib/logging/LoggerFactory.d.ts +1 -1
- package/lib/logging/VoidLogger.d.ts +3 -3
- package/lib/logging/VoidLogger.js +1 -1
- package/lib/logging/VoidLoggerFactory.d.ts +2 -2
- package/lib/logging/VoidLoggerFactory.js +1 -1
- package/lib/logging/WinstonLogger.d.ts +2 -2
- package/lib/logging/WinstonLogger.js +1 -1
- package/lib/logging/WinstonLoggerFactory.d.ts +3 -3
- package/lib/logging/WinstonLoggerFactory.js +1 -1
- package/lib/store/QuadStore.d.ts +5 -0
- package/lib/store/QuadStore.js +9 -2
- package/lib/utils/namespaces.d.ts +3 -2
- package/lib/utils/namespaces.js +2 -1
- package/lib/utils/storeUtils.d.ts +1 -1
- package/lib/utils/storeUtils.js +1 -1
- package/package.json +3 -29
package/README.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -1,22 +1,21 @@
|
|
|
1
1
|
import 'reflect-metadata';
|
|
2
|
-
|
|
3
|
-
export * from '
|
|
4
|
-
export * from '
|
|
5
|
-
export * from '
|
|
6
|
-
export * from '
|
|
7
|
-
export * from '
|
|
8
|
-
export * from '
|
|
9
|
-
export * from '
|
|
10
|
-
export * from '
|
|
11
|
-
export * from '
|
|
12
|
-
export * from '
|
|
13
|
-
export * from '
|
|
14
|
-
export * from '
|
|
15
|
-
export * from '
|
|
16
|
-
export * from '
|
|
17
|
-
export * from '
|
|
18
|
-
export * from '
|
|
19
|
-
export * from '
|
|
20
|
-
export * from '
|
|
21
|
-
export * from '
|
|
22
|
-
export * from '@oslo-core/utils/storeUtils';
|
|
2
|
+
export * from './lib/interfaces/AppRunner';
|
|
3
|
+
export * from './lib/interfaces/IConfiguration';
|
|
4
|
+
export * from './lib/interfaces/IOutputHandler';
|
|
5
|
+
export * from './lib/interfaces/IService';
|
|
6
|
+
export * from './lib/utils/fetchFileOrUrl';
|
|
7
|
+
export * from './lib/utils/namespaces';
|
|
8
|
+
export * from './lib/utils/uniqueId';
|
|
9
|
+
export * from './lib/store/QuadStore';
|
|
10
|
+
export * from './lib/ServiceIdentifier';
|
|
11
|
+
export * from './lib/enums/Scope';
|
|
12
|
+
export * from './lib/enums/PropertyTypes';
|
|
13
|
+
export * from './lib/logging/LogLevel';
|
|
14
|
+
export * from './lib/logging/Logger';
|
|
15
|
+
export * from './lib/logging/VoidLogger';
|
|
16
|
+
export * from './lib/logging/WinstonLogger';
|
|
17
|
+
export * from './lib/logging/LogUtil';
|
|
18
|
+
export * from './lib/logging/LoggerFactory';
|
|
19
|
+
export * from './lib/logging/VoidLoggerFactory';
|
|
20
|
+
export * from './lib/logging/WinstonLoggerFactory';
|
|
21
|
+
export * from './lib/utils/storeUtils';
|
package/index.js
CHANGED
|
@@ -15,30 +15,24 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
require("reflect-metadata");
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
__exportStar(require("
|
|
25
|
-
__exportStar(require("
|
|
26
|
-
__exportStar(require("
|
|
27
|
-
__exportStar(require("
|
|
28
|
-
__exportStar(require("
|
|
29
|
-
__exportStar(require("
|
|
30
|
-
__exportStar(require("
|
|
31
|
-
__exportStar(require("
|
|
32
|
-
__exportStar(require("
|
|
33
|
-
__exportStar(require("
|
|
34
|
-
__exportStar(require("
|
|
35
|
-
__exportStar(require("
|
|
36
|
-
__exportStar(require("
|
|
37
|
-
__exportStar(require("
|
|
38
|
-
__exportStar(require("@oslo-core/logging/WinstonLogger"), exports);
|
|
39
|
-
__exportStar(require("@oslo-core/logging/LogUtil"), exports);
|
|
40
|
-
__exportStar(require("@oslo-core/logging/LoggerFactory"), exports);
|
|
41
|
-
__exportStar(require("@oslo-core/logging/VoidLoggerFactory"), exports);
|
|
42
|
-
__exportStar(require("@oslo-core/logging/WinstonLoggerFactory"), exports);
|
|
43
|
-
__exportStar(require("@oslo-core/utils/storeUtils"), exports);
|
|
18
|
+
__exportStar(require("./lib/interfaces/AppRunner"), exports);
|
|
19
|
+
__exportStar(require("./lib/interfaces/IConfiguration"), exports);
|
|
20
|
+
__exportStar(require("./lib/interfaces/IOutputHandler"), exports);
|
|
21
|
+
__exportStar(require("./lib/interfaces/IService"), exports);
|
|
22
|
+
__exportStar(require("./lib/utils/fetchFileOrUrl"), exports);
|
|
23
|
+
__exportStar(require("./lib/utils/namespaces"), exports);
|
|
24
|
+
__exportStar(require("./lib/utils/uniqueId"), exports);
|
|
25
|
+
__exportStar(require("./lib/store/QuadStore"), exports);
|
|
26
|
+
__exportStar(require("./lib/ServiceIdentifier"), exports);
|
|
27
|
+
__exportStar(require("./lib/enums/Scope"), exports);
|
|
28
|
+
__exportStar(require("./lib/enums/PropertyTypes"), exports);
|
|
29
|
+
__exportStar(require("./lib/logging/LogLevel"), exports);
|
|
30
|
+
__exportStar(require("./lib/logging/Logger"), exports);
|
|
31
|
+
__exportStar(require("./lib/logging/VoidLogger"), exports);
|
|
32
|
+
__exportStar(require("./lib/logging/WinstonLogger"), exports);
|
|
33
|
+
__exportStar(require("./lib/logging/LogUtil"), exports);
|
|
34
|
+
__exportStar(require("./lib/logging/LoggerFactory"), exports);
|
|
35
|
+
__exportStar(require("./lib/logging/VoidLoggerFactory"), exports);
|
|
36
|
+
__exportStar(require("./lib/logging/WinstonLoggerFactory"), exports);
|
|
37
|
+
__exportStar(require("./lib/utils/storeUtils"), exports);
|
|
44
38
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import type { Container } from 'inversify';
|
|
3
|
-
import type { IConfiguration } from '
|
|
4
|
-
import type { IService } from '
|
|
3
|
+
import type { IConfiguration } from './IConfiguration';
|
|
4
|
+
import type { IService } from './IService';
|
|
5
5
|
export type CliArgv = string[];
|
|
6
6
|
export type YargsParams = {
|
|
7
7
|
[x: string]: unknown;
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.AppRunner = void 0;
|
|
4
4
|
const process_1 = require("process");
|
|
5
|
-
const LogUtil_1 = require("
|
|
6
|
-
const ServiceIdentifier_1 = require("
|
|
5
|
+
const LogUtil_1 = require("../logging/LogUtil");
|
|
6
|
+
const ServiceIdentifier_1 = require("../ServiceIdentifier");
|
|
7
7
|
class AppRunner {
|
|
8
8
|
runCliSync(process) {
|
|
9
9
|
this.runCli(process.argv).catch((error) => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type {
|
|
1
|
+
import type { Logger } from '../logging/Logger';
|
|
2
|
+
import type { IConfiguration } from './IConfiguration';
|
|
3
3
|
/**
|
|
4
4
|
* Interface that must be implemented by conversion of generation services
|
|
5
5
|
*/
|
package/lib/logging/LogUtil.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { YargsParams } from '
|
|
2
|
-
import type { Logger } from '
|
|
1
|
+
import type { YargsParams } from '../interfaces/AppRunner';
|
|
2
|
+
import type { Logger } from './Logger';
|
|
3
3
|
export declare function createLogger(): Logger;
|
|
4
4
|
export declare function setLoggerFactory(params: YargsParams): void;
|
package/lib/logging/LogUtil.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.setLoggerFactory = exports.createLogger = void 0;
|
|
4
|
-
const VoidLoggerFactory_1 = require("
|
|
5
|
-
const WinstonLoggerFactory_1 = require("
|
|
4
|
+
const VoidLoggerFactory_1 = require("./VoidLoggerFactory");
|
|
5
|
+
const WinstonLoggerFactory_1 = require("./WinstonLoggerFactory");
|
|
6
6
|
let loggerFactory = new VoidLoggerFactory_1.VoidLoggerFactory();
|
|
7
7
|
function createLogger() {
|
|
8
8
|
return loggerFactory.createLogger();
|
package/lib/logging/Logger.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { Logger } from '
|
|
2
|
-
import { BaseLogger } from '
|
|
3
|
-
import type { LogLevel } from '
|
|
1
|
+
import type { Logger } from './Logger';
|
|
2
|
+
import { BaseLogger } from './Logger';
|
|
3
|
+
import type { LogLevel } from './LogLevel';
|
|
4
4
|
export declare class VoidLogger extends BaseLogger {
|
|
5
5
|
constructor();
|
|
6
6
|
log(level: LogLevel, message: string): Logger;
|
|
@@ -11,7 +11,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.VoidLogger = void 0;
|
|
13
13
|
const inversify_1 = require("inversify");
|
|
14
|
-
const Logger_1 = require("
|
|
14
|
+
const Logger_1 = require("./Logger");
|
|
15
15
|
let VoidLogger = class VoidLogger extends Logger_1.BaseLogger {
|
|
16
16
|
constructor() {
|
|
17
17
|
super();
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { LoggerFactory } from '
|
|
2
|
-
import { VoidLogger } from '
|
|
1
|
+
import type { LoggerFactory } from './LoggerFactory';
|
|
2
|
+
import { VoidLogger } from './VoidLogger';
|
|
3
3
|
/**
|
|
4
4
|
* A factory that always returns {@link VoidLogger}, which does nothing on log messages.
|
|
5
5
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.VoidLoggerFactory = void 0;
|
|
4
|
-
const VoidLogger_1 = require("
|
|
4
|
+
const VoidLogger_1 = require("./VoidLogger");
|
|
5
5
|
/**
|
|
6
6
|
* A factory that always returns {@link VoidLogger}, which does nothing on log messages.
|
|
7
7
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Logger as WinstonInnerLogger } from 'winston';
|
|
2
|
-
import { BaseLogger } from '
|
|
3
|
-
import type { LogLevel } from '
|
|
2
|
+
import { BaseLogger } from './Logger';
|
|
3
|
+
import type { LogLevel } from './LogLevel';
|
|
4
4
|
export declare class WinstonLogger extends BaseLogger {
|
|
5
5
|
private readonly logger;
|
|
6
6
|
constructor(logger: WinstonInnerLogger);
|
|
@@ -12,7 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.WinstonLogger = void 0;
|
|
13
13
|
const inversify_1 = require("inversify");
|
|
14
14
|
const winston_1 = require("winston");
|
|
15
|
-
const Logger_1 = require("
|
|
15
|
+
const Logger_1 = require("./Logger");
|
|
16
16
|
let WinstonLogger = class WinstonLogger extends Logger_1.BaseLogger {
|
|
17
17
|
constructor(logger) {
|
|
18
18
|
super();
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type * as Transport from 'winston-transport';
|
|
2
|
-
import type { Logger } from '
|
|
3
|
-
import type { LoggerFactory } from '
|
|
4
|
-
import type { LogLevel } from '
|
|
2
|
+
import type { Logger } from './Logger';
|
|
3
|
+
import type { LoggerFactory } from './LoggerFactory';
|
|
4
|
+
import type { LogLevel } from './LogLevel';
|
|
5
5
|
export declare class WinstonLoggerFactory implements LoggerFactory {
|
|
6
6
|
private readonly level;
|
|
7
7
|
constructor(level: LogLevel);
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.WinstonLoggerFactory = void 0;
|
|
4
4
|
const winston_1 = require("winston");
|
|
5
|
-
const WinstonLogger_1 = require("
|
|
5
|
+
const WinstonLogger_1 = require("./WinstonLogger");
|
|
6
6
|
const { combine, colorize, printf } = winston_1.format;
|
|
7
7
|
const messageFormat = printf(({ level, message, messageTimestamp }) => `${new Date(Date.now()).toISOString()} ${level}: ${message}`);
|
|
8
8
|
class WinstonLoggerFactory {
|
package/lib/store/QuadStore.d.ts
CHANGED
|
@@ -21,6 +21,11 @@ export declare class QuadStore {
|
|
|
21
21
|
* @returns an array of RDF.NamedNodes
|
|
22
22
|
*/
|
|
23
23
|
getClassIds(graph?: RDF.Term | null): RDF.NamedNode[];
|
|
24
|
+
/**
|
|
25
|
+
* Finds all subjects where predicate is 'rdf:type' and object 'rdfs:Datatype'
|
|
26
|
+
* @returns an array of RDF.NamedNodes
|
|
27
|
+
*/
|
|
28
|
+
getDatatypes(graph?: RDF.Term | null): RDF.NamedNode[];
|
|
24
29
|
/**
|
|
25
30
|
* Finds all subjects where predicate is 'rdf:type' and object 'owl:DatatypeProperty'
|
|
26
31
|
* @returns an array of RDF.NamedNodes
|
package/lib/store/QuadStore.js
CHANGED
|
@@ -39,8 +39,8 @@ exports.QuadStore = void 0;
|
|
|
39
39
|
const inversify_1 = require("inversify");
|
|
40
40
|
const N3 = __importStar(require("n3"));
|
|
41
41
|
const rdf_parse_1 = __importDefault(require("rdf-parse"));
|
|
42
|
-
const fetchFileOrUrl_1 = require("
|
|
43
|
-
const namespaces_1 = require("
|
|
42
|
+
const fetchFileOrUrl_1 = require("../utils/fetchFileOrUrl");
|
|
43
|
+
const namespaces_1 = require("../utils/namespaces");
|
|
44
44
|
let QuadStore = class QuadStore {
|
|
45
45
|
constructor() {
|
|
46
46
|
this.store = new N3.Store();
|
|
@@ -94,6 +94,13 @@ let QuadStore = class QuadStore {
|
|
|
94
94
|
getClassIds(graph = null) {
|
|
95
95
|
return (this.store.getSubjects(namespaces_1.ns.rdf('type'), namespaces_1.ns.owl('Class'), graph));
|
|
96
96
|
}
|
|
97
|
+
/**
|
|
98
|
+
* Finds all subjects where predicate is 'rdf:type' and object 'rdfs:Datatype'
|
|
99
|
+
* @returns an array of RDF.NamedNodes
|
|
100
|
+
*/
|
|
101
|
+
getDatatypes(graph = null) {
|
|
102
|
+
return (this.store.getSubjects(namespaces_1.ns.rdf('type'), namespaces_1.ns.rdfs('Datatype'), graph));
|
|
103
|
+
}
|
|
97
104
|
/**
|
|
98
105
|
* Finds all subjects where predicate is 'rdf:type' and object 'owl:DatatypeProperty'
|
|
99
106
|
* @returns an array of RDF.NamedNodes
|
|
@@ -13,9 +13,10 @@ declare enum Prefixes {
|
|
|
13
13
|
xsd = "http://www.w3.org/2001/XMLSchema#",
|
|
14
14
|
person = "http://www.w3.org/ns/person#",
|
|
15
15
|
vann = "http://purl.org/vocab/vann/",
|
|
16
|
-
shacl = "http://w3.org/ns/shacl#",
|
|
16
|
+
shacl = "http://www.w3.org/ns/shacl#",
|
|
17
17
|
prov = "http://www.w3.org/ns/prov#",
|
|
18
|
-
oslo = "https://implementatie.data.vlaanderen.be/ns/oslo-toolchain#"
|
|
18
|
+
oslo = "https://implementatie.data.vlaanderen.be/ns/oslo-toolchain#",
|
|
19
|
+
vl = "https://data.vlaanderen.be/ns/shacl#"
|
|
19
20
|
}
|
|
20
21
|
export type Namespace = {
|
|
21
22
|
[T in keyof typeof Prefixes]: Function;
|
package/lib/utils/namespaces.js
CHANGED
|
@@ -19,9 +19,10 @@ var Prefixes;
|
|
|
19
19
|
Prefixes["xsd"] = "http://www.w3.org/2001/XMLSchema#";
|
|
20
20
|
Prefixes["person"] = "http://www.w3.org/ns/person#";
|
|
21
21
|
Prefixes["vann"] = "http://purl.org/vocab/vann/";
|
|
22
|
-
Prefixes["shacl"] = "http://w3.org/ns/shacl#";
|
|
22
|
+
Prefixes["shacl"] = "http://www.w3.org/ns/shacl#";
|
|
23
23
|
Prefixes["prov"] = "http://www.w3.org/ns/prov#";
|
|
24
24
|
Prefixes["oslo"] = "https://implementatie.data.vlaanderen.be/ns/oslo-toolchain#";
|
|
25
|
+
Prefixes["vl"] = "https://data.vlaanderen.be/ns/shacl#";
|
|
25
26
|
})(Prefixes || (Prefixes = {}));
|
|
26
27
|
const vocab = () => {
|
|
27
28
|
const namespaces = {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type * as RDF from '@rdfjs/types';
|
|
2
|
-
import type { QuadStore } from '
|
|
2
|
+
import type { QuadStore } from '../store/QuadStore';
|
|
3
3
|
export declare function getApplicationProfileLabel(subject: RDF.Term, store: QuadStore, language?: string | null): RDF.Literal | undefined;
|
|
4
4
|
export declare function getVocabularyLabel(subject: RDF.Term, store: QuadStore, language?: string | null): RDF.Literal | undefined;
|
|
5
5
|
export declare function getApplicationProfileDefinition(subject: RDF.Term, store: QuadStore, language?: string | null): RDF.Literal | undefined;
|
package/lib/utils/storeUtils.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getMaxCount = exports.getMinCount = exports.getVocabularyUsageNote = exports.getApplicationProfileUsageNote = exports.getVocabularyDefinition = exports.getApplicationProfileDefinition = exports.getVocabularyLabel = exports.getApplicationProfileLabel = void 0;
|
|
4
|
-
const namespaces_1 = require("
|
|
4
|
+
const namespaces_1 = require("./namespaces");
|
|
5
5
|
function getApplicationProfileLabel(subject, store, language = null) {
|
|
6
6
|
var _a, _b, _c;
|
|
7
7
|
const labels = store.getLabels(subject);
|
package/package.json
CHANGED
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oslo-flanders/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13-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
|
-
},
|
|
12
9
|
"directories": {
|
|
13
10
|
"lib": "lib"
|
|
14
11
|
},
|
|
@@ -24,32 +21,10 @@
|
|
|
24
21
|
"type": "git",
|
|
25
22
|
"url": "git+https://github.com/Informatievlaanderen/OSLO-UML-Transformer.git"
|
|
26
23
|
},
|
|
27
|
-
"jest": {
|
|
28
|
-
"runner": "groups",
|
|
29
|
-
"transform": {
|
|
30
|
-
"^.+\\.ts$": "ts-jest"
|
|
31
|
-
},
|
|
32
|
-
"testRegex": "/test/.*.test.ts$",
|
|
33
|
-
"moduleFileExtensions": [
|
|
34
|
-
"ts",
|
|
35
|
-
"js"
|
|
36
|
-
],
|
|
37
|
-
"collectCoverage": true,
|
|
38
|
-
"coveragePathIgnorePatterns": [
|
|
39
|
-
"/node_modules/",
|
|
40
|
-
"index.js",
|
|
41
|
-
"test/data/*",
|
|
42
|
-
"lib/utils/namespaces.ts"
|
|
43
|
-
],
|
|
44
|
-
"testEnvironment": "node",
|
|
45
|
-
"moduleNameMapper": {
|
|
46
|
-
"^@oslo-core/(.*)$": "<rootDir>/lib/$1"
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
24
|
"scripts": {
|
|
50
25
|
"build": "npm run build:ts",
|
|
51
26
|
"build:ts": "tsc",
|
|
52
|
-
"test:unit": "node \"../../node_modules/jest/bin/jest.js\" --group=unit"
|
|
27
|
+
"test:unit": "node \"../../node_modules/jest/bin/jest.js\" --group=unit --config ../../jest.config.ts ./packages/oslo-core/"
|
|
53
28
|
},
|
|
54
29
|
"bugs": {
|
|
55
30
|
"url": "https://github.com/Informatievlaanderen/OSLO-UML-Transformer/issues"
|
|
@@ -57,7 +32,6 @@
|
|
|
57
32
|
"dependencies": {
|
|
58
33
|
"crypto-js": "^4.1.1",
|
|
59
34
|
"inversify": "^6.0.1",
|
|
60
|
-
"module-alias": "^2.2.3",
|
|
61
35
|
"n3": "^1.16.2",
|
|
62
36
|
"node-fetch": "^2.6.7",
|
|
63
37
|
"rdf-data-factory": "^1.1.1",
|
|
@@ -75,5 +49,5 @@
|
|
|
75
49
|
"@types/streamify-string": "^1.0.0",
|
|
76
50
|
"@types/tmp": "^0.2.3"
|
|
77
51
|
},
|
|
78
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "5c9d2777bb0afe94b70438c65bf648f6a4a6f315"
|
|
79
53
|
}
|