@traqula/parser-sparql-1-2 0.0.1-alpha.10
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 +22 -0
- package/README.md +52 -0
- package/lib/Parser.d.ts +262 -0
- package/lib/Parser.js +241 -0
- package/lib/Parser.js.map +1 -0
- package/lib/index.cjs +15919 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +2 -0
- package/lib/index.js.map +1 -0
- package/package.json +65 -0
package/lib/index.d.ts
ADDED
package/lib/index.js
ADDED
package/lib/index.js.map
ADDED
|
@@ -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.10+6cb01a3",
|
|
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": "exit 0 && 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.10+6cb01a3",
|
|
53
|
+
"@traqula/parser-sparql-1-1": "^0.0.1-alpha.10+6cb01a3",
|
|
54
|
+
"@traqula/rules-sparql-1-1": "^0.0.1-alpha.10+6cb01a3",
|
|
55
|
+
"@traqula/rules-sparql-1-2": "^0.0.1-alpha.10+6cb01a3",
|
|
56
|
+
"rdf-data-factory": "^2.0.1"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@rdfjs/types": "^2.0.0",
|
|
60
|
+
"@traqula/test-utils": "^0.0.0",
|
|
61
|
+
"rdf-data-factory": "^2.0.1",
|
|
62
|
+
"rdf-test-suite": "^2.0.0"
|
|
63
|
+
},
|
|
64
|
+
"gitHead": "6cb01a3af7ea01e7bcd5aaba638cf74fb45db76b"
|
|
65
|
+
}
|