-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (26 loc) · 1.83 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
{
"name": "xrm-workflow",
"version": "1.0.0",
"description": "Barnard59 pipeline with sensible defaults",
"type": "module",
"main": "index.js",
"scripts": {
"json-to-file": "mkdir -p output && barnard59 run -v --pipeline=http://example.org/pipeline/toFile pipelines/main.ttl --variable inputFile=input/example.json --variable mappingFile=src-gen/mapping-json.carml.ttl",
"xml-to-file": "mkdir -p output && barnard59 run -v --pipeline=http://example.org/pipeline/toFile pipelines/main.ttl --variable inputFile=input/example.xml --variable mappingFile=src-gen/mapping-xml.carml.ttl",
"csv-to-file": "mkdir -p output && barnard59 run -v --pipeline=http://example.org/pipeline/toFile pipelines/main.ttl --variable inputFile=input/example.csv --variable mappingFile=src-gen/mapping-csv.carml.ttl",
"file-to-store": "barnard59 run -v --pipeline=http://example.org/pipeline/fileToStore pipelines/main.ttl --variable=ENDPOINT_URL --variable=ENDPOINT_USER --variable=ENDPOINT_PASSWORD",
"file-to-store-dev": "barnard59 run -v --pipeline=http://example.org/pipeline/fileToStore pipelines/main.ttl",
"json-to-store": "barnard59 run -v --pipeline=http://example.org/pipeline/toStore pipelines/main.ttl --variable inputFile=input/example.json --variable mappingFile=src-gen/mapping-json.carml.ttl --variable=ENDPOINT_URL --variable=ENDPOINT_USER --variable=ENDPOINT_PASSWORD",
"json-to-store-dev": "barnard59 run -v --pipeline=http://example.org/pipeline/toStore pipelines/main.ttl --variable inputFile=input/example.json --variable mappingFile=src-gen/mapping-json.carml.ttl"
},
"author": "Zazuko",
"license": "MIT",
"bugs": {},
"dependencies": {
"barnard59": "^5.0.5",
"barnard59-carml-service": "^0.0.1",
"barnard59-formats": "^4.0.0",
"barnard59-graph-store": "^6.0.1",
"barnard59-rdf": "^3.4.0"
}
}