-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 3.09 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@netwerk-digitaal-erfgoed/ld-workbench",
"type": "module",
"bin": "build/main.js",
"version": "0.0.0-development",
"description": "LDWorkbench is a Linked Data Transformation tool designed to use only SPARQL as transformation language.",
"main": "build/main.js",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules --no-experimental-fetch' jest --runInBand ${1}",
"prepare": "husky install",
"dev": "tsc --watch --preserveWatchOutput",
"ld-workbench": "node build/main",
"ld-workbench:example": "node build/main --config static",
"util:json-schema-to-typescript": "npx json2ts -i ./static/ld-workbench.schema.json -o src/configuration.d.ts",
"semantic-release": "semantic-release",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"posttest": "jest-coverage-thresholds-bumper --silent"
},
"repository": {
"type": "git",
"url": "https://github.com/netwerk-digitaal-erfgoed/ld-workbench.git"
},
"keywords": [
"linked open data",
"lod",
"sparql",
"etl"
],
"contributors": [
{
"name": "Mark Lindeman",
"email": "[email protected]"
},
{
"name": "Philippe Renzen",
"email": "[email protected]"
},
{
"name": "Iva Dimitrova",
"email": "[email protected]"
}
],
"author": {
"name": "Triply",
"email": "[email protected]"
},
"license": "EUPL-1.2",
"bugs": {
"url": "https://github.com/netwerk-digitaal-erfgoed/ld-workbench/issues"
},
"homepage": "https://github.com/netwerk-digitaal-erfgoed/ld-workbench#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@comunica/types": "^3.1.0",
"@swc/core": "^1.6.5",
"@swc/jest": "^0.2.36",
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/glob": "^8.1.0",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/lodash.clonedeep": "^4.5.9",
"@types/lodash.kebabcase": "^4.1.9",
"@types/n3": "^1.16.4",
"@types/node": "^20.14.9",
"@types/sparqljs": "^3.1.10",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.2",
"gts": "^5.3.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-coverage-thresholds-bumper": "^1.1.0",
"json-schema-to-typescript": "^14.1.0",
"semantic-release": "^23.1.1",
"typescript": "~5.4.3"
},
"dependencies": {
"@comunica/query-sparql": "^3.2.0",
"@comunica/query-sparql-file": "^3.2.0",
"@triply/triplydb": "^8.0.6",
"ajv": "^8.16.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"glob": "^7.2.3",
"got": "^14.4.1",
"inquirer": "^9.3.0",
"js-yaml": "^4.1.0",
"lodash.clonedeep": "^4.5.0",
"lodash.kebabcase": "^4.1.1",
"millify": "^6.1.0",
"n3": "^1.17.4",
"ora": "^7.0.1",
"p-retry": "^6.2.0",
"parse-duration": "^1.1.0",
"pretty-ms": "^8.0.0",
"rdf-dereference": "^2.2.0",
"sparqljs": "^3.7.1",
"testcontainers": "^10.10.0"
}
}