@comake/skl-js-engine 0.1.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.md +4 -0
- package/README.md +46 -0
- package/dist/Skql.d.ts +68 -0
- package/dist/Skql.js +351 -0
- package/dist/Skql.js.map +1 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.js +44 -0
- package/dist/index.js.map +1 -0
- package/dist/mapping/Mapper.d.ts +14 -0
- package/dist/mapping/Mapper.js +64 -0
- package/dist/mapping/Mapper.js.map +1 -0
- package/dist/sklEngine.d.ts +68 -0
- package/dist/sklEngine.js +351 -0
- package/dist/sklEngine.js.map +1 -0
- package/dist/storage/AggregateOperator.d.ts +12 -0
- package/dist/storage/AggregateOperator.js +17 -0
- package/dist/storage/AggregateOperator.js.map +1 -0
- package/dist/storage/BaseQueryAdapterOptions.d.ts +19 -0
- package/dist/storage/BaseQueryAdapterOptions.js +3 -0
- package/dist/storage/BaseQueryAdapterOptions.js.map +1 -0
- package/dist/storage/FindOperator.d.ts +12 -0
- package/dist/storage/FindOperator.js +17 -0
- package/dist/storage/FindOperator.js.map +1 -0
- package/dist/storage/FindOptionsTypes.d.ts +45 -0
- package/dist/storage/FindOptionsTypes.js +3 -0
- package/dist/storage/FindOptionsTypes.js.map +1 -0
- package/dist/storage/MemoryQueryAdapter.d.ts +28 -0
- package/dist/storage/MemoryQueryAdapter.js +215 -0
- package/dist/storage/MemoryQueryAdapter.js.map +1 -0
- package/dist/storage/QueryAdapter.d.ts +74 -0
- package/dist/storage/QueryAdapter.js +3 -0
- package/dist/storage/QueryAdapter.js.map +1 -0
- package/dist/storage/SparqlQueryAdapter.d.ts +34 -0
- package/dist/storage/SparqlQueryAdapter.js +229 -0
- package/dist/storage/SparqlQueryAdapter.js.map +1 -0
- package/dist/storage/aggregate/Max.d.ts +2 -0
- package/dist/storage/aggregate/Max.js +13 -0
- package/dist/storage/aggregate/Max.js.map +1 -0
- package/dist/storage/memory/MemoryQueryAdapter.d.ts +36 -0
- package/dist/storage/memory/MemoryQueryAdapter.js +246 -0
- package/dist/storage/memory/MemoryQueryAdapter.js.map +1 -0
- package/dist/storage/memory/MemoryQueryAdapterOptions.d.ts +12 -0
- package/dist/storage/memory/MemoryQueryAdapterOptions.js +3 -0
- package/dist/storage/memory/MemoryQueryAdapterOptions.js.map +1 -0
- package/dist/storage/operator/Equal.d.ts +2 -0
- package/dist/storage/operator/Equal.js +13 -0
- package/dist/storage/operator/Equal.js.map +1 -0
- package/dist/storage/operator/GreaterThan.d.ts +2 -0
- package/dist/storage/operator/GreaterThan.js +13 -0
- package/dist/storage/operator/GreaterThan.js.map +1 -0
- package/dist/storage/operator/GreaterThanOrEqual.d.ts +2 -0
- package/dist/storage/operator/GreaterThanOrEqual.js +13 -0
- package/dist/storage/operator/GreaterThanOrEqual.js.map +1 -0
- package/dist/storage/operator/In.d.ts +2 -0
- package/dist/storage/operator/In.js +13 -0
- package/dist/storage/operator/In.js.map +1 -0
- package/dist/storage/operator/Inverse.d.ts +2 -0
- package/dist/storage/operator/Inverse.js +13 -0
- package/dist/storage/operator/Inverse.js.map +1 -0
- package/dist/storage/operator/LessThan.d.ts +2 -0
- package/dist/storage/operator/LessThan.js +13 -0
- package/dist/storage/operator/LessThan.js.map +1 -0
- package/dist/storage/operator/LessThanOrEqual.d.ts +2 -0
- package/dist/storage/operator/LessThanOrEqual.js +13 -0
- package/dist/storage/operator/LessThanOrEqual.js.map +1 -0
- package/dist/storage/operator/Not.d.ts +2 -0
- package/dist/storage/operator/Not.js +13 -0
- package/dist/storage/operator/Not.js.map +1 -0
- package/dist/storage/sparql/SparqlQueryAdapter.d.ts +40 -0
- package/dist/storage/sparql/SparqlQueryAdapter.js +235 -0
- package/dist/storage/sparql/SparqlQueryAdapter.js.map +1 -0
- package/dist/storage/sparql/SparqlQueryAdapterOptions.d.ts +15 -0
- package/dist/storage/sparql/SparqlQueryAdapterOptions.js +3 -0
- package/dist/storage/sparql/SparqlQueryAdapterOptions.js.map +1 -0
- package/dist/storage/sparql/SparqlQueryBuilder.d.ts +81 -0
- package/dist/storage/sparql/SparqlQueryBuilder.js +553 -0
- package/dist/storage/sparql/SparqlQueryBuilder.js.map +1 -0
- package/dist/storage/sparql/SparqlUpdateBuilder.d.ts +31 -0
- package/dist/storage/sparql/SparqlUpdateBuilder.js +190 -0
- package/dist/storage/sparql/SparqlUpdateBuilder.js.map +1 -0
- package/dist/storage/sparql/VariableGenerator.d.ts +4 -0
- package/dist/storage/sparql/VariableGenerator.js +14 -0
- package/dist/storage/sparql/VariableGenerator.js.map +1 -0
- package/dist/util/TripleUtil.d.ts +21 -0
- package/dist/util/TripleUtil.js +221 -0
- package/dist/util/TripleUtil.js.map +1 -0
- package/dist/util/Types.d.ts +10 -0
- package/dist/util/Types.js +3 -0
- package/dist/util/Types.js.map +1 -0
- package/dist/util/Util.d.ts +15 -0
- package/dist/util/Util.js +94 -0
- package/dist/util/Util.js.map +1 -0
- package/dist/util/VariableGenerator.d.ts +5 -0
- package/dist/util/VariableGenerator.js +29 -0
- package/dist/util/VariableGenerator.js.map +1 -0
- package/dist/util/Vocabularies.d.ts +12 -0
- package/dist/util/Vocabularies.js +118 -0
- package/dist/util/Vocabularies.js.map +1 -0
- package/package.json +92 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VariableGenerator.js","sourceRoot":"","sources":["../../src/util/VariableGenerator.ts"],"names":[],"mappings":";;;AAAA,MAAM,QAAQ,GAAG;IACf,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG;IAC/D,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG;CAChE,CAAC;AAEF,MAAa,iBAAiB;IAA9B;QACU,oBAAe,GAAa,EAAE,CAAC;IAkBzC,CAAC;IAhBQ,OAAO;QACZ,MAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;QACtD,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;QAC5B,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC,GAAW,EAAU,EAAE,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACnE,CAAC;IAEO,aAAa,CAAC,GAAa;QACjC,IAAI,GAAG,CAAC,MAAM,KAAK,CAAC,EAAE;YACpB,OAAO,CAAE,CAAC,CAAE,CAAC;SACd;QACD,MAAM,KAAK,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;QACrB,IAAI,KAAK,KAAK,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE;YACjC,OAAO,CAAE,CAAC,EAAE,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC;SACnD;QACD,OAAO,CAAE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAE,CAAC;IACzC,CAAC;CACF;AAnBD,8CAmBC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare type Namespace<T extends string, TBase extends string> = {
|
|
2
|
+
[key in T]: `${TBase}${key}`;
|
|
3
|
+
};
|
|
4
|
+
export declare const SKL: Namespace<"Verb" | "Noun" | "Mapping" | "Parameters" | "VerbIntegrationMapping" | "NounInterfaceMapping" | "OpenApiDescription" | "Account" | "SecurityCredentials" | "InterfaceComponent" | "Folder" | "OpenApiSecuritySchemeVerb" | "NounMappedVerb" | "VerbNounMapping" | "JsonDataSource" | "Integration" | "verb" | "account" | "integration" | "parameters" | "operationMapping" | "parameterMapping" | "parameterMappingFrame" | "returnValueMapping" | "returnValueFrame" | "verbMapping" | "openApiDescription" | "accessToken" | "refreshToken" | "apiKey" | "sourceId" | "returnValue" | "parametersContext" | "sourceUrl" | "interface" | "noun" | "propertiesMapping" | "styling" | "designTokens" | "iterate" | "iterateItemAccessor" | "clientId" | "IntegrationSyncConfiguration" | "syncStepDefaultArgs" | "syncSteps" | "TokenPaginatedCollection" | "PaginatedCollection" | "File" | "Event" | "schemeName" | "oauthFlow" | "stage" | "operationId" | "clientSecret" | "invalidTokenErrorMatcher" | "getOauthTokens" | "records" | "overrideBasePath" | "dataSource" | "data" | "source", "https://standardknowledge.com/ontologies/core/">;
|
|
5
|
+
export declare const XSD: Namespace<"string" | "boolean" | "integer" | "double" | "decimal" | "float" | "positiveInteger" | "negativeInteger" | "int" | "date" | "time" | "dateTime", "http://www.w3.org/2001/XMLSchema#">;
|
|
6
|
+
export declare const RDF: Namespace<"type" | "first" | "rest" | "datatype" | "JSON", "http://www.w3.org/1999/02/22-rdf-syntax-ns#">;
|
|
7
|
+
export declare const RDFS: Namespace<"subClassOf" | "label" | "range", "http://www.w3.org/2000/01/rdf-schema#">;
|
|
8
|
+
export declare const OWL: Namespace<"Restriction" | "onProperty" | "allValuesFrom" | "Class" | "intersectionOf" | "someValuesFrom" | "ObjectProperty", "http://www.w3.org/2002/07/owl#">;
|
|
9
|
+
export declare const SHACL: Namespace<"targetClass" | "targetNode", "http://www.w3.org/ns/shacl#">;
|
|
10
|
+
export declare const SCHEMA: Namespace<"Event", "https://schema.org/">;
|
|
11
|
+
export declare const DCTERMS: Namespace<"created" | "modified", "http://purl.org/dc/terms/">;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DCTERMS = exports.SCHEMA = exports.SHACL = exports.OWL = exports.RDFS = exports.RDF = exports.XSD = exports.SKL = void 0;
|
|
4
|
+
function createNamespace(baseUri, localNames) {
|
|
5
|
+
return localNames.reduce((obj, localName) => ({ ...obj, [localName]: `${baseUri}${localName}` }
|
|
6
|
+
// eslint-disable-next-line @typescript-eslint/prefer-reduce-type-parameter
|
|
7
|
+
), {});
|
|
8
|
+
}
|
|
9
|
+
exports.SKL = createNamespace('https://standardknowledge.com/ontologies/core/', [
|
|
10
|
+
'Verb',
|
|
11
|
+
'Noun',
|
|
12
|
+
'Mapping',
|
|
13
|
+
'Parameters',
|
|
14
|
+
'VerbIntegrationMapping',
|
|
15
|
+
'NounInterfaceMapping',
|
|
16
|
+
'OpenApiDescription',
|
|
17
|
+
'Account',
|
|
18
|
+
'SecurityCredentials',
|
|
19
|
+
'InterfaceComponent',
|
|
20
|
+
'Folder',
|
|
21
|
+
'OpenApiSecuritySchemeVerb',
|
|
22
|
+
'NounMappedVerb',
|
|
23
|
+
'VerbNounMapping',
|
|
24
|
+
'JsonDataSource',
|
|
25
|
+
'Integration',
|
|
26
|
+
'verb',
|
|
27
|
+
'account',
|
|
28
|
+
'integration',
|
|
29
|
+
'parameters',
|
|
30
|
+
'operationMapping',
|
|
31
|
+
'parameterMapping',
|
|
32
|
+
'parameterMappingFrame',
|
|
33
|
+
'returnValueMapping',
|
|
34
|
+
'returnValueFrame',
|
|
35
|
+
'verbMapping',
|
|
36
|
+
'openApiDescription',
|
|
37
|
+
'accessToken',
|
|
38
|
+
'refreshToken',
|
|
39
|
+
'apiKey',
|
|
40
|
+
'sourceId',
|
|
41
|
+
'returnValue',
|
|
42
|
+
'parametersContext',
|
|
43
|
+
'sourceUrl',
|
|
44
|
+
'interface',
|
|
45
|
+
'noun',
|
|
46
|
+
'propertiesMapping',
|
|
47
|
+
'styling',
|
|
48
|
+
'designTokens',
|
|
49
|
+
'iterate',
|
|
50
|
+
'iterateItemAccessor',
|
|
51
|
+
'clientId',
|
|
52
|
+
'IntegrationSyncConfiguration',
|
|
53
|
+
'syncStepDefaultArgs',
|
|
54
|
+
'syncSteps',
|
|
55
|
+
'TokenPaginatedCollection',
|
|
56
|
+
'PaginatedCollection',
|
|
57
|
+
'File',
|
|
58
|
+
'Event',
|
|
59
|
+
'schemeName',
|
|
60
|
+
'oauthFlow',
|
|
61
|
+
'stage',
|
|
62
|
+
'operationId',
|
|
63
|
+
'clientSecret',
|
|
64
|
+
'invalidTokenErrorMatcher',
|
|
65
|
+
'getOauthTokens',
|
|
66
|
+
'records',
|
|
67
|
+
'overrideBasePath',
|
|
68
|
+
'dataSource',
|
|
69
|
+
'data',
|
|
70
|
+
'source',
|
|
71
|
+
]);
|
|
72
|
+
exports.XSD = createNamespace('http://www.w3.org/2001/XMLSchema#', [
|
|
73
|
+
'boolean',
|
|
74
|
+
'integer',
|
|
75
|
+
'double',
|
|
76
|
+
'decimal',
|
|
77
|
+
'string',
|
|
78
|
+
'float',
|
|
79
|
+
'positiveInteger',
|
|
80
|
+
'negativeInteger',
|
|
81
|
+
'int',
|
|
82
|
+
'date',
|
|
83
|
+
'time',
|
|
84
|
+
'dateTime',
|
|
85
|
+
]);
|
|
86
|
+
exports.RDF = createNamespace('http://www.w3.org/1999/02/22-rdf-syntax-ns#', [
|
|
87
|
+
'type',
|
|
88
|
+
'first',
|
|
89
|
+
'rest',
|
|
90
|
+
'datatype',
|
|
91
|
+
'JSON',
|
|
92
|
+
]);
|
|
93
|
+
exports.RDFS = createNamespace('http://www.w3.org/2000/01/rdf-schema#', [
|
|
94
|
+
'subClassOf',
|
|
95
|
+
'label',
|
|
96
|
+
'range',
|
|
97
|
+
]);
|
|
98
|
+
exports.OWL = createNamespace('http://www.w3.org/2002/07/owl#', [
|
|
99
|
+
'Restriction',
|
|
100
|
+
'onProperty',
|
|
101
|
+
'allValuesFrom',
|
|
102
|
+
'Class',
|
|
103
|
+
'intersectionOf',
|
|
104
|
+
'someValuesFrom',
|
|
105
|
+
'ObjectProperty',
|
|
106
|
+
]);
|
|
107
|
+
exports.SHACL = createNamespace('http://www.w3.org/ns/shacl#', [
|
|
108
|
+
'targetClass',
|
|
109
|
+
'targetNode',
|
|
110
|
+
]);
|
|
111
|
+
exports.SCHEMA = createNamespace('https://schema.org/', [
|
|
112
|
+
'Event',
|
|
113
|
+
]);
|
|
114
|
+
exports.DCTERMS = createNamespace('http://purl.org/dc/terms/', [
|
|
115
|
+
'created',
|
|
116
|
+
'modified',
|
|
117
|
+
]);
|
|
118
|
+
//# sourceMappingURL=Vocabularies.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Vocabularies.js","sourceRoot":"","sources":["../../src/util/Vocabularies.ts"],"names":[],"mappings":";;;AAIA,SAAS,eAAe,CACtB,OAAc,EACd,UAAe;IAEf,OAAO,UAAU,CAAC,MAAM,CAAC,CAAC,GAAwB,EAAE,SAAS,EAAuB,EAAE,CAAC,CACrF,EAAE,GAAG,GAAG,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,OAAO,GAAG,SAAS,EAAE,EAAE;IACnD,2EAA2E;KAC1E,EAAE,EAAyB,CAAC,CAAC;AAChC,CAAC;AAEY,QAAA,GAAG,GAAG,eAAe,CAAC,gDAAgD,EAAE;IACnF,MAAM;IACN,MAAM;IACN,SAAS;IACT,YAAY;IACZ,wBAAwB;IACxB,sBAAsB;IACtB,oBAAoB;IACpB,SAAS;IACT,qBAAqB;IACrB,oBAAoB;IACpB,QAAQ;IACR,2BAA2B;IAC3B,gBAAgB;IAChB,iBAAiB;IACjB,gBAAgB;IAChB,aAAa;IACb,MAAM;IACN,SAAS;IACT,aAAa;IACb,YAAY;IACZ,kBAAkB;IAClB,kBAAkB;IAClB,uBAAuB;IACvB,oBAAoB;IACpB,kBAAkB;IAClB,aAAa;IACb,oBAAoB;IACpB,aAAa;IACb,cAAc;IACd,QAAQ;IACR,UAAU;IACV,aAAa;IACb,mBAAmB;IACnB,WAAW;IACX,WAAW;IACX,MAAM;IACN,mBAAmB;IACnB,SAAS;IACT,cAAc;IACd,SAAS;IACT,qBAAqB;IACrB,UAAU;IACV,8BAA8B;IAC9B,qBAAqB;IACrB,WAAW;IACX,0BAA0B;IAC1B,qBAAqB;IACrB,MAAM;IACN,OAAO;IACP,YAAY;IACZ,WAAW;IACX,OAAO;IACP,aAAa;IACb,cAAc;IACd,0BAA0B;IAC1B,gBAAgB;IAChB,SAAS;IACT,kBAAkB;IAClB,YAAY;IACZ,MAAM;IACN,QAAQ;CACT,CAAC,CAAC;AAEU,QAAA,GAAG,GAAG,eAAe,CAAC,mCAAmC,EAAE;IACtE,SAAS;IACT,SAAS;IACT,QAAQ;IACR,SAAS;IACT,QAAQ;IACR,OAAO;IACP,iBAAiB;IACjB,iBAAiB;IACjB,KAAK;IACL,MAAM;IACN,MAAM;IACN,UAAU;CACX,CAAC,CAAC;AAEU,QAAA,GAAG,GAAG,eAAe,CAAC,6CAA6C,EAAE;IAChF,MAAM;IACN,OAAO;IACP,MAAM;IACN,UAAU;IACV,MAAM;CACP,CAAC,CAAC;AAEU,QAAA,IAAI,GAAG,eAAe,CAAC,uCAAuC,EAAE;IAC3E,YAAY;IACZ,OAAO;IACP,OAAO;CACR,CAAC,CAAC;AAEU,QAAA,GAAG,GAAG,eAAe,CAAC,gCAAgC,EAAE;IACnE,aAAa;IACb,YAAY;IACZ,eAAe;IACf,OAAO;IACP,gBAAgB;IAChB,gBAAgB;IAChB,gBAAgB;CACjB,CAAC,CAAC;AAEU,QAAA,KAAK,GAAG,eAAe,CAAC,6BAA6B,EAAE;IAClE,aAAa;IACb,YAAY;CACb,CAAC,CAAC;AAEU,QAAA,MAAM,GAAG,eAAe,CAAC,qBAAqB,EAAE;IAC3D,OAAO;CACR,CAAC,CAAC;AAEU,QAAA,OAAO,GAAG,eAAe,CAAC,2BAA2B,EAAE;IAClE,SAAS;IACT,UAAU;CACX,CAAC,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@comake/skl-js-engine",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Standard Knowledge Language Javascript Engine",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"skl",
|
|
7
|
+
"linked-data",
|
|
8
|
+
"rdf"
|
|
9
|
+
],
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/comake/skl-js-engine.git"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/comake/skl-js-engine/issues"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/comake/skl-js-engine#readme",
|
|
18
|
+
"license": "BSD-4-Clause",
|
|
19
|
+
"author": {
|
|
20
|
+
"name": "Adler Faulkner",
|
|
21
|
+
"email": "adler@comake.io"
|
|
22
|
+
},
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "tsc",
|
|
25
|
+
"jest": "jest --coverage",
|
|
26
|
+
"lint": "eslint . --cache --ignore-path .gitignore --ignore-pattern test/deploy --max-warnings 0",
|
|
27
|
+
"test": "npm run test:ts && npm run jest",
|
|
28
|
+
"test:ts": "tsc -p test --noEmit",
|
|
29
|
+
"test:integration": "jest --coverageReporters text-summary -- test/integration",
|
|
30
|
+
"test:unit": "jest --config=./jest.coverage.config.js test/unit",
|
|
31
|
+
"test:package": "chmod +x test/deploy/validate-package.sh && test/deploy/validate-package.sh",
|
|
32
|
+
"prepare": "npm run build"
|
|
33
|
+
},
|
|
34
|
+
"main": "./dist/index.js",
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"files": [
|
|
37
|
+
"dist"
|
|
38
|
+
],
|
|
39
|
+
"commitlint": {
|
|
40
|
+
"extends": [
|
|
41
|
+
"@commitlint/config-conventional"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@comake/openapi-operation-executor": "^0.7.0",
|
|
46
|
+
"@comake/rmlmapper-js": "^0.1.8",
|
|
47
|
+
"@rdfjs/data-model": "^1.3.0",
|
|
48
|
+
"jsonld": "^5.2.0",
|
|
49
|
+
"luxon": "^3.1.1",
|
|
50
|
+
"mime-types": "^2.1.35",
|
|
51
|
+
"n3": "^1.16.2",
|
|
52
|
+
"rdf-validate-shacl": "^0.4.4",
|
|
53
|
+
"sparql-http-client": "^2.4.1",
|
|
54
|
+
"sparqljs": "^3.6.2",
|
|
55
|
+
"uuid": "^8.3.2"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@commitlint/cli": "^17.0.3",
|
|
59
|
+
"@commitlint/config-conventional": "^17.0.3",
|
|
60
|
+
"@tsconfig/node14": "^1.0.3",
|
|
61
|
+
"@types/jest": "^27.4.0",
|
|
62
|
+
"@types/js-yaml": "^4.0.5",
|
|
63
|
+
"@types/jsonld": "^1.5.6",
|
|
64
|
+
"@types/luxon": "^3.1.0",
|
|
65
|
+
"@types/mime-types": "^2.1.1",
|
|
66
|
+
"@types/n3": "^1.10.4",
|
|
67
|
+
"@types/node": "^17.0.8",
|
|
68
|
+
"@types/rdf-validate-shacl": "^0.4.0",
|
|
69
|
+
"@types/rdfjs__data-model": "^2.0.1",
|
|
70
|
+
"@types/sparql-http-client": "^2.2.8",
|
|
71
|
+
"@types/sparqljs": "^3.1.3",
|
|
72
|
+
"@types/uuid": "^8.3.4",
|
|
73
|
+
"@typescript-eslint/eslint-plugin": "^5.29.0",
|
|
74
|
+
"@typescript-eslint/parser": "^5.29.0",
|
|
75
|
+
"eslint": "^8.18.0",
|
|
76
|
+
"eslint-config-es": "^3.26.13",
|
|
77
|
+
"eslint-plugin-import": "^2.26.0",
|
|
78
|
+
"eslint-plugin-jest": "^25.7.0",
|
|
79
|
+
"eslint-plugin-tsdoc": "^0.2.16",
|
|
80
|
+
"eslint-plugin-unused-imports": "^2.0.0",
|
|
81
|
+
"fs": "^0.0.1-security",
|
|
82
|
+
"husky": "^8.0.0",
|
|
83
|
+
"jest": "^27.4.7",
|
|
84
|
+
"jsdom": "^20.0.0",
|
|
85
|
+
"ts-jest": "^27.1.3",
|
|
86
|
+
"ts-node": "^10.8.0",
|
|
87
|
+
"typescript": "^4.5.4"
|
|
88
|
+
},
|
|
89
|
+
"peerDependencies": {
|
|
90
|
+
"axios": "^0.27.2"
|
|
91
|
+
}
|
|
92
|
+
}
|