-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 KB
/
package.json
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
{
"name": "extract-cbd-shape",
"version": "0.1.12",
"description": "Extract an entity based on CBD and a SHACL shape",
"main": "dist/lib/extract-cbd-shape.js",
"types": "dist/lib/extract-cbd-shape.d.ts",
"scripts": {
"test": "mocha",
"build": "tsc",
"data": "npm run build && node ./perf/outband-setup.js",
"bench": "npm run build && node ./perf/perftest-inband.js && node ./perf/perftest-inband-percent.js && node ./perf/perftest-outband.js "
},
"keywords": [
"CBD",
"RDF",
"SHACL",
"RDF-JS"
],
"author": "Pieter Colpaert",
"license": "MIT",
"dependencies": {
"@treecg/types": "^0.4.6",
"debug": "^4.4.0",
"jsdom": "^26.0.0",
"n3": "^1.23.1",
"rdf-data-factory": "^2.0.2",
"rdf-dereference": "4.x",
"rdf-stores": "^2.1.1"
},
"devDependencies": {
"@rdfjs/types": "*",
"@types/benchmark": "^2.1.5",
"@types/chai": "^4.3.5",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.1",
"@types/n3": "^1.21.1",
"@types/pako": "^2.0.3",
"@types/sinon": "^10.0.16",
"benchmark": "^2.1.4",
"chai": "^4.3.7",
"js-base64": "^3.7.7",
"mocha": "^10.2.0",
"pako": "^2.1.0",
"rollup": "^4.34.8",
"rollup-plugin-polyfill-node": "^0.13.0",
"sinon": "^19.0.2",
"systeminformation": "^5.21.20",
"ts-node": "^10.9.2",
"typescript": "5.5.4"
}
}