@traqula/parser-sparql-1-2 0.0.1-alpha.176

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/lib/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './Parser';
2
+ export type { SparqlContext } from '@traqula/rules-sparql-1-1';
package/lib/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export * from './Parser';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC","sourcesContent":["export * from './Parser';\nexport type { SparqlContext } from '@traqula/rules-sparql-1-1';\n"]}
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@traqula/parser-sparql-1-2",
3
+ "type": "module",
4
+ "version": "0.0.1-alpha.176+9400dc5",
5
+ "description": "SPARQL 1.2 parser",
6
+ "lsd:module": true,
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/comunica/traqula.git",
11
+ "directory": "engines/parser-sparql-1-2"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/comunica/traqula/issues"
15
+ },
16
+ "sideEffects": false,
17
+ "exports": {
18
+ "import": "./lib/index.js",
19
+ "require": "./lib/index.cjs"
20
+ },
21
+ "main": "lib/index.js",
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "files": [
26
+ "lib/**/*.cjs",
27
+ "lib/**/*.d.ts",
28
+ "lib/**/*.js",
29
+ "lib/**/*.js.map"
30
+ ],
31
+ "engines": {
32
+ "node": ">=18.0"
33
+ },
34
+ "typings": "lib/index",
35
+ "scripts": {
36
+ "build": "yarn build:ts && yarn build:transpile && yarn build:transpile-spec",
37
+ "build:ts": "node \"../../node_modules/typescript/bin/tsc\"",
38
+ "build:transpile": " node \"../../node_modules/esbuild/bin/esbuild\" --format=cjs --bundle --log-level=error --outfile=lib/index.cjs lib/index.ts",
39
+ "build:transpile-spec": " node \"../../node_modules/esbuild/bin/esbuild\" --format=cjs --platform=node --bundle --log-level=error --outfile=spec/parser.cjs spec/parser.ts",
40
+ "spec:base-1-1": "rdf-test-suite spec/parser.cjs http://w3c.github.io/rdf-tests/sparql/sparql11/manifest-all.ttl -c ../../.rdf-test-suite-cache/",
41
+ "spec:base-1-2": "rdf-test-suite spec/parser.cjs https://w3c.github.io/rdf-tests/sparql/sparql12/manifest.ttl -c ../../.rdf-test-suite-cache/",
42
+ "spec:query-1-1": "yarn spec:base-1-1 -- -s http://www.w3.org/TR/sparql11-query/",
43
+ "spec:query-1-2": "yarn run spec:base-1-2",
44
+ "spec:update-1-1": "yarn spec:base-1-1 -- -s http://www.w3.org/TR/sparql11-update/",
45
+ "spec:earl:query-1-1": "yarn spec:query-1-1 --silent -- -o earl -p spec/earl-meta.json > spec/earl-sparql-1-1-query.ttl",
46
+ "spec:earl:update-1-1": "yarn spec:update-1-1 --silent -- -o earl -p spec/earl-meta.json > spec/earl-sparql-1-1-update.ttl",
47
+ "spec:earl:query-1-2": "yarn spec:query-1-2 --silent -- -o earl -p spec/earl-meta.json > spec/earl-sparql-1-2-query.ttl",
48
+ "spec:all": "yarn spec:base-1-1 && yarn spec:base-1-2 && yarn spec:earl:query-1-2",
49
+ "spec:earl": "yarn spec:earl:query-1-1 && yarn spec:earl:update-1-1"
50
+ },
51
+ "dependencies": {
52
+ "@traqula/core": "^0.0.1-alpha.176+9400dc5",
53
+ "@traqula/parser-sparql-1-1": "^0.0.1-alpha.176+9400dc5",
54
+ "@traqula/rules-sparql-1-1": "^0.0.1-alpha.176+9400dc5",
55
+ "@traqula/rules-sparql-1-2": "^0.0.1-alpha.176+9400dc5",
56
+ "rdf-data-factory": "^2.0.1"
57
+ },
58
+ "devDependencies": {
59
+ "@rdfjs/types": "^2.0.0",
60
+ "@traqula/test-utils": "^0.0.1-alpha.176+9400dc5",
61
+ "rdf-data-factory": "^2.0.1",
62
+ "rdf-test-suite": "^2.0.0"
63
+ },
64
+ "gitHead": "9400dc5f8bda1d8c2b3d1f4cf56b308995744ba0"
65
+ }