@comunica/actor-query-operation-leftjoin 2.0.1-alpha.5.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.txt ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright © 2017–now Ruben Taelman, Joachim Van Herwegen
4
+ Comunica Association and Ghent University – imec, Belgium
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in
14
+ all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,43 @@
1
+ # Comunica LeftJoin Query Operation Actor
2
+
3
+ [![npm version](https://badge.fury.io/js/%40comunica%2Factor-query-operation-leftjoin.svg)](https://www.npmjs.com/package/@comunica/actor-query-operation-leftjoin)
4
+
5
+ A [Query Operation](https://github.com/comunica/comunica/tree/master/packages/bus-query-operation) actor that handles [SPARQL `OPTIONAL`](https://www.w3.org/TR/sparql11-query/#optionals) operations
6
+ by delegating to the [RDF Join bus](https://github.com/comunica/comunica/tree/master/packages/bus-rdf-join) bus.
7
+
8
+ This module is part of the [Comunica framework](https://github.com/comunica/comunica),
9
+ and should only be used by [developers that want to build their own query engine](https://comunica.dev/docs/modify/).
10
+
11
+ [Click here if you just want to query with Comunica](https://comunica.dev/docs/query/).
12
+
13
+ ## Install
14
+
15
+ ```bash
16
+ $ yarn add @comunica/actor-query-operation-leftjoin
17
+ ```
18
+
19
+ ## Configure
20
+
21
+ After installing, this package can be added to your engine's configuration as follows:
22
+ ```text
23
+ {
24
+ "@context": [
25
+ ...
26
+ "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-query-operation-leftjoin/^2.0.0/components/context.jsonld"
27
+ ],
28
+ "actors": [
29
+ ...
30
+ {
31
+ "@id": "urn:comunica:default:query-operation/actors#leftjoin",
32
+ "@type": "ActorQueryOperationLeftJoin",
33
+ "mediatorQueryOperation": { "@id": "urn:comunica:default:query-operation/mediators#main" },
34
+ "mediatorJoin": { "@id": "urn:comunica:default:rdf-join/mediators#main" }
35
+ }
36
+ ]
37
+ }
38
+ ```
39
+
40
+ ### Config Parameters
41
+
42
+ * `mediatorQueryOperation`: A mediator over the [Query Operation bus](https://github.com/comunica/comunica/tree/master/packages/bus-query-operation).
43
+ * `mediatorJoin`: A mediator over the [RDF Join bus](https://github.com/comunica/comunica/tree/master/packages/bus-rdf-join).
@@ -0,0 +1,193 @@
1
+ {
2
+ "@context": [
3
+ "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-query-operation-leftjoin/^2.0.0/components/context.jsonld",
4
+ "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/core/^2.0.0/components/context.jsonld",
5
+ "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/bus-query-operation/^2.0.0/components/context.jsonld"
6
+ ],
7
+ "@id": "npmd:@comunica/actor-query-operation-leftjoin",
8
+ "components": [
9
+ {
10
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin",
11
+ "@type": "Class",
12
+ "requireElement": "ActorQueryOperationLeftJoin",
13
+ "extends": [
14
+ {
15
+ "@type": "GenericComponentExtension",
16
+ "component": "cbqo:components/ActorQueryOperationTypedMediated.jsonld#ActorQueryOperationTypedMediated",
17
+ "genericTypeInstances": [
18
+ "urn:npm:sparqlalgebrajs:LeftJoin"
19
+ ]
20
+ }
21
+ ],
22
+ "comment": "A comunica LeftJoin Query Operation Actor.",
23
+ "parameters": [
24
+ {
25
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_mediatorJoin",
26
+ "range": "cc:components/Mediator.jsonld#Mediator",
27
+ "comment": "A mediator for joining Bindings streams"
28
+ },
29
+ {
30
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_mediatorQueryOperation",
31
+ "range": "cc:components/Mediator.jsonld#Mediator"
32
+ },
33
+ {
34
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_name",
35
+ "range": "xsd:string",
36
+ "default": {
37
+ "@id": "rdf:subject"
38
+ },
39
+ "comment": "The name for this actor."
40
+ },
41
+ {
42
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_bus",
43
+ "range": {
44
+ "@type": "ParameterRangeGenericComponent",
45
+ "component": "cc:components/Bus.jsonld#Bus",
46
+ "genericTypeInstances": [
47
+ {
48
+ "@type": "ParameterRangeGenericComponent",
49
+ "component": "cc:components/Actor.jsonld#Actor",
50
+ "genericTypeInstances": [
51
+ {
52
+ "@type": "ParameterRangeGenericTypeReference",
53
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
54
+ },
55
+ {
56
+ "@type": "ParameterRangeGenericTypeReference",
57
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
58
+ },
59
+ {
60
+ "@type": "ParameterRangeGenericTypeReference",
61
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
62
+ }
63
+ ]
64
+ },
65
+ {
66
+ "@type": "ParameterRangeGenericTypeReference",
67
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
68
+ },
69
+ {
70
+ "@type": "ParameterRangeGenericTypeReference",
71
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
72
+ },
73
+ {
74
+ "@type": "ParameterRangeGenericTypeReference",
75
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
76
+ }
77
+ ]
78
+ },
79
+ "default": {
80
+ "@id": "cbqo:components/ActorQueryOperation.jsonld#ActorQueryOperation_default_bus",
81
+ "@type": "cc:components/Bus.jsonld#Bus"
82
+ },
83
+ "comment": "The bus this actor subscribes to."
84
+ },
85
+ {
86
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_beforeActors",
87
+ "range": {
88
+ "@type": "ParameterRangeUnion",
89
+ "parameterRangeElements": [
90
+ {
91
+ "@type": "ParameterRangeArray",
92
+ "parameterRangeValue": {
93
+ "@type": "ParameterRangeGenericComponent",
94
+ "component": "cc:components/Actor.jsonld#Actor",
95
+ "genericTypeInstances": [
96
+ {
97
+ "@type": "ParameterRangeGenericTypeReference",
98
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
99
+ },
100
+ {
101
+ "@type": "ParameterRangeGenericTypeReference",
102
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
103
+ },
104
+ {
105
+ "@type": "ParameterRangeGenericTypeReference",
106
+ "parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
107
+ }
108
+ ]
109
+ }
110
+ },
111
+ {
112
+ "@type": "ParameterRangeUndefined"
113
+ }
114
+ ]
115
+ },
116
+ "comment": "Actor that must be registered in the bus before this actor."
117
+ }
118
+ ],
119
+ "memberFields": [
120
+ {
121
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin__member_mediatorJoin",
122
+ "memberFieldName": "mediatorJoin",
123
+ "range": "cc:components/Mediator.jsonld#Mediator"
124
+ },
125
+ {
126
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin__member_constructor",
127
+ "memberFieldName": "constructor"
128
+ },
129
+ {
130
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin__member_testOperation",
131
+ "memberFieldName": "testOperation"
132
+ },
133
+ {
134
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin__member_runOperation",
135
+ "memberFieldName": "runOperation"
136
+ }
137
+ ],
138
+ "constructorArguments": [
139
+ {
140
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args__constructorArgument",
141
+ "fields": [
142
+ {
143
+ "keyRaw": "mediatorJoin",
144
+ "value": {
145
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_mediatorJoin"
146
+ }
147
+ },
148
+ {
149
+ "keyRaw": "mediatorQueryOperation",
150
+ "value": {
151
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_mediatorQueryOperation"
152
+ }
153
+ },
154
+ {
155
+ "keyRaw": "name",
156
+ "value": {
157
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_name"
158
+ }
159
+ },
160
+ {
161
+ "keyRaw": "bus",
162
+ "value": {
163
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_bus"
164
+ }
165
+ },
166
+ {
167
+ "keyRaw": "beforeActors",
168
+ "value": {
169
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_beforeActors"
170
+ }
171
+ }
172
+ ]
173
+ }
174
+ ]
175
+ },
176
+ {
177
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#IActorQueryOperationLeftJoinArgs",
178
+ "@type": "AbstractClass",
179
+ "requireElement": "IActorQueryOperationLeftJoinArgs",
180
+ "extends": [
181
+ "cbqo:components/ActorQueryOperationTypedMediated.jsonld#IActorQueryOperationTypedMediatedArgs"
182
+ ],
183
+ "parameters": [],
184
+ "memberFields": [
185
+ {
186
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#IActorQueryOperationLeftJoinArgs__member_mediatorJoin",
187
+ "memberFieldName": "mediatorJoin"
188
+ }
189
+ ],
190
+ "constructorArguments": []
191
+ }
192
+ ]
193
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "@context": [
3
+ "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-query-operation-leftjoin/^2.0.0/components/context.jsonld"
4
+ ],
5
+ "@id": "npmd:@comunica/actor-query-operation-leftjoin",
6
+ "@type": "Module",
7
+ "requireName": "@comunica/actor-query-operation-leftjoin",
8
+ "import": [
9
+ "caqol:components/ActorQueryOperationLeftJoin.jsonld"
10
+ ]
11
+ }
@@ -0,0 +1,52 @@
1
+ {
2
+ "@context": [
3
+ "https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^4.0.0/components/context.jsonld",
4
+ {
5
+ "npmd": "https://linkedsoftwaredependencies.org/bundles/npm/",
6
+ "caqol": "npmd:@comunica/actor-query-operation-leftjoin/^2.0.0/",
7
+ "ActorQueryOperationLeftJoin": {
8
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin",
9
+ "@prefix": true,
10
+ "@context": {
11
+ "args_mediatorJoin": {
12
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_mediatorJoin"
13
+ },
14
+ "args_mediatorQueryOperation": {
15
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_mediatorQueryOperation"
16
+ },
17
+ "args_name": {
18
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_name"
19
+ },
20
+ "args_bus": {
21
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_bus"
22
+ },
23
+ "args_beforeActors": {
24
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_beforeActors",
25
+ "@container": "@list"
26
+ },
27
+ "mediatorJoin": {
28
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_mediatorJoin"
29
+ },
30
+ "mediatorQueryOperation": {
31
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_mediatorQueryOperation"
32
+ },
33
+ "name": {
34
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_name"
35
+ },
36
+ "bus": {
37
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_bus"
38
+ },
39
+ "beforeActors": {
40
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#ActorQueryOperationLeftJoin_args_beforeActors",
41
+ "@container": "@list"
42
+ }
43
+ }
44
+ },
45
+ "IActorQueryOperationLeftJoinArgs": {
46
+ "@id": "caqol:components/ActorQueryOperationLeftJoin.jsonld#IActorQueryOperationLeftJoinArgs",
47
+ "@prefix": true,
48
+ "@context": {}
49
+ }
50
+ }
51
+ ]
52
+ }
@@ -0,0 +1,21 @@
1
+ import type { IActorQueryOperationTypedMediatedArgs } from '@comunica/bus-query-operation';
2
+ import { ActorQueryOperationTypedMediated } from '@comunica/bus-query-operation';
3
+ import type { MediatorRdfJoin } from '@comunica/bus-rdf-join';
4
+ import type { IActorTest } from '@comunica/core';
5
+ import type { IQueryOperationResult, IActionContext } from '@comunica/types';
6
+ import type { Algebra } from 'sparqlalgebrajs';
7
+ /**
8
+ * A comunica LeftJoin Query Operation Actor.
9
+ */
10
+ export declare class ActorQueryOperationLeftJoin extends ActorQueryOperationTypedMediated<Algebra.LeftJoin> {
11
+ readonly mediatorJoin: MediatorRdfJoin;
12
+ constructor(args: IActorQueryOperationLeftJoinArgs);
13
+ testOperation(operation: Algebra.LeftJoin, context: IActionContext): Promise<IActorTest>;
14
+ runOperation(operationOriginal: Algebra.LeftJoin, context: IActionContext): Promise<IQueryOperationResult>;
15
+ }
16
+ export interface IActorQueryOperationLeftJoinArgs extends IActorQueryOperationTypedMediatedArgs {
17
+ /**
18
+ * A mediator for joining Bindings streams
19
+ */
20
+ mediatorJoin: MediatorRdfJoin;
21
+ }
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ActorQueryOperationLeftJoin = void 0;
4
+ const bus_query_operation_1 = require("@comunica/bus-query-operation");
5
+ const sparqlee_1 = require("sparqlee");
6
+ /**
7
+ * A comunica LeftJoin Query Operation Actor.
8
+ */
9
+ class ActorQueryOperationLeftJoin extends bus_query_operation_1.ActorQueryOperationTypedMediated {
10
+ constructor(args) {
11
+ super(args, 'leftjoin');
12
+ }
13
+ async testOperation(operation, context) {
14
+ return true;
15
+ }
16
+ async runOperation(operationOriginal, context) {
17
+ // Delegate to join bus
18
+ const entries = (await Promise.all(operationOriginal.input
19
+ .map(async (subOperation) => ({
20
+ output: await this.mediatorQueryOperation.mediate({ operation: subOperation, context }),
21
+ operation: subOperation,
22
+ }))))
23
+ .map(({ output, operation }) => ({
24
+ output: bus_query_operation_1.ActorQueryOperation.getSafeBindings(output),
25
+ operation,
26
+ }));
27
+ const joined = await this.mediatorJoin.mediate({ type: 'optional', entries, context });
28
+ // If the pattern contains an expression, filter the resulting stream
29
+ if (operationOriginal.expression) {
30
+ const config = { ...bus_query_operation_1.ActorQueryOperation.getAsyncExpressionContext(context) };
31
+ const evaluator = new sparqlee_1.AsyncEvaluator(operationOriginal.expression, config);
32
+ const bindingsStream = joined.bindingsStream
33
+ .transform({
34
+ autoStart: false,
35
+ transform: async (bindings, done, push) => {
36
+ try {
37
+ const result = await evaluator.evaluateAsEBV(bindings);
38
+ if (result) {
39
+ push(bindings);
40
+ }
41
+ }
42
+ catch (error) {
43
+ // We ignore all Expression errors.
44
+ // Other errors (likely programming mistakes) are still propagated.
45
+ // Left Join is defined in terms of Filter (https://www.w3.org/TR/sparql11-query/#defn_algJoin),
46
+ // and Filter requires this (https://www.w3.org/TR/sparql11-query/#expressions).
47
+ if ((0, sparqlee_1.isExpressionError)(error)) {
48
+ // In many cases, this is a user error, where the user should manually cast the variable to a string.
49
+ // In order to help users debug this, we should report these errors via the logger as warnings.
50
+ this.logWarn(context, 'Error occurred while filtering.', () => ({ error, bindings }));
51
+ }
52
+ else {
53
+ bindingsStream.emit('error', error);
54
+ }
55
+ }
56
+ done();
57
+ },
58
+ });
59
+ joined.bindingsStream = bindingsStream;
60
+ }
61
+ return joined;
62
+ }
63
+ }
64
+ exports.ActorQueryOperationLeftJoin = ActorQueryOperationLeftJoin;
65
+ //# sourceMappingURL=ActorQueryOperationLeftJoin.js.map
package/lib/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './ActorQueryOperationLeftJoin';
package/lib/index.js ADDED
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
+ };
12
+ Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./ActorQueryOperationLeftJoin"), exports);
14
+ //# sourceMappingURL=index.js.map
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@comunica/actor-query-operation-leftjoin",
3
+ "version": "2.0.1-alpha.5.0",
4
+ "description": "A leftjoin query-operation actor",
5
+ "lsd:module": true,
6
+ "main": "lib/index.js",
7
+ "typings": "lib/index",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/comunica/comunica.git",
11
+ "directory": "packages/actor-query-operation-leftjoin"
12
+ },
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "keywords": [
17
+ "comunica",
18
+ "actor",
19
+ "query-operation",
20
+ "leftjoin"
21
+ ],
22
+ "license": "MIT",
23
+ "bugs": {
24
+ "url": "https://github.com/comunica/comunica/issues"
25
+ },
26
+ "homepage": "https://comunica.dev/",
27
+ "files": [
28
+ "components",
29
+ "lib/**/*.d.ts",
30
+ "lib/**/*.js"
31
+ ],
32
+ "dependencies": {
33
+ "@comunica/bus-query-operation": "2.0.1-alpha.5.0",
34
+ "@comunica/bus-rdf-join": "2.0.1-alpha.5.0",
35
+ "@comunica/core": "2.0.1-alpha.5.0",
36
+ "@comunica/mediatortype-join-coefficients": "2.0.1-alpha.5.0",
37
+ "sparqlalgebrajs": "^4.0.0",
38
+ "sparqlee": "2.0.0-beta.0"
39
+ },
40
+ "scripts": {
41
+ "build": "npm run build:ts && npm run build:components",
42
+ "build:ts": "node \"../../node_modules/typescript/bin/tsc\"",
43
+ "build:components": "componentsjs-generator"
44
+ },
45
+ "gitHead": "e2ae2e9e924bf0656df60cc99774f7e560d47695"
46
+ }