-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.7 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "extract-cbd-shape",
"version": "0.2.0",
"type": "module",
"description": "Extract an entity based on CBD and a SHACL shape",
"main": "dist/lib/extract-cbd-shape.js",
"exports": {
"import": "./dist/lib/extract-cbd-shape.js",
"require": "./dist/lib/extract-cbd-shape.cjs"
},
"types": "dist/lib/extract-cbd-shape.d.ts",
"scripts": {
"test": "vitest run",
"build": "tsc && tsc-alias && rollup -c",
"prepublishOnly": "npm run build",
"data": "npm run build && node ./perf/outband-setup.js",
"bench": "npm run build && node ./perf/perftest-inband.js && node ./perf/perftest-inband-diskstore.js && node ./perf/perftest-inband-percent.js && node ./perf/perftest-outband.js"
},
"keywords": [
"CBD",
"RDF",
"SHACL",
"RDF-JS"
],
"author": "Pieter Colpaert",
"contributors": [
"Arthur Vercruysse",
"Ieben Smessaert",
"Xueying Deng",
"Pieter Heyvaert",
"Julián Rojas"
],
"license": "MIT",
"dependencies": {
"@treecg/types": "^0.4.6",
"debug": "^4.4.3",
"n3": "^2.0.3",
"rdf-data-factory": "^2.0.2",
"rdf-dereference": "^5.0.0",
"rdf-stores": "^2.2.0"
},
"devDependencies": {
"@rdfjs/types": "^2.0.1",
"@types/benchmark": "^2.1.5",
"@types/debug": "^4.1.12",
"@types/n3": "^1.26.1",
"@types/pako": "^2.0.4",
"@types/sinon": "^21.0.0",
"@vitest/coverage-v8": "^4.0.18",
"benchmark": "^2.1.4",
"js-base64": "^3.7.8",
"jsdom": "^28.1.0",
"level": "^10.0.0",
"pako": "^2.1.0",
"quadstore": "^15.4.1",
"rollup": "^4.59.0",
"sinon": "^21.0.2",
"systeminformation": "^5.31.4",
"tsc-alias": "^1.8.16",
"typescript": "5.9.3",
"vitest": "^4.0.18"
}
}